Hello hoping someone can help:
I have a KNX button which I would like to use to toggle my garage door (garage door (non-KNX) is integrated into HA and works fine with HA). The plan is for me to be able to push the KNX button, which will tell HA to open or close the garage door (toggle).
I have ETS.
I am wondering how to setup ETS and HA for this? should I set the button to send a value? or be a switch? thanks for any help!
Id use a knx_event for that in an automation calling cover.toggle (or whatever it is called) service.
In knx define a GA the switch sends a 1 on press.
you seem to send an interger “1” instead of a DPT1 binary “1”. Its ok but unusual. If you use a binary payload you don’t need [0] at trigger.event.data.data[0].
Other than that, if you have only one payload to check against you can use
trigger:
platform: event
event_type: knx_event
event_data:
destination: '1/2/0'
data: 1 # or [1] if you use integer payloads
Or even omit data: because there is not going to be a 0 sent to anyway…
Maybe include direction: Incoming
condition is indented too much. It should be on the same level as trigger. You can remove it entirely if you use data key in event_data.
Edit: wrong key in trigger. address should be destination.
I am trying to get my energy dashboard to work with a knx energy meter but whatever I try it is always showing 0.
For example I tried to configure the following:
state_class: measurement
source: 1.1.24
unit_of_measurement: Wh
device_class: energy
friendly_name: Total Active Energy
last_reset: 1970-01-01T00:00:00+00:00
I will try your solution with removing the sensor and readding it. I am still wondering what the correct state_class is. Is it measurement or total_increasing?
You are right. I still had my global customize active which did overwrite it. Now it is working.
This problem was driving me nuts. Thanks for your help
Hi @Jpsy ,
I have some kind of the same question.
My house is full with Gira RF Wall Switches.
I would love the wall switches to trigger my Home Assistant environment. No need for the reverse way.
What would I need to make this happen
RF Line Coupler?
KNX IP Router or just KNX IP Interface?
The company who installed my Gira system does not exist any more.
Would I need ETS (how to get it) or can I manage without it?
KNX interface should be good enough. KNX router is needed if you want to couple two KNX buses over IP.
Regarding the ETS it will be difficult if you don’t have the project. ETS free version supports up to 5 devices only. Than there is the next up which is around 200 EUR although there might be some good promos e.g. some time ago there was a limited time offer for newly registered users for ETS Home or Lite.
Not sure if you can reverse engineer your system though. With demo ETS version you can monitor your KNX system and this might be good enough to get required info for HA integration.
If you have some kind of display next to your front door, you could leave some nice message for your loved ones from time to time
Other than that, I have no idea 🤷 but I’m sure someone will find a good use for it.
Has anyone tried secure routing yet?
Or are there any problems with the new ConfigFlow and OptionFlow (“Configure” button on HAs integrations panel)? Like eg. “Automatic” connection mode suddenly not available?