From a1d175fbce8f9b1bf42e3ae9ff13f7a0094dda95 Mon Sep 17 00:00:00 2001 From: Morgan Allen Date: Mon, 3 Sep 2018 19:46:36 -0700 Subject: [PATCH] oh yeah, you\'ll need that --- include/esp32-wifi-manager.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 include/esp32-wifi-manager.h diff --git a/include/esp32-wifi-manager.h b/include/esp32-wifi-manager.h new file mode 100644 index 0000000..f0d5b30 --- /dev/null +++ b/include/esp32-wifi-manager.h @@ -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