├── .gitignore ├── LICENSE ├── README.md ├── case ├── cellpilot_case.123dx └── cellpilot_case.stl ├── client ├── DroidSans.ttf ├── Makefile ├── cellpilot.c └── cellpilot.lua ├── drone ├── firmware │ ├── Makefile │ ├── link.lds │ ├── main.c │ └── startup.c ├── firmware_old │ └── sketch.ino └── scripts │ ├── cellpilot_usart.py │ ├── control_server.py │ ├── reset.sh │ ├── set_led.py │ ├── set_pwm.py │ ├── start_autossh.sh │ └── stm32loader.py ├── img ├── cellpilot_board.jpg ├── cellpilot_drone.jpg └── cellpilot_set.jpg ├── pcb ├── cellpilot.brd └── cellpilot.sch └── server └── relay_udp.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.swp 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/README.md -------------------------------------------------------------------------------- /case/cellpilot_case.123dx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/case/cellpilot_case.123dx -------------------------------------------------------------------------------- /case/cellpilot_case.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/case/cellpilot_case.stl -------------------------------------------------------------------------------- /client/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/client/DroidSans.ttf -------------------------------------------------------------------------------- /client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/client/Makefile -------------------------------------------------------------------------------- /client/cellpilot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/client/cellpilot.c -------------------------------------------------------------------------------- /client/cellpilot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/client/cellpilot.lua -------------------------------------------------------------------------------- /drone/firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/drone/firmware/Makefile -------------------------------------------------------------------------------- /drone/firmware/link.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/drone/firmware/link.lds -------------------------------------------------------------------------------- /drone/firmware/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/drone/firmware/main.c -------------------------------------------------------------------------------- /drone/firmware/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/drone/firmware/startup.c -------------------------------------------------------------------------------- /drone/firmware_old/sketch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/drone/firmware_old/sketch.ino -------------------------------------------------------------------------------- /drone/scripts/cellpilot_usart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/drone/scripts/cellpilot_usart.py -------------------------------------------------------------------------------- /drone/scripts/control_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/drone/scripts/control_server.py -------------------------------------------------------------------------------- /drone/scripts/reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/drone/scripts/reset.sh -------------------------------------------------------------------------------- /drone/scripts/set_led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/drone/scripts/set_led.py -------------------------------------------------------------------------------- /drone/scripts/set_pwm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/drone/scripts/set_pwm.py -------------------------------------------------------------------------------- /drone/scripts/start_autossh.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | autossh -M 0 -f -N -R 2222:localhost:22 pi@128.199.77.233 3 | -------------------------------------------------------------------------------- /drone/scripts/stm32loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/drone/scripts/stm32loader.py -------------------------------------------------------------------------------- /img/cellpilot_board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/img/cellpilot_board.jpg -------------------------------------------------------------------------------- /img/cellpilot_drone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/img/cellpilot_drone.jpg -------------------------------------------------------------------------------- /img/cellpilot_set.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/img/cellpilot_set.jpg -------------------------------------------------------------------------------- /pcb/cellpilot.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/pcb/cellpilot.brd -------------------------------------------------------------------------------- /pcb/cellpilot.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/pcb/cellpilot.sch -------------------------------------------------------------------------------- /server/relay_udp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nf-dj/cellpilot/HEAD/server/relay_udp.py --------------------------------------------------------------------------------