I have US wall switch on, on the switches the button stopped working and responding. I am able to control relay still but the button isn't working, Any ideas on how to fix this? I have 4 swtiches, this seems to happen on 1 of the 3 so far.
top of page

bottom of page
Help?
Button version.
Esphome, attached is the relevant config.
binary_sensor: - platform: status name: "${friendly_name} Status" # Touch Button - platform: gpio pin: inverted: true number: GPIO3 mode: input: true pullup: true name: "${friendly_name} Button" disabled_by_default: True on_click: - logger.log: "Button clicked" on_multi_click: - timing: - ON for at most 0.5s - OFF for at least 0.2s then: - light.toggle: light1 - timing: - ON for at least 4s then: - button.press: Reset sensor: - platform: uptime name: "${friendly_name} Uptime" disabled_by_default: true button: - platform: factory_reset name: Restart with Factory Default Settings id: Reset output: # Relay - platform: gpio pin: GPIO13 id: relay1 # Button LED (1.0 = Blue / 0.0 = Red) - platform: esp8266_pwm pin: GPIO14 inverted: true id: button_led1 light: - platform: status_led name: "${friendly_name} Status LED" disabled_by_default: true pin: number: GPIO0 inverted: true # Relay - platform: binary name: "${friendly_name} Light" id: light1 output: relay1 restore_mode: ${light_restore_mode} on_turn_on: - light.turn_on: led1 on_turn_off: - light.turn_off: led1 # Button LED - platform: monochromatic name: "${friendly_name} LED" disabled_by_default: true id: led1 output: button_led1 default_transition_length: 500ms text_sensor: - platform: wifi_info ip_address: name: "${friendly_name} IP Address" disabled_by_default: true time: - platform: sntp id: my_time
Button version or touch version? What firmware is running?