1#ifndef Driver_Wifi_Station_Connection_h_
2#define Driver_Wifi_Station_Connection_h_
16#include "colony_map.h"
86 static
bool start( const
char* ssid,
95 static
void poll() noexcept;
This class defines an asynchronous interface for a Station device to connect to a WIFI network.
Definition Connection.h:38
State_T
Connection state.
Definition Connection.h:42
@ eLINK_JOINED_NOIP
Connected to wifi, but no IP address.
Definition Connection.h:45
@ eLINK_BAD_AUTHENTICATION
Authentication failure.
Definition Connection.h:49
@ eLINK_UP
Connect to wifi with an IP address.
Definition Connection.h:46
@ eLINK_NO_NETWORK
No matching SSID found (could be out of range, or down)
Definition Connection.h:48
@ eLINK_JOINED
Connected to wifi.
Definition Connection.h:44
@ eLINK_FAILED
Connection failed.
Definition Connection.h:47
@ eLINK_DOWN
The link is down.
Definition Connection.h:43
static void poll() noexcept
This method is used to monitor the current state of the WIFI connection and attempts to re-establish ...
static void stop() noexcept
This method disconnects the device from the from the WIFI network.
static const char * toString(State_T linkStatus) noexcept
Convience method that convert the binary State_T enum to string.
static void initiailize() noexcept
This method is used to initialize the WIFI engine in Station Mode.
static bool start(const char *ssid, const char *password, Authentication_T authenticationMethod, StateChangedFunc_T callbackFunc=nullptr) noexcept
This method is used to initiate connecting to a WIFI network.
void(* StateChangedFunc_T)(State_T currentState)
Defines the function signature for callbacks.
Definition Connection.h:63
static bool isConnected() noexcept
This method returns true if the state of the WIFI connection is in the eLINK_UP state.
Authentication_T
Authorization options.
Definition Connection.h:54
@ eWPA2_AES_PSK
WPA2 authorization (preferred)
Definition Connection.h:57
@ eWPA2_MIXED_PSK
WPA2/WPA mixed authorization.
Definition Connection.h:58
@ eOPEN
No authorization required.
Definition Connection.h:55
@ eWPA_TKIP_PSK
WPA authorization.
Definition Connection.h:56
static State_T getState() noexcept
This method returns true the current state of the WIFI connection.