EEPROM
i need when connect esp prints recorded in memory, in case in void setup (), had tried printing data not compatible in eeprom memory.
33
ssid
get /: ola http/1.1tp/1.12:05:477
33
ssid
get /: ola http/1.1tp/1.12:05:477
please provide more clear explanation of problem you're encountering is.
you need understand esp8266's "eeprom" works differently standard arduino avr boards eeprom library. data write "eeprom" stored in sram until call eeprom.commit() or eeprom.end(). more information see:
https://github.com/esp8266/arduino/blob/master/doc/libraries.md#eeprom
you need understand esp8266's "eeprom" works differently standard arduino avr boards eeprom library. data write "eeprom" stored in sram until call eeprom.commit() or eeprom.end(). more information see:
https://github.com/esp8266/arduino/blob/master/doc/libraries.md#eeprom
Arduino Forum > Using Arduino > Programming Questions > EEPROM
arduino
Comments
Post a Comment