mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
[safe_mode] Set safe mode core data in disabled cases (#6983)
This commit is contained in:
parent
0262a99274
commit
7be071a0e9
1 changed files with 12 additions and 13 deletions
|
@ -56,9 +56,7 @@ CONFIG_SCHEMA = cv.All(
|
||||||
|
|
||||||
@coroutine_with_priority(50.0)
|
@coroutine_with_priority(50.0)
|
||||||
async def to_code(config):
|
async def to_code(config):
|
||||||
if config[CONF_DISABLED]:
|
if not config[CONF_DISABLED]:
|
||||||
return
|
|
||||||
|
|
||||||
var = cg.new_Pvariable(config[CONF_ID])
|
var = cg.new_Pvariable(config[CONF_ID])
|
||||||
await cg.register_component(var, config)
|
await cg.register_component(var, config)
|
||||||
|
|
||||||
|
@ -72,5 +70,6 @@ async def to_code(config):
|
||||||
config[CONF_BOOT_IS_GOOD_AFTER],
|
config[CONF_BOOT_IS_GOOD_AFTER],
|
||||||
)
|
)
|
||||||
cg.add(RawExpression(f"if ({condition}) return"))
|
cg.add(RawExpression(f"if ({condition}) return"))
|
||||||
|
|
||||||
CORE.data[CONF_SAFE_MODE] = {}
|
CORE.data[CONF_SAFE_MODE] = {}
|
||||||
CORE.data[CONF_SAFE_MODE][KEY_PAST_SAFE_MODE] = True
|
CORE.data[CONF_SAFE_MODE][KEY_PAST_SAFE_MODE] = True
|
||||||
|
|
Loading…
Reference in a new issue