[APP][Pro] Home Assistant - Community App

Let me know if you need anything from my side. I can have a look at reverse proxy with Nginix tomorrow, seems straight forward

New test version 0.1.1
Updated: App image, Community thread;
Added: Instant entity refresh without app restart/manual reconnect.

2 Likes

New test version 0.1.2
Fixed app crash on restart/update. Thanks @robertklep
Updated app description (app store)

2 Likes

Congrats again, Ronny :partying_face:
Once I got the hang of the ‘compound’ device, it has so many possibilities. The media device is also cool.
Findings:
The dim ‘duration’ on my Tuya wifi lights doesn’t seem to work :upside_down_face:

1 Like

Yeah, duration is something from the “old” app version I haven’t checked yet. I’m not sure, if it is transferred to HA and if it’s used in HA from the light integrations.

1 Like

As late Halloween pesent I broke the device list :jack_o_lantern:
It’s fixed with test version 0.1.3.

2 Likes

Hi @RonnyW, the new options that it’s possible to combine multiple identical identities types into one compound and name the entities yourself are great!
Thanks a lot for this!

3 Likes

This is nice! Thanks a lot

Thanks a lot for the beer :slight_smile: cheers :beers:

1 Like

How can I add a light with dimming and color functionalities in the compound?

At the moment, only dim is added as capability in the Homey device.
What’s yoour need to add this as compound? What do you want to combine?
The compound is primary for grouping single sensors. A light you can add as device itself with all capabilities. So I’m curious about an example.

Edit: I must say that the dim capability was present in the old app version. It’s used as slider and not for dimming. Changing in Homey is calling the service input_number set_value.

Light entities have feature depending in the device itself (dim onoff, color, hue…). If you add a light, it will get the allowed capabilities.

Test version 0.1.6 addes device type “button”.
Entity of domain “input_button” can be added as button now.

2 Likes

Wohoo…great addition.
Is it also possible to add a “button pressed” event, so the button can be used in a flow with “If”?
I have a Home Assistant Dasboard on a tablet. On that dasboard a button which has to activate some actions on the Homey.

Thanks for this great work

I have to check if it’s possible. HA sends entity (state) updates to Homey. It needs a state change for button to react on in Homey.

Is it also possible to add a “button pressed” event, so the button can be used in a flow with “If”?

No, because it’s stateless.

but… you can create a sensor that triggers if the button is pressed:

add this template in your configuration.yaml

template:

  - trigger:
      platform: state
      entity_id: input_button.name_of_your_button
    binary_sensor:
      - name: Button is pressed
        auto_off: 5
        state: "true"

where “entity_id” is your button name
and “name” is the name of your sensor you will see that as a sensor in homey

now add a sensor in homey and you will see its there

offcourse now you can make flows if the sensor is triggerd

The button also has a state containing the last activity I think:
grafik
This could be used to recognize the button event.

Test version 0.1.7 has a new trigger card for button pressed (when pressed in HA).
Give it a try @Onno_Sloof @JB2K

Hi Ronny,
This seems not to be working.
I added a TestButton helper in HA. In a simple Homey flow I added the button pressed with the following action to make a notification in the timeline.
When I press the button in HA, I got no message in my Homey timeline.

I think JB2K is right, but that also means I have to add a seperate extra device to HA.

In HA documentation they give an example like the one from JB2K:

Because the state of a input button entity in Home Assistant is a timestamp, it means we can use it in our automations. For example:

trigger:
  - platform: state
    entity_id: input_button.my_button
action:
  - service: notify.frenck
    data:
      message: "My button has been pressed!"

@Onno_Sloof
For me it worked with the trigger for button presses in HA and Homey.

Pressed in HA.

Message in Homey on flow trigger.

Yes…!!!
Restarted Homey and HA, tested again and its working great…
Super feature! Thanks!

2 Likes