mirror of https://github.com/arendst/Tasmota.git
Merge pull request #5578 from yury-sannikov/sns15-fix
Fix Sensor15 command crash due to the wrong memory specifier
This commit is contained in:
commit
3766e1b0a1
|
@ -71,8 +71,8 @@ TasmotaSerial *MhzSerial;
|
|||
|
||||
const char kMhzModels[] PROGMEM = "|B";
|
||||
|
||||
const char ABC_ENABLED[] PROGMEM = "ABC is Enabled";
|
||||
const char ABC_DISABLED[] PROGMEM = "ABC is Enabled";
|
||||
const char ABC_ENABLED[] = "ABC is Enabled";
|
||||
const char ABC_DISABLED[] = "ABC is Disabled";
|
||||
|
||||
enum MhzCommands { MHZ_CMND_READPPM, MHZ_CMND_ABCENABLE, MHZ_CMND_ABCDISABLE, MHZ_CMND_ZEROPOINT, MHZ_CMND_RESET, MHZ_CMND_RANGE_1000, MHZ_CMND_RANGE_2000, MHZ_CMND_RANGE_3000, MHZ_CMND_RANGE_5000 };
|
||||
const uint8_t kMhzCommands[][4] PROGMEM = {
|
||||
|
|
Loading…
Reference in New Issue