mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-08 20:46:52 +03:00
Initial Code v0.1.0
This commit is contained in:
13
code/lib/connect_wlan/connect_wlan.h
Normal file
13
code/lib/connect_wlan/connect_wlan.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#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);
|
||||
|
||||
void LoadWlanFromFile(std::string fn, std::string &_ssid, std::string &_passphrase);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user