Files
AI-on-the-edge-device/code/lib/connect_wlan/connect_wlan.h
2020-09-14 19:43:32 +02:00

13 lines
330 B
C++

#ifndef CONNECT_WLAN_H
#define CONNECT_WLAN_H
#include <string>
#include "driver/gpio.h"
const int CONNECTED_BIT = BIT0;
void initialise_wifi(std::string _ssid, std::string _passphrase, std::string _hostname);
void LoadWlanFromFile(std::string fn, std::string &_ssid, std::string &_passphrase, std::string &_hostname);
#endif