├── .gitattributes ├── .gitignore ├── Contributors.md ├── License ├── ReadMe.md ├── applications ├── cloud.py ├── default.py ├── joysticks.py ├── nodebots.py ├── schedule │ ├── schedulator.py │ ├── schedule.json │ └── schedule.py ├── step_controller.py ├── step_patterns │ ├── cchs_1.py │ └── skipping_girl.py ├── stream_train.py └── swagbadge.py ├── configuration ├── keys.db ├── led.py ├── led.py_lolibot ├── lolibot.py ├── main.py ├── main.py_lolibot ├── mqtt.py ├── net.py ├── oled.py ├── schedule.py ├── services.py ├── services.py_lolibot └── system_ui.py ├── examples ├── blinkeye │ ├── L00.pbm │ ├── L03.pbm │ ├── L05.pbm │ ├── L06.pbm │ ├── L07.pbm │ ├── L08.pbm │ ├── L09.pbm │ ├── L11.pbm │ ├── L12.pbm │ ├── R00.pbm │ ├── R03.pbm │ ├── R05.pbm │ ├── R06.pbm │ ├── R07.pbm │ ├── R08.pbm │ ├── R09.pbm │ ├── R11.pbm │ ├── R12.pbm │ ├── R23.pbm │ ├── R24.pbm │ ├── R32.pbm │ ├── R33.pbm │ ├── README.md │ ├── blinkeye.mpf │ ├── install.sh │ └── oled_blinkeye.py ├── buttons_sliders.py ├── game_snake.py ├── hall_effect.py ├── install.sh ├── oled_benchmark.py ├── oled_image.py ├── showcase.py ├── snoot_boop.py ├── tux.jpg ├── tux_128.pbm ├── tux_64.pbm ├── tux_nice.pbm └── tux_zoom.pbm ├── lib ├── aiko │ ├── button.py │ ├── common.py │ ├── event.py │ ├── led.py │ ├── mqtt.py │ ├── net.py │ ├── oled.py │ ├── queue.py │ ├── services.py │ ├── system_ui.py │ ├── test.py │ ├── upgrade.py │ ├── web_client.py │ └── web_server.py ├── bmp280.py ├── ili9341.py ├── lolibot.py ├── max7219.py ├── micropyGPS.py ├── mpu9250.py ├── pcf8574.py ├── shutil.py ├── ssd1306.py ├── threading.py ├── umqtt │ ├── robust.py │ └── simple.py └── xglcd_font.py ├── main.py └── scripts ├── aiko.mpf ├── ampy ├── check_version.sh ├── flash_aiko.sh ├── flash_all.sh └── flash_lolibot.sh ├── backup.mpf ├── device_info.py ├── flash_esp8266.sh ├── flash_micropython.sh ├── flash_swagbadge.sh ├── generate_keys.sh ├── mpf.sh ├── mpf_script.sh ├── release.sh ├── tester.py └── windows ├── flash_micropython.bat └── flash_step_controller.bat /.gitattributes: -------------------------------------------------------------------------------- 1 | *.py text eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | env/ 2 | firmware/ 3 | micropython-lib/ 4 | *_andyg 5 | *_cchs 6 | z_* 7 | -------------------------------------------------------------------------------- /Contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/Contributors.md -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/License -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/ReadMe.md -------------------------------------------------------------------------------- /applications/cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/applications/cloud.py -------------------------------------------------------------------------------- /applications/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/applications/default.py -------------------------------------------------------------------------------- /applications/joysticks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/applications/joysticks.py -------------------------------------------------------------------------------- /applications/nodebots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/applications/nodebots.py -------------------------------------------------------------------------------- /applications/schedule/schedulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/applications/schedule/schedulator.py -------------------------------------------------------------------------------- /applications/schedule/schedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/applications/schedule/schedule.json -------------------------------------------------------------------------------- /applications/schedule/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/applications/schedule/schedule.py -------------------------------------------------------------------------------- /applications/step_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/applications/step_controller.py -------------------------------------------------------------------------------- /applications/step_patterns/cchs_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/applications/step_patterns/cchs_1.py -------------------------------------------------------------------------------- /applications/step_patterns/skipping_girl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/applications/step_patterns/skipping_girl.py -------------------------------------------------------------------------------- /applications/stream_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/applications/stream_train.py -------------------------------------------------------------------------------- /applications/swagbadge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/applications/swagbadge.py -------------------------------------------------------------------------------- /configuration/keys.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/configuration/keys.db -------------------------------------------------------------------------------- /configuration/led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/configuration/led.py -------------------------------------------------------------------------------- /configuration/led.py_lolibot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/configuration/led.py_lolibot -------------------------------------------------------------------------------- /configuration/lolibot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/configuration/lolibot.py -------------------------------------------------------------------------------- /configuration/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/configuration/main.py -------------------------------------------------------------------------------- /configuration/main.py_lolibot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/configuration/main.py_lolibot -------------------------------------------------------------------------------- /configuration/mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/configuration/mqtt.py -------------------------------------------------------------------------------- /configuration/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/configuration/net.py -------------------------------------------------------------------------------- /configuration/oled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/configuration/oled.py -------------------------------------------------------------------------------- /configuration/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/configuration/schedule.py -------------------------------------------------------------------------------- /configuration/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/configuration/services.py -------------------------------------------------------------------------------- /configuration/services.py_lolibot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/configuration/services.py_lolibot -------------------------------------------------------------------------------- /configuration/system_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/configuration/system_ui.py -------------------------------------------------------------------------------- /examples/blinkeye/L00.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/L00.pbm -------------------------------------------------------------------------------- /examples/blinkeye/L03.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/L03.pbm -------------------------------------------------------------------------------- /examples/blinkeye/L05.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/L05.pbm -------------------------------------------------------------------------------- /examples/blinkeye/L06.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/L06.pbm -------------------------------------------------------------------------------- /examples/blinkeye/L07.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/L07.pbm -------------------------------------------------------------------------------- /examples/blinkeye/L08.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/L08.pbm -------------------------------------------------------------------------------- /examples/blinkeye/L09.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/L09.pbm -------------------------------------------------------------------------------- /examples/blinkeye/L11.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/L11.pbm -------------------------------------------------------------------------------- /examples/blinkeye/L12.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/L12.pbm -------------------------------------------------------------------------------- /examples/blinkeye/R00.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/R00.pbm -------------------------------------------------------------------------------- /examples/blinkeye/R03.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/R03.pbm -------------------------------------------------------------------------------- /examples/blinkeye/R05.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/R05.pbm -------------------------------------------------------------------------------- /examples/blinkeye/R06.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/R06.pbm -------------------------------------------------------------------------------- /examples/blinkeye/R07.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/R07.pbm -------------------------------------------------------------------------------- /examples/blinkeye/R08.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/R08.pbm -------------------------------------------------------------------------------- /examples/blinkeye/R09.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/R09.pbm -------------------------------------------------------------------------------- /examples/blinkeye/R11.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/R11.pbm -------------------------------------------------------------------------------- /examples/blinkeye/R12.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/R12.pbm -------------------------------------------------------------------------------- /examples/blinkeye/R23.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/R23.pbm -------------------------------------------------------------------------------- /examples/blinkeye/R24.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/R24.pbm -------------------------------------------------------------------------------- /examples/blinkeye/R32.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/R32.pbm -------------------------------------------------------------------------------- /examples/blinkeye/R33.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/R33.pbm -------------------------------------------------------------------------------- /examples/blinkeye/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/README.md -------------------------------------------------------------------------------- /examples/blinkeye/blinkeye.mpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/blinkeye.mpf -------------------------------------------------------------------------------- /examples/blinkeye/install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ../install.sh "$@" 4 | -------------------------------------------------------------------------------- /examples/blinkeye/oled_blinkeye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/blinkeye/oled_blinkeye.py -------------------------------------------------------------------------------- /examples/buttons_sliders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/buttons_sliders.py -------------------------------------------------------------------------------- /examples/game_snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/game_snake.py -------------------------------------------------------------------------------- /examples/hall_effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/hall_effect.py -------------------------------------------------------------------------------- /examples/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/install.sh -------------------------------------------------------------------------------- /examples/oled_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/oled_benchmark.py -------------------------------------------------------------------------------- /examples/oled_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/oled_image.py -------------------------------------------------------------------------------- /examples/showcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/showcase.py -------------------------------------------------------------------------------- /examples/snoot_boop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/snoot_boop.py -------------------------------------------------------------------------------- /examples/tux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/tux.jpg -------------------------------------------------------------------------------- /examples/tux_128.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/tux_128.pbm -------------------------------------------------------------------------------- /examples/tux_64.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/tux_64.pbm -------------------------------------------------------------------------------- /examples/tux_nice.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/tux_nice.pbm -------------------------------------------------------------------------------- /examples/tux_zoom.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/examples/tux_zoom.pbm -------------------------------------------------------------------------------- /lib/aiko/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/aiko/button.py -------------------------------------------------------------------------------- /lib/aiko/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/aiko/common.py -------------------------------------------------------------------------------- /lib/aiko/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/aiko/event.py -------------------------------------------------------------------------------- /lib/aiko/led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/aiko/led.py -------------------------------------------------------------------------------- /lib/aiko/mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/aiko/mqtt.py -------------------------------------------------------------------------------- /lib/aiko/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/aiko/net.py -------------------------------------------------------------------------------- /lib/aiko/oled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/aiko/oled.py -------------------------------------------------------------------------------- /lib/aiko/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/aiko/queue.py -------------------------------------------------------------------------------- /lib/aiko/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/aiko/services.py -------------------------------------------------------------------------------- /lib/aiko/system_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/aiko/system_ui.py -------------------------------------------------------------------------------- /lib/aiko/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/aiko/test.py -------------------------------------------------------------------------------- /lib/aiko/upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/aiko/upgrade.py -------------------------------------------------------------------------------- /lib/aiko/web_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/aiko/web_client.py -------------------------------------------------------------------------------- /lib/aiko/web_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/aiko/web_server.py -------------------------------------------------------------------------------- /lib/bmp280.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/bmp280.py -------------------------------------------------------------------------------- /lib/ili9341.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/ili9341.py -------------------------------------------------------------------------------- /lib/lolibot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/lolibot.py -------------------------------------------------------------------------------- /lib/max7219.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/max7219.py -------------------------------------------------------------------------------- /lib/micropyGPS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/micropyGPS.py -------------------------------------------------------------------------------- /lib/mpu9250.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/mpu9250.py -------------------------------------------------------------------------------- /lib/pcf8574.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/pcf8574.py -------------------------------------------------------------------------------- /lib/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/shutil.py -------------------------------------------------------------------------------- /lib/ssd1306.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/ssd1306.py -------------------------------------------------------------------------------- /lib/threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/threading.py -------------------------------------------------------------------------------- /lib/umqtt/robust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/umqtt/robust.py -------------------------------------------------------------------------------- /lib/umqtt/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/umqtt/simple.py -------------------------------------------------------------------------------- /lib/xglcd_font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/lib/xglcd_font.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/main.py -------------------------------------------------------------------------------- /scripts/aiko.mpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/scripts/aiko.mpf -------------------------------------------------------------------------------- /scripts/ampy/check_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/scripts/ampy/check_version.sh -------------------------------------------------------------------------------- /scripts/ampy/flash_aiko.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/scripts/ampy/flash_aiko.sh -------------------------------------------------------------------------------- /scripts/ampy/flash_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/scripts/ampy/flash_all.sh -------------------------------------------------------------------------------- /scripts/ampy/flash_lolibot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/scripts/ampy/flash_lolibot.sh -------------------------------------------------------------------------------- /scripts/backup.mpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/scripts/backup.mpf -------------------------------------------------------------------------------- /scripts/device_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/scripts/device_info.py -------------------------------------------------------------------------------- /scripts/flash_esp8266.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/scripts/flash_esp8266.sh -------------------------------------------------------------------------------- /scripts/flash_micropython.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/scripts/flash_micropython.sh -------------------------------------------------------------------------------- /scripts/flash_swagbadge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/scripts/flash_swagbadge.sh -------------------------------------------------------------------------------- /scripts/generate_keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/scripts/generate_keys.sh -------------------------------------------------------------------------------- /scripts/mpf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/scripts/mpf.sh -------------------------------------------------------------------------------- /scripts/mpf_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/scripts/mpf_script.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /scripts/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/scripts/tester.py -------------------------------------------------------------------------------- /scripts/windows/flash_micropython.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/scripts/windows/flash_micropython.bat -------------------------------------------------------------------------------- /scripts/windows/flash_step_controller.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekscape/aiko_engine_mp/HEAD/scripts/windows/flash_step_controller.bat --------------------------------------------------------------------------------