Updating Spinner Selection from web

Hi all, very new with app design, I am in the need to save user settings from spinner selection to eeprom on esp32, I have made an app that will enable user to select a setting on a spinner selection then it will save that setting in eeprom but I can’t figure out how to “update” the spinner to the saved selection the next time user enters the settings screen… Right now I have esp32 code sending out http://192.168.4.1/Setting_1 if user selected Setting #2 it would send out http://192.168.4.1/Setting_2 and so on…

Use tinydb to save the desired url according to the user choice from spinner . Next time user enter screen call the saved value from tinydb simple

1 Like

Thank you, I was just looking into Tinydb look’s like it’s just what I need

1 Like