-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to set the parameters? #81
Comments
Build and download results: Processing esp32dev (platform: [email protected]; board: lolin_s3; framework: arduino)Verbose mode can be enabled via
Leaving... Environment Status Duration esp32dev SUCCESS 00:01:05.855 |
Hi, Great project, I'd like to build the clock but I'm running into a problem I can't solve.
I am not an expert... I used PlatformIO to compile the program on an ESP32-S3. the compile and upload is OK, but when the program runs, I have the following messages in the serial monitor window:
ESP-ROM:esp32s3-20210327
Build:Mar 27 2021
rst:0x8 (TG1WDT_SYS_RST),boot:0x8 (SPI_FAST_FLASH_BOOT)
Saved PC:0x40377b8d
SPIWP:0xee
mode:DIO, clock div:1
load:0x3fce3808,len:0x44c
load:0x403c9700,len:0xbec
load:0x403cc700,len:0x2920
entry 0x403c98d8
[ 1194][E][Preferences.cpp:483] getString(): nvs_get_str len fail: timeZone NOT_FOUND
[ 1194][E][Preferences.cpp:483] getString(): nvs_get_str len fail: wifiSsid NOT_FOUND
[ 1198][E][Preferences.cpp:483] getString(): nvs_get_str len fail: wifiPwd NOT_FOUND
[ 1206][E][Preferences.cpp:483] getString(): nvs_get_str len fail: ntpServer NOT_FOUND
[ 1213][E][Preferences.cpp:483] getString(): nvs_get_str len fail: canvasFile NOT_FOUND
[ 1221][E][Preferences.cpp:483] getString(): nvs_get_str len fail: canvasServer NOT_FOUND
[ 1229][E][Preferences.cpp:483] getString(): nvs_get_str len fail: manualPosix NOT_FOUND
I configured the ssid and wifi password in the load() section of the CWPreferences.h file as follows:
wifiSsid = preferences.getString(PREF_WIFI_SSID, "MySSID");
wifiPwd = preferences.getString(PREF_WIFI_PASSWORD, "MyPassword");
the ESP32 reboots indefinitely (watch dog: TG1WDT_SYS_RST)...
would you have an idea?
Thank you.
The text was updated successfully, but these errors were encountered: