oh yeah, you\'ll need that
This commit is contained in:
parent
77a93484de
commit
a1d175fbce
1 changed files with 15 additions and 0 deletions
15
include/esp32-wifi-manager.h
Normal file
15
include/esp32-wifi-manager.h
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
#ifndef __WIFI_MANAGER_H
|
||||||
|
#define __WIFI_MANAGER_H
|
||||||
|
|
||||||
|
#define WIFI_MANAGER_MAGIC (0xb00b000c)
|
||||||
|
|
||||||
|
void wifi_manager_save_config();
|
||||||
|
void wifi_manager_load_config();
|
||||||
|
void wifi_manager_reset_store();
|
||||||
|
|
||||||
|
uint8_t wifi_manager_ap_count();
|
||||||
|
uint8_t wifi_manager_add_ap(char *essid, char *password);
|
||||||
|
|
||||||
|
EventGroupHandle_t wifi_manager_start();
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in a new issue