Search found 3 matches

by redowl
Sat Aug 03, 2024 3:13 pm
Forum: ESP32 Arduino
Topic: ping found on wifi report error
Replies: 1
Views: 1022

ping found on wifi report error

esp32 on boot: [113338] [WiFiClient.cpp:260] connect(): select returned due to timeout 3000 ms for fd 49 ...got: 0 retrying... ...trying... [116849] [WiFiClient.cpp:260] connect(): select returned due to timeout 3000 ms for fd 49 ...got: 0 retrying... ...trying... [120358] [WiFiClient.cpp:260] conne...
by redowl
Fri Jul 12, 2024 5:27 pm
Forum: Sample Code
Topic: (arduino) update on reboot, require sd, + webserver upload
Replies: 0
Views: 2665

(arduino) update on reboot, require sd, + webserver upload

uint64_t SD_CARD_INFO[5] = {0,0,0,0,0}; //type and present, size, totalbyte, used, freebyte Preferences nvs_; void gatto_fw_set_writable(){ nvs_.putBool("update",true); } void gatto_fw_set_protect(){ nvs_.putBool("update",false); } bool gatto_fw_get_staus(){ bool str = nvs_.getBool("update"); retur...
by redowl
Fri Jul 12, 2024 5:01 pm
Forum: ESP32 Arduino
Topic: serial input discharge overload input
Replies: 0
Views: 1012

serial input discharge overload input

I'm looking for a solution to ensure that if a user continuously sends requests to the serial line the user finds himself having to wait for the end of the previously given command. for example, 3 seconds can pass for a response, any input sent to the serial port in this period of time should be dis...