Thanks, I will check how to prevent the Video init for this case.
Can you please check new test version? This should skip the video init on HP19.
There are currently issues with the external CloudFlare service, which is causing problems with installation and updates of Homey apps:
So you will have to wait until these problems are resolved.
Thanks a lot for a quick fix.![]()
It now works as before.
Rgds.
New test version 1.14.0
- Added single on/off buttons for Media device based on HA features.
Hi there
Iâm really enjoying this App, thanks for the great work so far!
Actually iâm able to build an advanced flow, example WHEN âXYâ AND motion is detected THEN XY. Iâm Using Zigbee MmWave Sensors in HA using the Tuya Plugin btw.
Would it be able to add the possibility to also choose WHEN âXYâ AND no motion is detected THEN XY. â this is currently missing and making it hard to build some flows.
Thanks a bunch in advance and all the best
Are you using the condition card for a motion alert capability?
Then just invert the condition (right click in advanded flow).
But why are you using the alarm condition and not the alarm trigger? The alarm will only be active a short time (1 or some seconds). So the change is high to miss the alarm state if your trigger doesnât trigger in this second. Better use the alarm as trigger and check other conditions is alarm got triggered.
Ciao Ronny
oh, great! Thaanks a bunch, i wasnât aware of the possibility to invert!
Inverting condition cards is Homey standard for all conditions. Sometimes you have to check for numeric values if the original is âgreater thanâ, then the opposite is not âless thanâ, but âequal or less thanâ
Is it possible to add the following card for lights?

The card is used with govee lights, the native govee app support this card (see screenshot), but when I import the device from HA the all options are available except the start a random scene card.
You can add entities to an existing HA Homey device.
In Device settings, look for Maintenance > Try to Repair
This starts a custom device edit tool.
Here youâll find a howto with screenshots:
I donât know jow this is done in HA. But thatâs not a default functionality. I think thatâs a special service for Govee devices.
Please check in HA developer tools if there is a service you can call. If yes, you can use the service call flow card in Homey (select the HA app in THEN part) and fill in tje service name and entity name.
Question 1:
Iâm using the Stellantis addon in HA for my Peugeot. How can i make the battery % visible in the tile in Homey as the tile is only showing a battery?
But the detailed info does show a %.
Device details:
{
"sensor.peugeot_e_5008_batterij": {
"entity_id": "sensor.peugeot_e_5008_batterij",
"state": "61.0",
"attributes": {
"state_class": "measurement",
"Last updated": "2025-12-24T08:44:26Z",
"unit_of_measurement": "%",
"device_class": "battery",
"friendly_name": "Peugeot e-5008 Batterij"
},
"last_changed": "2025-12-24T08:44:56.737954+00:00",
"last_reported": "2025-12-24T08:44:56.737954+00:00",
"last_updated": "2025-12-24T08:44:56.737954+00:00",
"context": {
"id": "xxxxxxxxxxxxxxxxxxx",
"parent_id": null,
"user_id": null
}
}
}
Question 2:
The app is also showing the state of the doors. In HA itself it is shown as locked/unlocked, but in Homey itâs only showing yes/no. Is it possible to show locked/unlocked in the tile instead of the alarm (!)?
Is measure_battery capability is used, the Homey app will only show the battery icon.
You can add a second capability in repair mode using measure_numeric. Then you will get a number in your tile.
No, not when using the Homey alarm capabilities. This are boolean values and the device is only showing yes/no is an alarm is present (window opened).
But you can use the example from last answer. Use measure_generic (text) as capability. In addition you have to use a converter to set your text.
So something like this:
(value) => {
if(value) return 'unlocked'
else return 'locked' }
Thank you!! ![]()
Both solutions working like a charm!
Oke, next question.
I have an on/off sensor device. Is it possible to get the on/off state visible in the device history, like an alarm device?
vs 
What capability are you using for the sensor?
Hereâs some extra info. This seems to be the standard capability: measure_generic.sensor.ambermodbus_flow_switch
{
"sensor.ambermodbus_flow_switch": {
"entity_id": "sensor.ambermodbus_flow_switch",
"state": "ON",
"attributes": {
"icon": "mdi:waves",
"friendly_name": "AmberModbus Flow switch"
},
"last_changed": "2025-12-30T08:02:42.370874+00:00",
"last_reported": "2025-12-30T08:02:42.370874+00:00",
"last_updated": "2025-12-30T08:02:42.370874+00:00",
"context": {
"id": "xxxxxxxxxxxxxxxxxxx",
"parent_id": null,
"user_id": null
}
}
}







