Hi,
I flashed a bunch of Shelly i3 to ESPHome - now the button presses are detected lighning fast, but I have random false button press detections on all of them.
binary_sensor:
- platform: gpio
pin:
number: GPIO12
mode: INPUT
name: 'Switch 1'
id: sensorid1
filters:
- delayed_on_off: 50ms
- platform: gpio
pin:
number: GPIO13
mode: INPUT
name: 'Switch 2'
id: sensorid2
filters:
- delayed_on_off: 50ms
- platform: gpio
pin:
number: GPIO14
mode: INPUT
name: 'Switch 3'
id: sensorid3
filters:
- delayed_on_off: 50ms
I use the standard code from the ESPHome-Website. Has anyone encountered similar issues?