20 lines
291 B
C
20 lines
291 B
C
|
#ifndef WIFI_H
|
||
|
#define WIFI_H
|
||
|
|
||
|
#include "firmware.h"
|
||
|
|
||
|
enum wifiStates
|
||
|
{
|
||
|
WIFI_DISCONNECTED,
|
||
|
WIFI_CONNECTING,
|
||
|
WIFI_CONNECTED,
|
||
|
};
|
||
|
|
||
|
extern enum wifiStates wifiState;
|
||
|
extern const char *LOCKOUT_WIFI_SSID PROGMEM;
|
||
|
extern const char *LOCKOUT_WIFI_PASS PROGMEM;
|
||
|
|
||
|
void processWifiState();
|
||
|
|
||
|
#endif
|