├── LICENSE.md ├── README.md ├── examples ├── __init__.py ├── color_brightness.py ├── fire.py ├── on_off.py ├── police.py ├── rainbow.py ├── smooth.py ├── strobe.py └── wipe.py ├── firmware-no-webrepl.bin ├── mjlight.py ├── mlight.py ├── tools ├── __init__.py ├── hsv_to_rgb.py └── rgb_to_hsv.py └── umqtt └── simple.py /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpanaro/esp8266_micropython/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpanaro/esp8266_micropython/HEAD/README.md -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/color_brightness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpanaro/esp8266_micropython/HEAD/examples/color_brightness.py -------------------------------------------------------------------------------- /examples/fire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpanaro/esp8266_micropython/HEAD/examples/fire.py -------------------------------------------------------------------------------- /examples/on_off.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpanaro/esp8266_micropython/HEAD/examples/on_off.py -------------------------------------------------------------------------------- /examples/police.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpanaro/esp8266_micropython/HEAD/examples/police.py -------------------------------------------------------------------------------- /examples/rainbow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpanaro/esp8266_micropython/HEAD/examples/rainbow.py -------------------------------------------------------------------------------- /examples/smooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpanaro/esp8266_micropython/HEAD/examples/smooth.py -------------------------------------------------------------------------------- /examples/strobe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpanaro/esp8266_micropython/HEAD/examples/strobe.py -------------------------------------------------------------------------------- /examples/wipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpanaro/esp8266_micropython/HEAD/examples/wipe.py -------------------------------------------------------------------------------- /firmware-no-webrepl.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpanaro/esp8266_micropython/HEAD/firmware-no-webrepl.bin -------------------------------------------------------------------------------- /mjlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpanaro/esp8266_micropython/HEAD/mjlight.py -------------------------------------------------------------------------------- /mlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpanaro/esp8266_micropython/HEAD/mlight.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/hsv_to_rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpanaro/esp8266_micropython/HEAD/tools/hsv_to_rgb.py -------------------------------------------------------------------------------- /tools/rgb_to_hsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpanaro/esp8266_micropython/HEAD/tools/rgb_to_hsv.py -------------------------------------------------------------------------------- /umqtt/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinpanaro/esp8266_micropython/HEAD/umqtt/simple.py --------------------------------------------------------------------------------