8 #ifndef MAIN_NEOPIXELWIFIEVENTHANDLER_H_
9 #define MAIN_NEOPIXELWIFIEVENTHANDLER_H_
10 #include "WiFiEventHandler.h"
26 esp_err_t
staConnected(system_event_sta_connected_t info)
override;
27 esp_err_t
staGotIp(system_event_sta_got_ip_t info)
override;
28 esp_err_t
staDisconnected(system_event_sta_disconnected_t info)
override;
29 esp_err_t wifiReady()
override;
30 esp_err_t staStart()
override;
Driver for WS2812/NeoPixel data.
Definition: WS2812.h:49
esp_err_t apStart() override
Handle the Access Point started event. Handle an indication that the ESP32 has started being an acces...
Definition: NeoPixelWiFiEventHandler.cpp:22
Color a neopixel as a function of the WiFi state.
Definition: NeoPixelWiFiEventHandler.h:20
esp_err_t staDisconnected(system_event_sta_disconnected_t info) override
Handle the Station Disconnected event. Handle having disconnected from remote AP. ...
Definition: NeoPixelWiFiEventHandler.cpp:36
esp_err_t staConnected(system_event_sta_connected_t info) override
Handle the Station Connected event. Handle having connected to remote AP.
Definition: NeoPixelWiFiEventHandler.cpp:29
esp_err_t staGotIp(system_event_sta_got_ip_t info) override
Handle the Station Got IP event. Handle having received/assigned an IP address when we are a station...
Definition: NeoPixelWiFiEventHandler.cpp:50
WiFi state event handler.
Definition: WiFiEventHandler.h:98