- Offizieller Beitrag
Based on your questions:
Since firmware 1.5.0, the Shelly have the Actions, with the help of which you can send when switching-state-change http requests.
This can also be used to update the switching status of a CUxD device for Shelly.
But:
I'll point out that the Shelly sends the command only once (per switching operation). If this command does not arrive at the homematic center or if it is not processed there as expected, then a possible inconsistency of the switching state results at least until the next switching operation!
Here I clearly see my published solution with the cyclical update at an advantage!
Who wants to test it anyway:
State OFF => OUTPUT SWITCHED OFF URL
http://<IP der CCU>:8181/x.exe?Antwort=dom.GetObject("CUxD.<CUxD-Geräteadresse:Kanal>.SET_STATE").State(0)
Status ON => OUTPUT SWITCHED ON URL
http://<IP der CCU>:8181/x.exe?Antwort=dom.GetObject("CUxD.<CUxD-Geräteadresse:Kanal>.SET_STATE").State(1)
(The commands only cause the status to be set without executing any commands.)
Have fun with it.