Hello
I have chip web relay controller. It triggered in this way:
http://192.168.1.4/30000/00 : Relay-01 OFF
http://192.168.1.4/30000/01 : Relay-01 ON
http://192.168.1.4/30000/02 : Relay-02 OFF
http://192.168.1.4/30000/03 : Relay-02 ON
And so on.
I tried many combinations with HTTP POST, and HTTP Async Message.. But nothing happened. It shoul be an simple HTTP request i guess..
If i insert dashboard <browser> component with that address, the relay is triggered.
Is it possible to make that kind of calls in dashboard?
In worst case - is it possible to execute powershell script from DB which will perform such a request?
That works for me from batch file:
powershell.exe -noprofile -command "Invoke-WebRequest -uri http://192.168.1.4/30000/00"
Thanks,
Alex