UDP Message - How to?

Hi everybody. Im new to homey, so please be gentle :slight_smile:
I like to control my home ventilation system. This System is connected to my WLAN and can accept UDP Packages. I have a python script running on my Mac, to control the system and set it to different stages.

How can I achieve this now using homey? As far as I already found out, homeyscript does not support node.js modules like dgram. Which path do I need to take to send different UDP Messages to my System?

You need to develop an app if you want to run it on Homey, or run the Python script from the SSH experiment and wrapping the script with an HTTP server to create an API for it that you can access from Homey’s flows or HomeyScript (using fetch()).

In any case it will require programming.