The configuration.yaml suggested in the documentation doesn’t parse as valid yaml. In particular, this sensor section:
sensor:
- platform: template
sensors:
garage_door_status:
friendly_name: 'State of the door'
value_template: '{{ states('cover.garage_door') }}'
Both doesn’t work in HA, and fails in various YAML checkers, with: (): did not find expected key while parsing a block mapping at line 13 column 9
The use of nested single parenthesis looks suspect, but I’m not sure exactly what the issue is here.