I have been having trouble add a new wediget to an existing dashboard. It’s a binary sensor so to trouble shoot it I created a simple dashboard with justh the sensor. Odd thing is this works fine:
title: Test Panel
widget_dimensions: [165,165]
widget_size: [1, 1]
widget_margins: [5, 5]
rows: 1
columns: 6
layout:
- garage_door_one
garage_door_one:
entity: binary_sensor.garage_door_one
title: "Garage One"
widget_type: binary_sensor
However as soon as I add any other optional arguements like icon_on, etc. like this:
title: Test Panel
widget_dimensions: [165,165]
widget_size: [1, 1]
widget_margins: [5, 5]
rows: 1
columns: 6
layout:
- garage_door_one
garage_door_one:
entity: binary_sensor.garage_door_one
title: "Garage One"
widget_type: binary_sensor
icon_on: fa-car
icon_off: fa-car
When I reload the dashboard it’s blank. I have tried icon_on
, icon_off
, and title_style
all with the same result.
Any ideas what I am doing wrong?