This commit is contained in:
jomjol
2021-02-03 21:26:00 +01:00
parent 87202115d0
commit 9dbad050fd
14 changed files with 660 additions and 207 deletions

View File

@@ -0,0 +1,21 @@
//#ifndef CONNECT_WLAN_H
//#define CONNECT_WLAN_H
#include <string>
#include "driver/gpio.h"
const int CONNECTED_BIT = BIT0;
void ConnectToWLAN();
void LoadWlanFromFile(std::string fn);
bool ChangeHostName(std::string fn, std::string _newhostname);
std::string getHostname();
std::string getIPAddress();
std::string getSSID();
std::string getNetMask();
std::string getGW();
//#endif