mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-08 20:46:52 +03:00
* WLAN: add error handling * WLAN: parameter global struct * WLAN.ini -> more info text * RSSIThreshold * Rename logs * Boot process: error handling * Update texts * Comments * Init sequence * Prepare for check dir creation * add check makedir, update logs * Blink code for OTA+SoftAP * Blink code for missing time snyc * Update * reboot -> switch LED off * Update log texts * Update * Update log texts * create empty default folders at startup * Update * Adapt log level * Print log level switch * Update * Update text * Add SD free space to log * WIFI/MQTT disconnect message set to WARN (+ ERROR)
15 lines
250 B
C++
15 lines
250 B
C++
#pragma once
|
|
|
|
#ifndef CONNECT_WLAN_H
|
|
#define CONNECT_WLAN_H
|
|
|
|
#include <string>
|
|
|
|
int wifi_init_sta(void);
|
|
std::string* getIPAddress();
|
|
std::string* getSSID();
|
|
int get_WIFI_RSSI();
|
|
bool getWIFIisConnected();
|
|
void WIFIDestroy();
|
|
|
|
#endif //CONNECT_WLAN_H
|