Add the ability to set the shade and group display order #139 and suspend MQTT responses while updating the firmware.

This commit is contained in:
Robert Strouse 2023-09-04 10:33:53 -07:00
parent 92b9b679f9
commit 90b247e7d8
16 changed files with 498 additions and 482 deletions

View file

@ -10,11 +10,11 @@
struct config_header_t {
uint8_t version = 1;
uint8_t shadeRecordSize = 0;
uint16_t shadeRecordSize = 0;
uint8_t shadeRecords = 0;
uint8_t groupRecordSize = 0;
uint16_t groupRecordSize = 0;
uint8_t groupRecords = 0;
uint8_t length = 0;
int8_t length = 0;
};
class ConfigFile {
protected: