Files
AI-on-the-edge-device/code/components/jomjol_wlan/read_wlanini.h
jomjol 85030e39fa Improve initial setup proc (#1692)
* Initial Test

* Initial functional version.
2022-12-27 10:20:55 +01:00

14 lines
405 B
C++

#pragma once
#ifndef READ_WLANINI_H
#define READ_WLANINI_H
#include <string>
bool LoadWlanFromFile(std::string fn, char *&_ssid, char *&_password, char *&_hostname, char *&_ipadr, char *&_gw, char *&_netmask, char *&_dns, int &_rssithreashold);
bool ChangeHostName(std::string fn, std::string _newhostname);
bool ChangeRSSIThreashold(std::string fn, int _newrssithreashold);
#endif //READ_WLANINI_H