Skip to content

Instantly share code, notes, and snippets.

@samgooi4189
Created October 8, 2019 05:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samgooi4189/4eb72691b26da4df7364ce17560a5452 to your computer and use it in GitHub Desktop.
Save samgooi4189/4eb72691b26da4df7364ce17560a5452 to your computer and use it in GitHub Desktop.
Cytron espruino ESP32 installtion
1. pip install esptool
2. Download all three files from http://www.espruino.com/Download, which includes bootloader.bin, espruino_esp32.bin, partitions_espruino.bin
3.
esptool.py \
--chip esp32 \
--port /dev/ttyUSB0 \
--baud 115200 \
--after hard_reset write_flash \
-z \
--flash_mode dio \
--flash_freq 40m \
--flash_size detect \
0x1000 bootloader.bin \
0x8000 partitions_espruino.bin \
0x10000 espruino_esp32.bin
4. install webIDE for chrome (http://www.espruino.com/Web+IDE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment