Action LSC Smart Connect Doorbell Integration

hi !
i managed to recieve the LSC doorbell to have the doorbell knob to homeassiistant
i used this hardware : Liligo 433Mhz
i use this code : ( maybe log the RF433Mhz raw data on your doorbell to make this work in your situation)

 #############

external_components:
  - source:
      type: git
      url: https://github.com/swoboda1337/sx127x-esphome
      ref: main
    refresh: 1d

spi:
  clk_pin: GPIO5
  mosi_pin: GPIO27
  miso_pin: GPIO19

sx127x:
  nss_pin: GPIO18
  rst_pin: GPIO23
  frequency: 433920000
  modulation: OOK
  rx_floor: -90
  rx_bandwidth: 50_0kHz

remote_receiver:
  pin: GPIO32
  filter: 255us
  idle: 2000us
  buffer_size: 100000b
  memory_blocks: 8
  dump: rc_switch #raw 


#binary_sensor:
  - platform: remote_receiver
    name: "LSC"
    rc_switch_raw:
      protocol: 1
      code: "0011000000110110001100000011011000110110001110010011001100110111"
    on_press:
      then:
        - switch.turn_on: my_switch      


#Received RCSwitch Raw: protocol=1 data='0011000000110110001100000011011000110110001110010011001100110111'

switch:
  - platform: template
    id: my_switch
    name: "My Switch"
    turn_on_action:
      - logger.log: "Switch turned ON"

youre welcome :slight_smile: