Files
AI-on-the-edge-device/code/components/jomjol_wlan/read_wlanini.h
2022-12-22 18:51:59 +01:00

14 lines
405 B
C++

#pragma once
#ifndef READ_WLANINI_H
#define READ_WLANINI_H
#include <string>
void 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