Shelly 1L SW1 Issue

Hello ,

I have a bunch of Shelly 1L together with bypass one of them works fine but the rest of 4 have the same problem SW1 its not working and its flickering , SW2 works fine .
I even flashed ESPHOME and its the same issue.
Anyone experienced something like this i was wondering if maybe its because of the bypass ?

[D][binary_sensor:036]: ‘shelly1l-livingroomlight_switch_1’: Sending state ON
[D][binary_sensor:036]: ‘shelly1l-livingroomlight_switch_1’: Sending state OFF
[D][binary_sensor:036]: ‘shelly1l-livingroomlight_switch_1’: Sending state ON
[D][binary_sensor:036]: ‘shelly1l-livingroomlight_switch_1’: Sending state OFF
[D][binary_sensor:036]: ‘shelly1l-livingroomlight_switch_1’: Sending state ON
[D][binary_sensor:036]: ‘shelly1l-livingroomlight_switch_1’: Sending state OFF
[D][binary_sensor:036]: ‘shelly1l-livingroomlight_switch_1’: Sending state ON
[D][binary_sensor:036]: ‘shelly1l-livingroomlight_switch_1’: Sending state OFF
[D][binary_sensor:036]: ‘shelly1l-livingroomlight_switch_1’: Sending state ON
[D][binary_sensor:036]: ‘shelly1l-livingroomlight_switch_1’: Sending state OFF
[D][binary_sensor:036]: ‘shelly1l-livingroomlight_switch_1’: Sending state ON
[D][binary_sensor:036]: ‘shelly1l-livingroomlight_switch_1’: Sending state OFF
[D][binary_sensor:036]: ‘shelly1l-livingroomlight_switch_1’: Sending state ON
[D][binary_sensor:036]: ‘shelly1l-livingroomlight_switch_1’: Sending state OFF
[D][binary_sensor:036]: ‘shelly1l-livingroomlight_switch_1’: Sending state ON
[D][binary_sensor:036]: ‘shelly1l-livingroomlight_switch_1’: Sending state OFF
[D][binary_sensor:036]: ‘shelly1l-livingroomlight_switch_1’: Sending state ON

Here is my config :slight_smile:

substitutions:
  device_name: shelly1l-livingroomlight

# Basic Config
esphome:
  name: ${device_name}
  platform: ESP8266
  board: esp01_1m

wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password
  ap:
    ssid: ${device_name}
    password: !secret wifi_password

logger:
api:
ota:
web_server:
  port: 80
#==============================================================
output:
  - platform: gpio
    pin: GPIO5
    id: shelly_1l_relay

light:
  - platform: binary
    name: ${device_name}_light
    output: shelly_1l_relay
    id: lightid

binary_sensor:
  - platform: gpio
    pin:
      number: GPIO4
    name: ${device_name}_switch_1
  - platform: gpio
    pin:
      number: GPIO14
    name: ${device_name}_switch_2
    on_state:
      then:
        - light.toggle: lightid
    id: switchid1
    filters:
      - delayed_on_off: 50ms

sensor:
  - platform: ntc
    sensor: temp_resistance_reading
    name: ${device_name}_temperature
    unit_of_measurement: "°C"
    accuracy_decimals: 1
    icon: "mdi:thermometer"
    calibration:
      b_constant: 3350
      reference_resistance: 10kOhm
      reference_temperature: 298.15K
    on_value_range:
      - above: "80.0"
        then:
          - light.turn_off: lightid
  - platform: resistance
    id: temp_resistance_reading
    sensor: temp_analog_reading
    configuration: DOWNSTREAM
    resistor: 32kOhm
  - platform: adc
    id: temp_analog_reading
    pin: A0

status_led:
  pin: GPIO0
#==============================================================



I am experiencing something very similar: Shelly 1L SW1 bouncing when disconnected from Wi-Fi

Have you had any luck or extra insight since then?