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.
 
 
 
 

20 lines
302 B

#ifndef WIFI_H
#define WIFI_H
#include <ESP8266WiFiMulti.h>
#include "wifi_settings.h"
class Wifi
{
public:
Wifi(WifiSettings const& settings);
void keep_alive_connection();
bool is_connected() const;
protected:
ESP8266WiFiMulti m_wifi;
};
#endif //WIFI_H