flip_wifi_storage.h 472 B

123456789101112131415161718
  1. #ifndef FLIP_WIFI_STORAGE_H
  2. #define FLIP_WIFI_STORAGE_H
  3. #include <flip_wifi.h>
  4. // define the paths for all of the FlipperHTTP apps
  5. #define WIFI_SSID_LIST_PATH STORAGE_EXT_PATH_PREFIX "/apps_data/flip_wifi/wifi_list.txt"
  6. extern char *app_ids[8];
  7. // Function to save the playlist
  8. void save_playlist(WiFiPlaylist *playlist);
  9. // Function to load the playlist
  10. bool load_playlist(WiFiPlaylist *playlist);
  11. void save_settings(const char *ssid, const char *password);
  12. #endif