[APP][Pro] Home Assistant - Community App

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.

Installed but can not make connection anymore ?

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.:blush:

It now works as before.

Rgds.

New test version 1.14.0

  • Added single on/off buttons for Media device based on HA features.
1 Like

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?

image

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.

2 Likes

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' }
2 Likes

Thank you!! :clap:

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?

image vs image

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
    }
  }
}