Hey everyone!
I am trying to implement the SWAKES dashboard into my Home Assistant, and I’m stuck at the part at the Network Status card.
entities:
- entity: binary_sensor.zigbee2mqtt_running
name: Zigbee
show_entity_picture: true
- entity: binary_sensor.mosquitto_broker_running
name: MQTT
show_entity_picture: true
- entity: binary_sensor.cloudflared_running
show_entity_picture: true
name: Cloudflare
- entity: binary_sensor.home_assistant_google_drive_backup_running
name: Google Drive
show_entity_picture: true
style: |
ha-card {
text-align: center;
}
title: false
type: glance
^ This is the code I’m using right now in the dashboard.
binary_sensor.zigbee2mqtt_running:
entity_picture: /local/Logos/zigbee_system.png
binary_sensor.mosquitto_broker_running:
entity_picture: /local/Logos/mqtt.png
binary_sensor.cloudflared_running:
entity_picture: /local/Logos/cloudflare_icon.png
binary_sensor.home_assistant_google_drive_backup_running:
entity_picture: /local/Logos/googledrive.jpg
The code for the entity pictures ^
My dashboard:
SWAKES with the ‘Online’ instead of ‘Running’:
The code that SWAKES used:
- entities:
- entity: sensor.deconz_online
name: Zigbee
- entity: sensor.sonoff_rf_bridge_online
name: 433Mhz RF
- entity: sensor.esphome_online
name: ESPHome
- entity: sensor.unifi_online
name: WiFi
style: |
ha-card {
text-align: center;
}
title: false
type: glance
Thank you for helping me!