This commit is contained in:
2023-01-21 15:27:41 +01:00
parent bfccf051b4
commit 9c7bf54f34
8 changed files with 294 additions and 0 deletions

26
sketch/configuration.h Normal file
View File

@ -0,0 +1,26 @@
#ifndef _CONFIGURATION_H_
#define _CONFIGURATION_H_
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
typedef struct config_s {
uint32_t magic;
uint8_t appEui[8];
uint8_t appKey[16];
} config_t;
void configurationSetup();
void configurationLoop();
void configLoad();
#endif // _CONFIGURATION_H_