HAMULIGHT L2046 USB tranceiver control box

i published a website with info HAMULIGHT L2046 433MHZ remote control signals.
The module can learn and replicate original HAMULIGHT L2046 remote control codes.
All the files on the below webpage are free to use. I think the files and info on the webpage will be well received.

Please feel free to comment

Hello,
how can I pair the pico with home assistant…

Hi Wunni,

the pi Pico acts like a USB-serial port.
in configuration.yml you should create the commands. the bold text below may differ from yours.you should find which serial port is used by your home assistant setup:
Use command: ls /dev/serial/by-id/*
the command shows which Pi-Pico is serial connected

add below to configuration.yaml

shell_command:
   veranda_on: 'echo -e -n "VON\n\r" > /dev/serial/by-id/usb-Raspberry_Pi_Pico_**E66130100F836C26-if00**'
   veranda_off: 'echo -e -n "VON\n\r" > /dev/serial/by-id/usb-Raspberry_Pi_Pico_**E66130100F836C26-if00**'
   veranda_100: 'echo -e -n "B100\n\r" > /dev/serial/by-id/usb-Raspberry_Pi_Pico_**E66130100F836C26-if00**'
   veranda_75: 'echo -e -n "B75\n\r" > /dev/serial/by-id/usb-Raspberry_Pi_Pico_**E66130100F836C26-if00**'
   veranda_50: 'echo -e -n "B50\n\r" > /dev/serial/by-id/usb-Raspberry_Pi_Pico_**E66130100F836C26-if00**'
   veranda_25: 'echo -e -n "B25\n\r" > /dev/serial/by-id/usb-Raspberry_Pi_Pico_**E66130100F836C26-if00**'

Ah okay! Will try that…