FERNOTRON Integration

Hello,
I have some window shutters (Rademacher FERNOTRON). As the original RC died, I found a cool colution to control them by Tronferno (dev by Zwiebert GitHub - zwiebert/tronferno-mcu: Control and program Fernotron receivers by micro-controller. (ESP32, 2011-2022)) and I’m looking for a way to integrate Tronferno into HA.
Unfortunately, I do not have any skills in programming.
Can someone support me here?

Have you already the esp32 running?

I have added the control (up/down/stop) like this. You have to change the ip-adress.

cover:
  - platform: command_line
    covers:
      rollo_links:
        command_open: echo ";send g=2 m=1 c=up;" | nc 192.168.2.202 7777
        command_close: echo ";send g=2 m=1 c=down;" | nc 192.168.2.202 7777
        command_stop: echo ";send g=2 m=1 c=stop;" | nc 192.168.2.202 7777
        unique_id: "sz_rollo_links"
      rollo_rechts:
        command_open: echo ";send g=2 m=2 c=up;" | nc 192.168.2.202 7777
        command_close: echo ";send g=2 m=2 c=down;" | nc 192.168.2.202 7777
        command_stop: echo ";send g=2 m=2 c=stop;" | nc 192.168.2.202 7777
        unique_id: "sz_rollo_rechts"

Hi swante,
I fixed it by using the MQTT which is also provided by Tronferno.