mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-08 00:39:50 +03:00
remove flash
This commit is contained in:
@@ -144,46 +144,46 @@ MAKE_PSTR(password_prompt, "Password: ")
|
||||
MAKE_PSTR(unset, "<unset>")
|
||||
|
||||
// more common names that don't need translations
|
||||
MAKE_PSTR_LIST(1x3min, F("1x3min"))
|
||||
MAKE_PSTR_LIST(2x3min, F("2x3min"))
|
||||
MAKE_PSTR_LIST(3x3min, F("3x3min"))
|
||||
MAKE_PSTR_LIST(4x3min, F("4x3min"))
|
||||
MAKE_PSTR_LIST(5x3min, F("5x3min"))
|
||||
MAKE_PSTR_LIST(6x3min, F("6x3min"))
|
||||
MAKE_PSTR_LIST(auto, F("auto"))
|
||||
MAKE_PSTR_LIST(na, F("n/a"))
|
||||
MAKE_PSTR_LIST(rc3x, F("rc3x"))
|
||||
MAKE_PSTR_LIST(rc20, F("rc20"))
|
||||
MAKE_PSTR_LIST(fb10, F("fb10"))
|
||||
MAKE_PSTR_LIST(fb100, F("fb100"))
|
||||
MAKE_PSTR_LIST(dash, F("-"))
|
||||
MAKE_PSTR_LIST(error, F("error"))
|
||||
MAKE_PSTR_LIST(BLANK, F(""))
|
||||
MAKE_PSTR_LIST(pwm, F("pwm"))
|
||||
MAKE_PSTR_LIST(pwm_invers, F("pwm inverse"))
|
||||
MAKE_PSTR_LIST(mpc, F("mpc"))
|
||||
MAKE_PSTR_LIST(tempauto, F("temp auto"))
|
||||
MAKE_PSTR_LIST(bypass, F("bypass"))
|
||||
MAKE_PSTR_LIST(mixer, F("mixer"))
|
||||
MAKE_PSTR_LIST(monovalent, F("monovalent"))
|
||||
MAKE_PSTR_LIST(bivalent, F("bivalent"))
|
||||
MAKE_PSTR_LIST(n_o, F("n_o"))
|
||||
MAKE_PSTR_LIST(n_c, F("n_c"))
|
||||
MAKE_PSTR_LIST(prog1, F("prog 1"))
|
||||
MAKE_PSTR_LIST(prog2, F("prog 2"))
|
||||
MAKE_PSTR_LIST(proga, F("prog a"))
|
||||
MAKE_PSTR_LIST(progb, F("prog b"))
|
||||
MAKE_PSTR_LIST(progc, F("prog c"))
|
||||
MAKE_PSTR_LIST(progd, F("prog d"))
|
||||
MAKE_PSTR_LIST(proge, F("prog e"))
|
||||
MAKE_PSTR_LIST(progf, F("prog f"))
|
||||
MAKE_PSTR_LIST(1x3min, "1x3min")
|
||||
MAKE_PSTR_LIST(2x3min, "2x3min")
|
||||
MAKE_PSTR_LIST(3x3min, "3x3min")
|
||||
MAKE_PSTR_LIST(4x3min, "4x3min")
|
||||
MAKE_PSTR_LIST(5x3min, "5x3min")
|
||||
MAKE_PSTR_LIST(6x3min, "6x3min")
|
||||
MAKE_PSTR_LIST(auto, "auto")
|
||||
MAKE_PSTR_LIST(na, "n/a")
|
||||
MAKE_PSTR_LIST(rc3x, "rc3x")
|
||||
MAKE_PSTR_LIST(rc20, "rc20")
|
||||
MAKE_PSTR_LIST(fb10, "fb10")
|
||||
MAKE_PSTR_LIST(fb100, "fb100")
|
||||
MAKE_PSTR_LIST(dash, "-")
|
||||
MAKE_PSTR_LIST(error, "error")
|
||||
MAKE_PSTR_LIST(BLANK, "")
|
||||
MAKE_PSTR_LIST(pwm, "pwm")
|
||||
MAKE_PSTR_LIST(pwm_invers, "pwm inverse")
|
||||
MAKE_PSTR_LIST(mpc, "mpc")
|
||||
MAKE_PSTR_LIST(tempauto, "temp auto")
|
||||
MAKE_PSTR_LIST(bypass, "bypass")
|
||||
MAKE_PSTR_LIST(mixer, "mixer")
|
||||
MAKE_PSTR_LIST(monovalent, "monovalent")
|
||||
MAKE_PSTR_LIST(bivalent, "bivalent")
|
||||
MAKE_PSTR_LIST(n_o, "n_o")
|
||||
MAKE_PSTR_LIST(n_c, "n_c")
|
||||
MAKE_PSTR_LIST(prog1, "prog 1")
|
||||
MAKE_PSTR_LIST(prog2, "prog 2")
|
||||
MAKE_PSTR_LIST(proga, "prog a")
|
||||
MAKE_PSTR_LIST(progb, "prog b")
|
||||
MAKE_PSTR_LIST(progc, "prog c")
|
||||
MAKE_PSTR_LIST(progd, "prog d")
|
||||
MAKE_PSTR_LIST(proge, "prog e")
|
||||
MAKE_PSTR_LIST(progf, "prog f")
|
||||
|
||||
// templates - this are not translated and will be saved under optons_single
|
||||
MAKE_PSTR_LIST(tpl_datetime, F("Format: < NTP | dd.mm.yyyy-hh:mm:ss-day(0-6)-dst(0/1) >"))
|
||||
MAKE_PSTR_LIST(tpl_switchtime, F("Format: <nn> [ not_set | day hh:mm on|off ]"))
|
||||
MAKE_PSTR_LIST(tpl_switchtime1, F("Format: <nn> [ not_set | day hh:mm Tn ]"))
|
||||
MAKE_PSTR_LIST(tpl_holidays, F("Format: < dd.mm.yyyy-dd.mm.yyyy >"))
|
||||
MAKE_PSTR_LIST(tpl_date, F("Format: < dd.mm.yyyy >"))
|
||||
MAKE_PSTR_LIST(tpl_datetime, "Format: < NTP | dd.mm.yyyy-hh:mm:ss-day(0-6)-dst(0/1) >")
|
||||
MAKE_PSTR_LIST(tpl_switchtime, "Format: <nn> [ not_set | day hh:mm on|off ]")
|
||||
MAKE_PSTR_LIST(tpl_switchtime1, "Format: <nn> [ not_set | day hh:mm Tn ]")
|
||||
MAKE_PSTR_LIST(tpl_holidays, "Format: < dd.mm.yyyy-dd.mm.yyyy >")
|
||||
MAKE_PSTR_LIST(tpl_date, "Format: < dd.mm.yyyy >")
|
||||
|
||||
// Unit Of Measurement mapping - maps to DeviceValueUOM_s in emsdevice.cpp
|
||||
// These don't need translating, it will mess up HA and the API
|
||||
@@ -264,16 +264,16 @@ MAKE_PSTR(response, "response")
|
||||
MAKE_PSTR(tag_boiler_data_ww_mqtt, "ww")
|
||||
MAKE_PSTR(tag_device_data_ww_mqtt, "")
|
||||
|
||||
MAKE_PSTR_LIST(climate, F("HA climate config creation"))
|
||||
MAKE_PSTR_LIST(climate, "HA climate config creation")
|
||||
|
||||
// syslog
|
||||
MAKE_PSTR_LIST(list_syslog_level, F("off"), F("emerg"), F("alert"), F("crit"), F("error"), F("warn"), F("notice"), F("info"), F("debug"), F("trace"), F("all"))
|
||||
MAKE_PSTR_LIST(list_syslog_level, "off", "emerg", "alert", "crit", "error", "warn", "notice", "info", "debug", "trace", "all")
|
||||
|
||||
// sensors
|
||||
MAKE_PSTR_LIST(list_sensortype, F("none"), F("digital in"), F("counter"), F("adc"), F("timer"), F("rate"), F("digital out"), F("pwm 0"), F("pwm 1"), F("pwm 2"))
|
||||
MAKE_PSTR_LIST(list_sensortype, "none", "digital in", "counter", "adc", "timer", "rate", "digital out", "pwm 0", "pwm 1", "pwm 2")
|
||||
|
||||
// watch
|
||||
MAKE_PSTR_LIST(list_watch, F("off"), F("on"), F("raw"), F("unknown"))
|
||||
MAKE_PSTR_LIST(list_watch, "off", "on", "raw", "unknown")
|
||||
|
||||
/*
|
||||
* The rest below are Enums and generated from translations lists
|
||||
|
||||
Reference in New Issue
Block a user