Espruino offers these two builds for esp8266 to download:
espruino_1v95_esp8266
can be used by all esp8266 boards, ESP01 upto ESP13
uses a flash map 512/512
espruino_1v95_esp8266_4mb
can only be used by boards with min 4MB flash like ESP12
uses a flash map 1024/1024
and GRAPHICS
Check README_flash.txt how to use esptool.py for different flash sizes ( 4MB 1024/1024 note is waiting for commit)
Not sure if E.setBootCode is the best way in this case
Add the initial parts in E.init(), upload the code and then type save();
E.init()
save();
@MaBe started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Espruino offers these two builds for esp8266 to download:
espruino_1v95_esp8266
can be used by all esp8266 boards, ESP01 upto ESP13
uses a flash map 512/512
espruino_1v95_esp8266_4mb
can only be used by boards with min 4MB flash like ESP12
uses a flash map 1024/1024
and GRAPHICS
Check README_flash.txt how to use esptool.py for different flash sizes ( 4MB 1024/1024 note is waiting for commit)
Not sure if E.setBootCode is the best way in this case
Add the initial parts in
E.init()
, upload the code and then typesave();