-
Notifications
You must be signed in to change notification settings - Fork 36
How to install firmware on your ESP
tjfsteele edited this page Dec 22, 2022
·
41 revisions
To install firmware on your ESP using esptool.exe:
- If your ESP is already on the OTGW, power down the gateway and unplug the ESP from the OTGW.
- Connect the ESP to a PC using a Micro USB lead. If no driver, try: WeMos or NodeMCU.
- Download both .bin files from our github and also esptool (you will need to unzip it).
- Rename the .bin files to
ino.binandfs.bin. Make sureesptoolis on your path. - Identify your ESP port, e.g. on Windows try
mode|for /f "tokens=4" %a in ('findstr COM') do @echo %a. - Run
esptool -cp COM3 -cd nodemcu -cb 921600 -cf ino.bin -ca 0x200000 -cf fs.bin(replaceCOM3with ESP port). - You should see a series of lines ending with
[ 100% ]. The blue light should blink fast during programming then slowly. - Unplug the ESP and install into your OTGW (be sure it's the right way round!), then power on the OTGW.