You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting the error below when compiling. I'm using:
Arduino IDE 2.0.3
ArduioWebsockets by Gil Maimon 0.5.3
M5Stick-C-Plus
`[filepath]ProPresenterClicker.ino: In function 'void setup()':
[filepath]ProPresenterClicker.ino:218:40: error: 'SYSTEM_EVENT_STA_GOT_IP' is not a member of 'arduino_event_id_t'
WiFi.onEvent(WiFiGotIP, WiFiEvent_t::SYSTEM_EVENT_STA_GOT_IP);
^~~~~~~~~~~~~~~~~~~~~~~
[filepath]ProPresenterClicker.ino:219:47: error: 'SYSTEM_EVENT_STA_DISCONNECTED' is not a member of 'arduino_event_id_t'
WiFi.onEvent(WiFiDisconnected, WiFiEvent_t::SYSTEM_EVENT_STA_DISCONNECTED);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
exit status 1
Compilation error: 'SYSTEM_EVENT_STA_GOT_IP' is not a member of 'arduino_event_id_t'`
Any thoughts? Thanks!
The text was updated successfully, but these errors were encountered:
It sounds like a library version issue. I can't tell which library is the problem, but that's what this sounds like. Either you need to use the same libraries we used or you need to update the code to work with your library.
I currently don't have time to update the code. Do you know someone who can?
I'm getting the error below when compiling. I'm using:
`[filepath]ProPresenterClicker.ino: In function 'void setup()':
[filepath]ProPresenterClicker.ino:218:40: error: 'SYSTEM_EVENT_STA_GOT_IP' is not a member of 'arduino_event_id_t'
WiFi.onEvent(WiFiGotIP, WiFiEvent_t::SYSTEM_EVENT_STA_GOT_IP);
^~~~~~~~~~~~~~~~~~~~~~~
[filepath]ProPresenterClicker.ino:219:47: error: 'SYSTEM_EVENT_STA_DISCONNECTED' is not a member of 'arduino_event_id_t'
WiFi.onEvent(WiFiDisconnected, WiFiEvent_t::SYSTEM_EVENT_STA_DISCONNECTED);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
exit status 1
Compilation error: 'SYSTEM_EVENT_STA_GOT_IP' is not a member of 'arduino_event_id_t'`
Any thoughts? Thanks!
The text was updated successfully, but these errors were encountered: