Skip to content
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

Fixed "Invalid mbox" error in SimpleTime example #9262

Merged
merged 4 commits into from
Feb 21, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions libraries/ESP32/examples/Time/SimpleTime/SimpleTime.ino
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ void setup()
{
Serial.begin(115200);

// configure WiFi STA and connect in order to get the current time and date.
WiFi.begin(ssid, password);

// set notification call-back function
sntp_set_time_sync_notification_cb( timeavailable );

Expand Down