Thanks for pointing out the scene breaking changes, I missed that.
I made changes in my config, but still no luck…
If I check my config against the the next version (v0.101.2) the same error stayed. I’m in v0.100.3.
ERROR:homeassistant.scripts.check_config:BURB
Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/homeassistant/scripts/check_config.py", line 206, in check
async_check_ha_config_file(hass)
File "/usr/local/lib/python3.7/asyncio/base_events.py", line 579, in run_until_complete
return future.result()
File "/usr/local/lib/python3.7/site-packages/homeassistant/helpers/check_config.py", line 140, in async_check_ha_config_file
p_validated = component_platform_schema(p_config)
File "/usr/local/lib/python3.7/site-packages/voluptuous/schema_builder.py", line 272, in __call__
return self._compiled([], data)
File "/usr/local/lib/python3.7/site-packages/voluptuous/validators.py", line 205, in _run
return self._exec(self._compiled, value, path)
File "/usr/local/lib/python3.7/site-packages/voluptuous/validators.py", line 285, in _exec
v = func(path, v)
File "/usr/local/lib/python3.7/site-packages/voluptuous/schema_builder.py", line 817, in validate_callable
return schema(data)
File "/usr/local/lib/python3.7/site-packages/homeassistant/components/scene/__init__.py", line 46, in _platform_validator
return platform.PLATFORM_SCHEMA(config)
File "/usr/local/lib/python3.7/site-packages/voluptuous/schema_builder.py", line 272, in __call__
return self._compiled([], data)
File "/usr/local/lib/python3.7/site-packages/voluptuous/schema_builder.py", line 594, in validate_dict
return base_validate(path, iteritems(data), out)
File "/usr/local/lib/python3.7/site-packages/voluptuous/schema_builder.py", line 386, in validate_mapping
cval = cvalue(key_path, value)
File "/usr/local/lib/python3.7/site-packages/voluptuous/validators.py", line 205, in _run
return self._exec(self._compiled, value, path)
File "/usr/local/lib/python3.7/site-packages/voluptuous/validators.py", line 285, in _exec
v = func(path, v)
File "/usr/local/lib/python3.7/site-packages/voluptuous/schema_builder.py", line 635, in validate_sequence
cval = validate(index_path, value)
File "/usr/local/lib/python3.7/site-packages/voluptuous/schema_builder.py", line 594, in validate_dict
return base_validate(path, iteritems(data), out)
File "/usr/local/lib/python3.7/site-packages/voluptuous/schema_builder.py", line 386, in validate_mapping
cval = cvalue(key_path, value)
File "/usr/local/lib/python3.7/site-packages/voluptuous/validators.py", line 205, in _run
return self._exec(self._compiled, value, path)
File "/usr/local/lib/python3.7/site-packages/voluptuous/validators.py", line 285, in _exec
v = func(path, v)
File "/usr/local/lib/python3.7/site-packages/voluptuous/schema_builder.py", line 817, in validate_callable
return schema(data)
File "/usr/local/lib/python3.7/site-packages/homeassistant/components/homeassistant/scene.py", line 37, in _convert_states
if isinstance(states[entity_id], dict):
KeyError: 'light.teglafal'
Fatal error while loading config: 'light.teglafal'
Failed config
General Errors:
- 'light.teglafal'
and my corrected scene config now:
scene:
##NAPPALI VILÁGÍTÁS SCENE##
- name: Livingroom normal
entities:
light.Teglafal:
state: on
#transition: 3
rgb_color: [255, 227, 213]
brightness: 255
light.Bar:
state: on
#transition: 1
rgb_color: [228, 202, 255]
brightness: 255
light.Vaszon:
state: on
#transition: 1
rgb_color: [255, 234, 210]
brightness: 255
light.Kanape:
state: on
#transition: 1
rgb_color: [255, 234, 210]
brightness: 255
input_select.light_scene:
option: Normál
- name: Livingroom dim
entities:
light.Teglafal:
state: on
#transition: 5
brightness: 1
rgb_color: [255, 234, 210]
light.Bar:
state: on
#transition: 2
brightness: 1
rgb_color: [228, 202, 255]
light.Vaszon:
state: on
#transition: 2
brightness: 1
rgb_color: [255, 234, 210]
light.Kanape:
state: on
#transition: 2
brightness: 1
rgb_color: [255, 234, 210]
input_select.light_scene:
option: Minimal
- name: Livingroom movie
entities:
light.Teglafal:
state: on
#transition: 10
brightness: 1
rgb_color: [15, 0, 150]
light.Bar:
state: on
#transition: 2
brightness: 1
rgb_color: [0, 136, 36]
light.Vaszon:
state: on
#transition: 2
brightness: 1
rgb_color: [15, 0, 150]
light.Kanape:
state: on
#transition: 2
brightness: 1
rgb_color: [15, 0, 150]
input_select.light_scene:
option: Mozi
- name: Livingroom off
entities:
light.Teglafal:
state: off
light.Bar:
state: off
light.Vaszon:
state: off
light.Kanape:
state: off
light.Bridgeled:
state: off
input_select.light_scene:
option: Ki
- name: Livingroom 50
entities:
light.Teglafal:
state: on
#transition: 3
brightness: 127
rgb_color: [255, 234, 210]
light.Bar:
state: on
#transition: 2
brightness: 127
rgb_color: [228, 202, 255]
light.Vaszon:
state: on
#transition: 2
brightness: 127
rgb_color: [255, 234, 210]
light.Kanape:
state: on
#transition: 2
brightness: 127
rgb_color: [255, 234, 210]
input_select.light_scene:
option: 50%
What am I missing?