I’ve been using an home made ESPHome IR Pickup for a good 18 months and it’s been 100% spot on at picking up various button presses on my Denon (Panasonic) remote.
The yaml for remote_receiver: and a typical binary_sensor is;
remote_receiver:
pin:
number: D4
inverted: true
mode:
input: true
pullup: true
tolerance: 50%
filter: 250us
idle: 20ms
buffer_size: 2kb
dump: panasonic
binary_sensor:
- platform: remote_receiver
name: "Bathroom MP Power"
panasonic:
address: 0x2A4C
command: 0x042C0028
This ESPHome sensor (Loft-Sensor) is picked up in HA and if I press the corresponding buttons on the amp remote, the ESPHome log shows (for example);
[17:14:15][D][binary_sensor:036]: 'Bathroom MP Power': Sending state ON
[17:14:15][D][binary_sensor:036]: 'Bathroom MP Power': Sending state OFF
[17:14:15][I][remote.panasonic:070]: Received Panasonic: address=0x2A4C, command=0x042C0028
The corresponding entities have been automatically created in HA so for example - binary_sensor.loft_sensor_bathroom_mp_power
Up until this morning, pressing the ‘power’ button would cause the state of the binary sensor to go from off to on and back to off. I could then use this as a trigger for an automation.
Now the binary sensor (all of them) seem to have stopped working. I can see the sensor ‘sends’ the state change to HA but HA never reacts to it and the binary sensors state doesn’t change.
I’ve been away from home for 2 days and this was working when I left on the morning of the 18th.
I noticed that ESPHome Builder 2026.6.0 was released on the 18th and this must have been auto updated so is it likely to be this and if so, how to fix it ?
It’s not mentioned in the Breaking Changes!
HA Supervised 2025.6.1 (but same under 2025.5.3)