├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── hardware ├── fp-lib-table ├── gerber │ ├── gerber.zip │ ├── pimoco-B_Cu.gbl │ ├── pimoco-B_Mask.gbs │ ├── pimoco-B_SilkS.gbo │ ├── pimoco-Edge_Cuts.gm1 │ ├── pimoco-F_Cu.gtl │ ├── pimoco-F_Mask.gts │ ├── pimoco-F_SilkS.gto │ ├── pimoco-NPTH.drl │ └── pimoco-PTH.drl ├── images │ ├── bottom-v0.4.png │ ├── layout-v0.4.png │ ├── platinenlayout.png │ ├── schaltplan.png │ ├── schematics-v0.4.svg │ └── top-v0.4.png ├── pimoco.bck ├── pimoco.dcm ├── pimoco.kicad_pcb ├── pimoco.lib ├── pimoco.net ├── pimoco.pretty │ ├── BMP280-Breakout.kicad_mod │ ├── DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mmv2.kicad_mod │ ├── GPS.kicad_mod │ ├── GY-GPS6MV2.kicad_mod │ ├── Heatsink_TO-220_vertical.kicad_mod │ ├── RJ45_Wuerth_7499111446_Horizontal-modified.kicad_mod │ └── TMC5160-BOB2.kicad_mod ├── pimoco.pro ├── pimoco.sch └── sym-lib-table ├── indi_pimoco.xml ├── main.cpp ├── pimoco_focuser.cpp ├── pimoco_focuser.h ├── pimoco_mount.cpp ├── pimoco_mount.h ├── pimoco_mount_goto.cpp ├── pimoco_mount_guide.cpp ├── pimoco_mount_limits.cpp ├── pimoco_mount_move.cpp ├── pimoco_mount_park.cpp ├── pimoco_mount_timer.cpp ├── pimoco_mount_track.cpp ├── pimoco_mount_ui.cpp ├── pimoco_spi.cpp ├── pimoco_spi.h ├── pimoco_stepper.cpp ├── pimoco_stepper.h ├── pimoco_time.h ├── pimoco_tmc5160.cpp ├── pimoco_tmc5160.h ├── simulator └── index.html ├── spi0-3cs-overlay.dts ├── spi0-4cs-overlay.dts └── spitest.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/README.md -------------------------------------------------------------------------------- /hardware/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/fp-lib-table -------------------------------------------------------------------------------- /hardware/gerber/gerber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/gerber/gerber.zip -------------------------------------------------------------------------------- /hardware/gerber/pimoco-B_Cu.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/gerber/pimoco-B_Cu.gbl -------------------------------------------------------------------------------- /hardware/gerber/pimoco-B_Mask.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/gerber/pimoco-B_Mask.gbs -------------------------------------------------------------------------------- /hardware/gerber/pimoco-B_SilkS.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/gerber/pimoco-B_SilkS.gbo -------------------------------------------------------------------------------- /hardware/gerber/pimoco-Edge_Cuts.gm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/gerber/pimoco-Edge_Cuts.gm1 -------------------------------------------------------------------------------- /hardware/gerber/pimoco-F_Cu.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/gerber/pimoco-F_Cu.gtl -------------------------------------------------------------------------------- /hardware/gerber/pimoco-F_Mask.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/gerber/pimoco-F_Mask.gts -------------------------------------------------------------------------------- /hardware/gerber/pimoco-F_SilkS.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/gerber/pimoco-F_SilkS.gto -------------------------------------------------------------------------------- /hardware/gerber/pimoco-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/gerber/pimoco-NPTH.drl -------------------------------------------------------------------------------- /hardware/gerber/pimoco-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/gerber/pimoco-PTH.drl -------------------------------------------------------------------------------- /hardware/images/bottom-v0.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/images/bottom-v0.4.png -------------------------------------------------------------------------------- /hardware/images/layout-v0.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/images/layout-v0.4.png -------------------------------------------------------------------------------- /hardware/images/platinenlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/images/platinenlayout.png -------------------------------------------------------------------------------- /hardware/images/schaltplan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/images/schaltplan.png -------------------------------------------------------------------------------- /hardware/images/schematics-v0.4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/images/schematics-v0.4.svg -------------------------------------------------------------------------------- /hardware/images/top-v0.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/images/top-v0.4.png -------------------------------------------------------------------------------- /hardware/pimoco.bck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/pimoco.bck -------------------------------------------------------------------------------- /hardware/pimoco.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /hardware/pimoco.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/pimoco.kicad_pcb -------------------------------------------------------------------------------- /hardware/pimoco.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/pimoco.lib -------------------------------------------------------------------------------- /hardware/pimoco.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/pimoco.net -------------------------------------------------------------------------------- /hardware/pimoco.pretty/BMP280-Breakout.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/pimoco.pretty/BMP280-Breakout.kicad_mod -------------------------------------------------------------------------------- /hardware/pimoco.pretty/DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mmv2.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/pimoco.pretty/DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mmv2.kicad_mod -------------------------------------------------------------------------------- /hardware/pimoco.pretty/GPS.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/pimoco.pretty/GPS.kicad_mod -------------------------------------------------------------------------------- /hardware/pimoco.pretty/GY-GPS6MV2.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/pimoco.pretty/GY-GPS6MV2.kicad_mod -------------------------------------------------------------------------------- /hardware/pimoco.pretty/Heatsink_TO-220_vertical.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/pimoco.pretty/Heatsink_TO-220_vertical.kicad_mod -------------------------------------------------------------------------------- /hardware/pimoco.pretty/RJ45_Wuerth_7499111446_Horizontal-modified.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/pimoco.pretty/RJ45_Wuerth_7499111446_Horizontal-modified.kicad_mod -------------------------------------------------------------------------------- /hardware/pimoco.pretty/TMC5160-BOB2.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/pimoco.pretty/TMC5160-BOB2.kicad_mod -------------------------------------------------------------------------------- /hardware/pimoco.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/pimoco.pro -------------------------------------------------------------------------------- /hardware/pimoco.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/pimoco.sch -------------------------------------------------------------------------------- /hardware/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/hardware/sym-lib-table -------------------------------------------------------------------------------- /indi_pimoco.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/indi_pimoco.xml -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/main.cpp -------------------------------------------------------------------------------- /pimoco_focuser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_focuser.cpp -------------------------------------------------------------------------------- /pimoco_focuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_focuser.h -------------------------------------------------------------------------------- /pimoco_mount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_mount.cpp -------------------------------------------------------------------------------- /pimoco_mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_mount.h -------------------------------------------------------------------------------- /pimoco_mount_goto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_mount_goto.cpp -------------------------------------------------------------------------------- /pimoco_mount_guide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_mount_guide.cpp -------------------------------------------------------------------------------- /pimoco_mount_limits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_mount_limits.cpp -------------------------------------------------------------------------------- /pimoco_mount_move.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_mount_move.cpp -------------------------------------------------------------------------------- /pimoco_mount_park.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_mount_park.cpp -------------------------------------------------------------------------------- /pimoco_mount_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_mount_timer.cpp -------------------------------------------------------------------------------- /pimoco_mount_track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_mount_track.cpp -------------------------------------------------------------------------------- /pimoco_mount_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_mount_ui.cpp -------------------------------------------------------------------------------- /pimoco_spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_spi.cpp -------------------------------------------------------------------------------- /pimoco_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_spi.h -------------------------------------------------------------------------------- /pimoco_stepper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_stepper.cpp -------------------------------------------------------------------------------- /pimoco_stepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_stepper.h -------------------------------------------------------------------------------- /pimoco_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_time.h -------------------------------------------------------------------------------- /pimoco_tmc5160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_tmc5160.cpp -------------------------------------------------------------------------------- /pimoco_tmc5160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/pimoco_tmc5160.h -------------------------------------------------------------------------------- /simulator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/simulator/index.html -------------------------------------------------------------------------------- /spi0-3cs-overlay.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/spi0-3cs-overlay.dts -------------------------------------------------------------------------------- /spi0-4cs-overlay.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/spi0-4cs-overlay.dts -------------------------------------------------------------------------------- /spitest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlnoga/pimoco/HEAD/spitest.cpp --------------------------------------------------------------------------------