Chat freely about anything...

User avatar
By MyESP
#83554 Hi everyone newbie here. Been reading and testing codes for a few days now trying to save server query parameter to eeprom. So I would like to send html input submit field to save to eeprom on the esp8266

I only need to work with numbers 0-254 and my server is currently passing query parameters when I click submit e.g
Code: Select all192.168.4.1/save3?myPer1=228


what is it that I have to do in the code to save myPer1 to eeprom? I tried this but doesn't work:

Code: Select all  EEPROM.write(0, myPer1);
  EEPROM.commit();