Search found 3 matches

by IraSch
Sun May 02, 2021 2:59 pm
Forum: ESP32 Arduino
Topic: How can I tell if my Wifi link is still alive?
Replies: 1
Views: 2526

How can I tell if my Wifi link is still alive?

I have a project that works well. It functions in both the server capacity (accepts web requests from the user) and as a client (goes out to retrieve info as needed based on a user request). My issue is, how can I detect if the Wifi link has dropped? For example, if the router lost power or was rese...
by IraSch
Fri Dec 04, 2020 4:51 pm
Forum: ESP32 Arduino
Topic: ESP32 - using EEPROM.write vs. using .put or .write (etc)
Replies: 3
Views: 4635

Re: ESP32 - using EEPROM.write vs. using .put or .write (etc)

I pulled down the example from Github but when compiled it gives an error 'class Preferences' has no member named 'getBytesLength' Not a big deal, I can still use the example to see how Preferences work, but not sure why the error. I downloaded the latest version and that does include the GetBytesLe...
by IraSch
Wed Dec 02, 2020 10:38 pm
Forum: ESP32 Arduino
Topic: ESP32 - using EEPROM.write vs. using .put or .write (etc)
Replies: 3
Views: 4635

ESP32 - using EEPROM.write vs. using .put or .write (etc)

I'm working with an Adafruit Huzzah Feather ESP32: I need to store some information between power cycles. Only about 32 bytes made up of integer variables. Searches have led me to both EEPROM.write and to Preferences.putbytes (or .write). I believe that .write only works with individual bytes (0-255...