Hello - very much a NR newbie.
I want to make a HomeBridge compatable light come on when the drive gate opens, but I can't work out what the correct notation is within a change node.
To test things I have created this flow:
I have downloaded and installed the homebridge-magichome-platform plugin for HomeBridge, and have included the following in my config file. What should I put in the change node to trigger the lights? I have tried loads of combinations such as {"On":"false"} etc etc, but none work.
When I have got this test to work, I can bring in a feed from the gate.
TIA
https://github.com/sahilchaddha/homebridge-magichome-platform#readme
    {
        "platform": "MagicHome-Platform",
        "debug": true,
        "lights": [
            {
                "name": "Office LEDs",
                "ip": "192.168.2.89",
                "setup": "RGBW",
                "purewhite": false,
                "timeout": 10000
            }
        ],
        "presetSwitches": [
            {
                "name": "Gate Open Strobe Flash",
                "ips": {
                    "192.168.2.89": "255,255,255"
                },
                "preset": "seven_color_strobe_flash",
                "speed": 60
            }
        ]
    }
            

