You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
291 B

#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