I am trying to set up Konnected for the first time with Home Assistant.
YAML seems to be a nightmare to work with as it has very strict spacing and other requirements.
I have three Konnected boards, but am just trying to get one working as I can't get a config file to properly compile.
konnected:
access_token: xxxx
devices:
- id: alllowercasefullmac
binary_sensors:
- zone: 1
type: door
name: 'Garage Inner'
- zone: 2
type: door
name: 'Garage Outer'
- zone: 3
type: door
name: 'Front Door'
- zone: 4
type: window
name: 'Dining Room'
- zone: 5
type: door
name: 'Kitchen'
- zone: 6
type: window
name: 'Living Room'
I have also tried just using one zone
konnected:
access_token: xxxx
devices:
- id: alllowercasefullmac
binary_sensors:
- zone: 1
type: door
name: 'Garage Inner'
I get the following error
INFO (MainThread) [homeassistant.loader] Loaded konnected from homeassistant.components.konnected
2019-01-05 12:58:44 ERROR (MainThread) [homeassistant.config] Invalid config for [konnected]: [binary_sensors] is an invalid option for [konnected]. Check: konnected->konnected->binary_sensors. (See /home/homeassistant/.homeassistant/configuration.yaml, line 74). Please check the docs at https://home-assistant.io/components/konnected/
2019-01-05 12:58:44 ERROR (MainThread) [homeassistant.setup] Setup failed for konnected: Invalid config.
I am at a loss as to why binary_sensors is an invalid option. I have tried all kinds of different spacing to satisfy YAML but nothing is working.
Any help would be much appreciated.
Thanks.