├── .gitmodules ├── README.md ├── hwapi └── hwconfig_OLIMEX_E407.py ├── keypad ├── README.md ├── keypad_timer.py └── keypad_uasyncio.py ├── keypad_lcd ├── keypad_lcd_uasyncio.py └── wx_asyncio_test_1.py └── leds ├── led_array.py └── led_fade_flash_uasyncio.py /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrendanSimon/micropython_experiments/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrendanSimon/micropython_experiments/HEAD/README.md -------------------------------------------------------------------------------- /hwapi/hwconfig_OLIMEX_E407.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrendanSimon/micropython_experiments/HEAD/hwapi/hwconfig_OLIMEX_E407.py -------------------------------------------------------------------------------- /keypad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrendanSimon/micropython_experiments/HEAD/keypad/README.md -------------------------------------------------------------------------------- /keypad/keypad_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrendanSimon/micropython_experiments/HEAD/keypad/keypad_timer.py -------------------------------------------------------------------------------- /keypad/keypad_uasyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrendanSimon/micropython_experiments/HEAD/keypad/keypad_uasyncio.py -------------------------------------------------------------------------------- /keypad_lcd/keypad_lcd_uasyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrendanSimon/micropython_experiments/HEAD/keypad_lcd/keypad_lcd_uasyncio.py -------------------------------------------------------------------------------- /keypad_lcd/wx_asyncio_test_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrendanSimon/micropython_experiments/HEAD/keypad_lcd/wx_asyncio_test_1.py -------------------------------------------------------------------------------- /leds/led_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrendanSimon/micropython_experiments/HEAD/leds/led_array.py -------------------------------------------------------------------------------- /leds/led_fade_flash_uasyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrendanSimon/micropython_experiments/HEAD/leds/led_fade_flash_uasyncio.py --------------------------------------------------------------------------------