Files
yoradio/yoRadio/network.h
2022-02-04 17:30:12 +03:00

22 lines
316 B
C++

#ifndef network_h
#define network_h
#define apSsid "yoRadioAP"
#define apPassword "12345987"
enum n_Status_e { CONNECTED, SOFT_AP, FAILED };
class Network {
public:
n_Status_e status;
public:
Network() {};
void begin();
private:
void raiseSoftAP();
};
extern Network network;
#endif