Dobrica Pavlinušić's random unstructured stuff
ESP8266: Revision 25
links
ESP-01 pinout
serial portbaud rate 115200 AT+GMR 00160901 OK AT+RST OK ets Jan 8 2013,rst cause:4, boot mode:(3,7) wdt reset load 0x40100000, len 24444, room 16 tail 12 chksum 0xe0 ho 0 tail 12 room 4 load 0x3ffe8000, len 3168, room 12 tail 4 chksum 0x93 load 0x3ffe8c60, len 4956, room 4 tail 8 chksum 0xbd csum 0xbd ready ESP-201from http://smarpl.com/content/esp8266-esp-201-module-first-impressions One quirk with the ESP-201 is that is IO15 has to be grounded for the device to function. To flash the device IO00 has to be grounded. AT+RST OK ets Jan 8 2013,rst cause:4, boot mode:(3,7) wdt reset load 0x40100000, len 212, room 16 tail 4 chksum 0x5e load 0x3ffe8000, len 788, room 4 tail 0 chksum 0x1c load 0x3ffe8314, len 72, room 8 tail 0 chksum 0x55 csum 0x55 jump to user1 nodemcu
esptool.pydpavlin@x200:/rest/cvs/esptool$ git remote -v origin https://github.com/themadinventor/esptool (fetch) origin https://github.com/themadinventor/esptool (push) dpavlin@x200:/rest/cvs/esptool$ ./esptool.py --port /dev/ttyUSB2 read_mac Connecting... MAC: 18:fe:34:a0:38:72 flash firmwaredpavlin@blue:/opt/Espressif/esptool$ ./esptool.py read_mac Connecting... MAC: 18:fe:34:a0:38:72 dpavlin@blue:/opt/Espressif/esptool$ ./esptool.py --port /dev/ttyUSB0 write_flash 0x00000 ../nodemcu-firmware/pre_build/latest/nodemcu_latest.bin Connecting... Erasing flash... Writing at 0x00010800... (17 %) Get latest build from https://github.com/nodemcu/nodemcu-firmware/releases dpavlin@x200:/rest/cvs/esptool$ ./esptool.py --port /dev/ttyUSB2 write_flash 0x00000 ./nodemcu_float_0.9.6-dev_20150406.bin build from sourceFor latest features, you might want to rebuild software from github source dpavlin@x200:/rest/cvs$ git clone https://github.com/pfalcon/esp-open-sdk.git git clone https://github.com/nodemcu/nodemcu-firmware.git cd nodemcu-firmware make && make flash |