mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-08 20:46:52 +03:00
14 lines
405 B
C++
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
|