Hi There,
I’m trying to figure out why i can’t get my icons to work.
I’m trying to mak a button where i can see i’m my tv is ON or OFF.
The problem is; My status is working (AAN/UIT) but there is no icon. Just a black plain box.
(don’t bother the sunset icons , is for testing)
{
title: '',
width: 2,
height: 3,
items: [
{
position: [0, 0],
title: 'TV Woonkamer',
width: 1,
/*subtitle: 'Lounge',*/
id: 'device_tracker.lgwebostv',
type: TYPES.DEVICE_TRACKER,
states: {
home: "Aan",
not_home: "Uit"
},
icons: {
Aan: "mdi-weather-sunset",
Uit: "mdi-weather-sunset-down",
},
},
]
},