Post topics, source code that relate to the Arduino Platform

User avatar
By AlexPilk
#24832 Say I want the user to go to the ip address of the module, input a value into an input field, that would be later sent out via TX when the button connected to a GPIO pin is pressed. Most importantly, how do I save the value the user enters, so that the module would remember it after turning the module off and on again? It should be possible to create a txt file or something for holding the data, right? And if possible - how do you do it using Arduino IDE?
User avatar
By kolban
#24833 Howdy Alex,
See the following:

http://arduino.esp8266.com/versions/1.6 ... rence.html

Specifically, see the section on the EEPROM class. This appears to allow you to write data to flash from within a Sketch and also read it back.