0.105: Safe mode, Headers & Footers, New Zones Editor, Garmin, Sighthound

I notice the same issue with the Entity Button Card. With the device turned on, a tap switches the device off, then back on.

when I launch the check tool from 104.3, got this:

Traceback (most recent call last):
  File "/usr/local/lib/python3.7/site.py", line 73, in <module>
    import os
  File "/usr/local/lib/python3.7/os.py", line 27, in <module>
    import stat as st
ModuleNotFoundError: No module named 'stat'

Thank you very much for the advice.
Now all I need to know is where I’m supposed to send the command
“$ sudo docker pull homeassistant==0.104.3”

Do I establish a SSH connection to Synology or do I call homeassistant container in Docker package, open bash session in terminal and run the command?

Removing states color display by default is idiotic for a home automation system that attempts to display states in an easy and understandable way.

Why not add the option to turn it off per card for the one user that apparently does not want it?

4 Likes

Anyone having issues with xiaomi_aqara in 104 or 105? Since updating I’m getting a “gateway not found” error in the log despite it working fine through the MiHome app… (I updated straight from 103 hence putting both versions, can’t see anything in breaking changes though…)

1 Like

if I’m not mistaken you should establish an SSH connection to Synology

Same here, the new panel is great but I’m missing the colors to indicate running, stopped, or upgrade available.

I have upgraded to 0.105.2 and I see the new Supervisor panel, but I can’t see the new Configuration Panel and I don’t seem to have the Zone Editor? Why would this be?

Try a hard refresh in the web browser, sometimes I’ve found that this has been necessary to pick up frontend changes in new versions.

You are a genius! This worked like magic. Thanks for the help! :+1:

welcome to the club. here is the source btw.

I’ve just updated my Hass.io to 0.105.2 and almost everything worked (apart for my custom component because devs made a change to core and guess what - it’s not a breaking change despite custom components being broken).

Anyway, it works and I can see funny automation icons next to automations in Lovelace cards in my desktop Chrome… but in Android Chrome it still displays old icons despite a couple of clear cache. Anyone else seeing that?

Could I please have some help with state_color. Before the update I had an entity filter card looking like this:-
Hallway Front color

The icons are no longer lit up, how do I implement the state_color variable for the whole card, I have tried

Code

I have also tried enabling state_color for each entity ( commented out ) but I get a syntax error.

So, updated and then downgraded after 2 days. Unifi controller drops connect like 10 times every restart, up, down, up, down. And sometimes with no reason at all. Nabu casa remoted controll wont start at all. Im back at 0.104.3 and will stay here for a while now.

I just learned how to do it and posted it here:

To make the state_color option apply to each entity in entities do this:

        - type: entity-filter
          card:
            state_color: true
          entities:
            - binary_sensor.movement_detected
            - binary_sensor.movement_detected_long
            - binary_sensor.motion_sensor_158d0002253c90

If want it to apply on a per-entity basis, do this:

        - type: entity-filter
          entities:
            - entity: binary_sensor.movement_detected
              state_color: true
            - binary_sensor.movement_detected_long
            - entity: binary_sensor.motion_sensor_158d0002253c90
              state_color: true
4 Likes

Thank you Taras for taking the time to help me out, I have used the first solution with success.

1 Like

So this doesn’t work:

      - type: vertical-stack
        cards:
          - type: entities
            title: Security & Home
            show_header_toggle: false
            card:
              state_color: true
            entities:
              - entity: input_boolean.alarmgaragedoor
                secondary_info: last-changed
              - entity: switch.sonoff51083
                secondary_info: last-changed
              - entity: switch.sonoff63719
                secondary_info: last-changed

But this does:

      - type: vertical-stack
        cards:
          - type: entities
            title: Security & Home
            show_header_toggle: false
            entities:
              - entity: input_boolean.alarmgaragedoor
                secondary_info: last-changed
                state_color: true
              - entity: switch.sonoff51083
                secondary_info: last-changed
                state_color: true
              - entity: switch.sonoff63719
                secondary_info: last-changed
                state_color: true
1 Like

I didn’t try the combination shown in your first example (using both an entity-wide option, state_color, and entity-specific options, secondary_info). Perhaps once you define an entity-specific option you are no longer permitted to define entity-wide options? Or it’s a bug. :man_shrugging:

1 Like

I always assume I’m missing/not understanding something rather than a bug.

I just have a bunch of binary sensors (ping sensors in this case, just to see if anything is down on my network. I display them in an entities card.

entities:
  - entity: binary_sensor.media_server
  - entity: binary_sensor.pi_hole
  - entity: binary_sensor.foyer_light_1
  - entity: binary_sensor.foyer_light_2
  - entity: binary_sensor.upstairs_hallway_light_1
  - entity: binary_sensor.upstairs_hallway_light_2
  - entity: binary_sensor.hd_homerun
  - entity: binary_sensor.philips_hue_hub
  - entity: binary_sensor.printer_study
  - entity: binary_sensor.weather_server
  - entity: binary_sensor.test32_status
  - entity: binary_sensor.kitchen_status
show_header_toggle: false
title: Hosts Up
type: entities
card:
  state_color: true

doesn’t work, it does with individual ones:

entities:
  - entity: binary_sensor.media_server
    state_color: true # and it works for each one I add this to
  - entity: binary_sensor.pi_hole
  - entity: binary_sensor.foyer_light_1
  - entity: binary_sensor.foyer_light_2
  - entity: binary_sensor.upstairs_hallway_light_1
  - entity: binary_sensor.upstairs_hallway_light_2
  - entity: binary_sensor.hd_homerun
  - entity: binary_sensor.philips_hue_hub
  - entity: binary_sensor.printer_study
  - entity: binary_sensor.weather_server
  - entity: binary_sensor.test32_status
  - entity: binary_sensor.kitchen_status
show_header_toggle: false
title: Hosts Up
type: entities

It doesn’t get nested under card: like you had it, that’s just for entity-filter card. For the standard Entities card it’s a top-level option just like show_header_toggle: and title etc.

Try this:

      - type: vertical-stack
        cards:
          - type: entities
            title: Security & Home
            show_header_toggle: false
            state_color: true
            entities:
              - entity: input_boolean.alarmgaragedoor
                secondary_info: last-changed
              - entity: switch.sonoff51083
                secondary_info: last-changed
              - entity: switch.sonoff63719
                secondary_info: last-changed

and for @nickrout same thing for yours.

entities:
  - entity: binary_sensor.media_server
  - entity: binary_sensor.pi_hole
  - entity: binary_sensor.foyer_light_1
  - entity: binary_sensor.foyer_light_2
  - entity: binary_sensor.upstairs_hallway_light_1
  - entity: binary_sensor.upstairs_hallway_light_2
  - entity: binary_sensor.hd_homerun
  - entity: binary_sensor.philips_hue_hub
  - entity: binary_sensor.printer_study
  - entity: binary_sensor.weather_server
  - entity: binary_sensor.test32_status
  - entity: binary_sensor.kitchen_status
state_color: true
show_header_toggle: false
title: Hosts Up
type: entities
5 Likes