oh yeah, you\'ll need that

This commit is contained in:
Morgan Allen 2018-09-03 19:46:36 -07:00
parent 77a93484de
commit a1d175fbce
1 changed files with 15 additions and 0 deletions

View 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