MicroPython toolchain for ESP8266 microcontrollers
Go to file
Lauri Võsandi c98466faa2
continuous-integration/drone Build is passing Details
Bump version to 1.19
2023-01-27 15:39:33 +02:00
.drone.yml Initial commit 2022-05-03 18:52:15 +03:00
Dockerfile Bump version to 1.19 2023-01-27 15:39:33 +02:00
README.md Initial commit 2022-05-03 18:52:15 +03:00

README.md

This Docker image drastically simplifies building MicroPython binaries for ESP8266 microcontrollers with frozen modules -- that is flashable MicroPython images that include your payload as bytecode so they're easy to deploy and even more importantly free up precious RAM for ESP8266.

Place your source code under modules/ and the Docker image should pick them up and bundle them into the resulting firmware image placed under build/

docker run --rm -v $PWD/modules:/src/ports/esp8266/modules -v $PWD/build:/build harbor.k-space.ee/k-space/micropython-esp8266