I have been working on configuration.yaml trying to make something work, adding to the end of it instead of keeping it organized by section, and I discovered that all my binary sensors have stopped working.
Here is the code of one of them.
The first line ("template:) is at line 381 of configuration.yaml
template:
- binary_sensor:
- name: 371 1st fl Electric Heat Graph Binary
state: "{{ is_state_attr('climate.371_meadow_electric_ecobee', 'hvac_action','heating') }}"
My recent changes include adding another:
template:
at line 907 of configuration.yaml
followed by
-sensor:
and further sensor code.
Could adding another instance of “template:” prevent the binary sensors defined after the first instance of “template:” from working?
Thank you.