Replies: 2 comments 1 reply
-
Yeah, the "underlying technology" is UDP. Since UDP as such cannot be "secure", and no security protocol is implemented on top (assuming that mild "security by obscurity" does not count), the usual theme with perimeter security also applies here. This is only an additional reason why you should just not leave your network open to non-trusted actors. You'd get better security with MQTT, even without MQTT-TLS. It would certainly be "possible" to make similar UDP requests from suitable tools, but the internal protocol is not meant as an API; hence no documentation nor reasonable expectations of stability and transparent behavior. Of course, it would not be that hard to explore how it works, and it is likely not getting much changed, but that does not make it an API. To have access from outside of Tasmota, the simplest would be to have two Tasmota devices grouped, with one having "virtual" relays (or whatever) doing nothing, and the other device will then receive the operations performed on the virtual outputs. |
Beta Was this translation helpful? Give feedback.
-
Thank you for detailed reply. Is it possible to disable the UDP function in DeviceGroups but continue using it by transmitting requests through an MQTT server instead? Here is my current setup: I use DeviceGroups to synchronize multiple smart bulbs with a single switch. Can I achieve the same result? Here is a Rule I am currently using maybe not fully optimised but Rule1
on Power1#State=1 do backlog Delay 15; event checkdate=%timestamp% endon
on event#checkdate$|-10-31T do Backlog Palette 4 9; Speed 15; Dimmer 100; Scheme 4; Power 1; Break
on event#checkdate$|-12-08T do Backlog Palette BF79000000 0000000F57 BF7F000000; Speed 15; Fade 1; Dimmer 75; Scheme 4; Power 1 Break
on event#checkdate$|-12-24T do Backlog Palette 1 3 6 8; Speed 15; Dimmer 100; Scheme 4; Power 1; Break
ON event#checkDate DO Backlog Palette 0; Speed 1; Scheme 0; Dimmer 100; CT 500; ENDON |
Beta Was this translation helpful? Give feedback.
-
Hello,
I have some questions regarding the implementation and usage of DeviceGroups:
Thank you for your assistance!
Beta Was this translation helpful? Give feedback.
All reactions