This commit is contained in:
RogueMaster
2022-11-02 20:24:27 -04:00
parent 8f67320e7a
commit e1d3e67fc5
4 changed files with 70 additions and 73 deletions

View File

@@ -25,11 +25,11 @@
#define CONFIG_FILE_HEADER "IFTTT Virtual Button Config File"
#define CONFIG_FILE_VERSION 1
typedef struct{
char *save_ssid;
char *save_password;
char *save_key;
char *save_event;
typedef struct {
char* save_ssid;
char* save_password;
char* save_key;
char* save_event;
} Settings;
typedef struct {
@@ -53,4 +53,4 @@ typedef enum {
} VirtualButtonAppView;
Settings save_settings(Settings settings);
Settings *load_settings();
Settings* load_settings();