added Wifi-Config to EEPROM Layout
This commit is contained in:
		| @@ -18,7 +18,7 @@ LubeConfig_t LubeConfig; | ||||
| persistenceData_t PersistenceData; | ||||
|  | ||||
| // EEPROM version identifier | ||||
| const uint16_t eeVersion = 2; // Increment this version when changing EEPROM structures | ||||
| const uint16_t eeVersion = EEPROM_STRUCTURE_REVISION;  | ||||
|  | ||||
| // Flag indicating whether EEPROM is available | ||||
| boolean eeAvailable = false; | ||||
|   | ||||
| @@ -3,10 +3,10 @@ | ||||
|  * | ||||
|  * @brief Implementation file for converting structs to JSON objects. | ||||
|  * | ||||
|  * @note This file is auto-generated by a script on 2024-01-10 18:01:52. | ||||
|  * @note This file is auto-generated by a script on 2024-01-25 14:30:32. | ||||
|  * | ||||
|  * @author Marcel Peterkau | ||||
|  * @date   10.01.2024 | ||||
|  * @date   25.01.2024 | ||||
|  */ | ||||
|  | ||||
|  | ||||
| @@ -32,6 +32,10 @@ void generateJsonObject_LubeConfig(JsonObject& data) | ||||
|     data["LED_Mode_Flash"] = LubeConfig.LED_Mode_Flash; | ||||
|     data["LED_Max_Brightness"] = LubeConfig.LED_Max_Brightness; | ||||
|     data["LED_Min_Brightness"] = LubeConfig.LED_Min_Brightness; | ||||
|     data["wifi_ap_ssid"] = LubeConfig.wifi_ap_ssid; | ||||
|     data["wifi_ap_password"] = LubeConfig.wifi_ap_password; | ||||
|     data["wifi_client_ssid"] = LubeConfig.wifi_client_ssid; | ||||
|     data["wifi_client_password"] = LubeConfig.wifi_client_password; | ||||
|     data["checksum"] = LubeConfig.checksum; | ||||
|     } | ||||
|  | ||||
| @@ -47,4 +51,4 @@ void generateJsonObject_PersistenceData(JsonObject& data) | ||||
|  | ||||
|  | ||||
|  | ||||
| // CODEGENERATOR_CHECKSUM: 9e8dd21170fd6ef8fbf8c4b156d9af751836a76081f811bf0e3ab2b1eb8ee48c | ||||
| // CODEGENERATOR_CHECKSUM: 4bb0dc037057aafd9688aacedfaae5c97c9de79dbbd0e139d982208053f74fa8 | ||||
		Reference in New Issue
	
	Block a user