03-06-2025, 09:10 AM
(03-06-2025, 09:02 AM)admin Wrote: sure, we already have video tour on our youtube channel.
Can you be more specific? Because in the esphome config only binded to an output, but not the rising or falling edge of that output.
Example:
Code:
- platform: kc868_ha
target_relay_controller_addr: 1
switch_adapter_addr: 10
bind_output: 2
name: "binary_sensor 2"
What I want to implement is the following:
Code:
- platform: kc868_ha
target_relay_controller_addr: 1
switch_adapter_addr: 10
bind_output: 2R
name: "binary_sensor 2 falling edge"
- platform: kc868_ha
target_relay_controller_addr: 1
switch_adapter_addr: 10
bind_output: 2F
name: "binary_sensor 2 rising edge"
It would be useful to differentiate long and sort button presses on the homeassistant level.