Skip to content

unseel/docker-micropython-tools-esp32

 
 

Repository files navigation

Build your own MicroPython firmware using docker

Steps

  1. Run the docker container
docker run -it --rm -v {your micropython repo dir}:/root/micropython robbietree/esp32-build-docker:0.0.7
  1. build MicroPython
cd /root
sh clean-build-esp32.sh
  1. find the combined firmware bin
ls /root/micropython/ports/esp32/build-GENERIC_C3/firmware.bin

build-success

  1. upload to board
esptool.py \
    --chip esp32c3 \
    --port /dev/cu.usbserial-1420 \
    --baud 460800 \
    write_flash --flash_size=detect -fm dio 0 firmware.bin
  1. test board

Others

You can refer readme from original repo

About

Container with tools to handle micropython build and deployment on ESP32.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dockerfile 75.6%
  • Shell 24.4%