Hi Everyone,
Haven’t had much luck searching for an answer to this. Basically, I have these two ping sensors:
- platform: ping
host: 8.8.8.8
name: ping_google_dns1
scan_interval: 60
- platform: ping
host: 8.8.4.4
name: ping_google_dns2
scan_interval: 60
I have a basic entity card that looks like this:
type: entities
entities:
- entity: binary_sensor.ping_google_dns1
- entity: binary_sensor.ping_google_dns2
Based on the Binary Sensor Docs, the actual state of the sensor is either on
or off
, which ends up being displayed as Connected
or Disconnected
. Is is possible to override the Connected
or Disconnected
to something like Up
or Down
?
On some other cards, I’m using the multiple-entity-row plugin, and the Connected
or Disconnected
text is a bit too long, I’d love to be able to shorten it a bit.
Thanks!