WM
WM
What I would like to achieve is, as an example:  ``` cards: - type: cardEntities title: Test Entities Card entities: - entity: light.bed_light - entity: switch.decorative_lights - entity: cover.hall_window...
Sure ! For the display in **cardEntities** and **cardGrid**, I've had a look at the code of [pages.py](https://github.com/joBr99/nspanel-lovelace-ui/blob/main/apps/nspanel-lovelace-ui/luibackend/pages.py) and added before [L260](https://github.com/joBr99/nspanel-lovelace-ui/blob/25a0585dc0cc20419ef947b8ebab3d3130c3ff84/apps/nspanel-lovelace-ui/luibackend/pages.py#L260) the following "quick&dirty" code and it's displaying fine...
Oh I see ! I've made a quick PR #400 already, feel free to delete it then if it's not what you had in mind 😃
Adding an example to navigate to a CardAlarm from the alarm panel entity: cards: - type: cardGrid title: Example entities: - entity: navigate.cardAlarm_myAlarm status: alarm_control_panel.my_alarm name: My Alarm hiddenCards: -...
Same here, I cannot unlock locked button. Did not try on smartphone though, only on computer. EDIT: I tried on mobile but same, cannot unlock the card to activate, in...
@joBr99, it could be implemented as the following, in [pages.py](https://github.com/joBr99/nspanel-lovelace-ui/blob/main/apps/nspanel-lovelace-ui/luibackend/pages.py), before [L260](https://github.com/joBr99/nspanel-lovelace-ui/blob/25a0585dc0cc20419ef947b8ebab3d3130c3ff84/apps/nspanel-lovelace-ui/luibackend/pages.py#L260): ``` if entityType == "sun": icon_color = rgb_dec565([253, 216, 53]) if entity.state == "above_horizon": icon_id = get_icon_id("weather-sunset-up") if...
Sure ! I've made a quick PR if it's ok for you #400.
It seems that it is dependent on the integration you use for your alarm. As an example, if you use HA `MQTT alarm_control_panel `, it defines all the states by...
That's the problem, HA `manual alarm_control_panel` also defines all the states in the `supported_features` by default, see [manual/alarm_control_panel.py#L190](https://github.com/home-assistant/core/blob/f5487b3a7ea5bc58f532eb790b614f687776010f/homeassistant/components/manual/alarm_control_panel.py#L190).
> Then the feature request remains valid :) Sure, it does :)