vem
(blomy)
November 18, 2023, 7:56am
1
remote_receiver:
pin:
number: 15
inverted: yes
mode: INPUT_PULLUP
dump: all
binary_sensor:
- platform: remote_reciver
name: "button B"
samsung:
Data: 0xE0E028D7
filters:
- delayed_off: 200ms
and
binary_sensor:
- platform: remote_receiver
name: "button A"
samsung:
data : 0xE0E036C9
filters:
- delayed_off: 200ms
need to be combined
aceindy
(Aceindy)
November 18, 2023, 8:09am
2
Before we can look into it, please use the proper formatting of the code.
You can use
without that, we cannot see if something is wrong, as yaml is very particular regarding indentation
Before we begin…
This forum is not a helpdesk
The people here don’t work for Home Assistant, that’s an open source project. We are volunteering our free time to help others. Not all topics may get an answer, never mind one that helps you solve your problem.
[image]
This also isn’t a general home automation forum, this is a forum for Home Assistant and things related to it. Any question about Home Assistant, and about using things with Home Assistant, is welcome here. We can’t help you with e…
zoogara
(Daryl)
November 18, 2023, 8:44am
3
I need help combining two things
What do you mean by “combining”? do you want the two seperate binary sensors combined in some way so that when both are received you perform some action? Or trigger another sensor? It’s not really clear what you want.
The way to ask a good question is to describe what outcome you want based on some input - without that we are really guessing what you’re trying to achieve.
ckxsmart
(CK Smart)
November 18, 2023, 10:38am
4
There you are, combined:
remote_receiver:
pin:
number: 15
inverted: yes
mode: INPUT_PULLUP
dump: all
binary_sensor:
- platform: remote_receiver
name: "button A"
samsung:
data: 0xE0E036C9
filters:
- delayed_off: 200ms
- platform: remote_receiver
name: "button B"
samsung:
data: 0xE0E028D7
filters:
- delayed_off: 200ms
2 Likes