Created
October 8, 2019 05:41
-
-
Save samgooi4189/4eb72691b26da4df7364ce17560a5452 to your computer and use it in GitHub Desktop.
Cytron espruino ESP32 installtion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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