code upload

This commit is contained in:
e2002
2022-02-04 17:30:12 +03:00
parent fe3f0a261e
commit 3565d2fa17
44 changed files with 25103 additions and 1 deletions

21
yoRadio/network.h Normal file
View File

@@ -0,0 +1,21 @@
#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