Shelly i3 false click detected

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?

Logs showing the fault?

How can I collect a log from an ESPHome Device? I can view the current log on the ESPHome Dashboard, but the issue appears sometimes once per day and sometimes a little more often.
The Log-View will close after a while :-/

Does input on shelly have pullup/pulldown resistor? Check that out - and check / measure value of that resistor. If it’s too big it can cause false clicks in that case add another one with smaller value (say 4k7, 10k… ) - this will reduce false clicks.
But, maybe first try to enable pullup in esphome (add pullup: true)…