Design strategy for qt mqtt networking
-
Hello guys i'm trying to ue qt mqtt for communication between robot and qt application with azure cloud. As i know if the sensor data from robot is passed through cloud to the qt app their will be some delay, so considering that robot is in the range of qt application radio/wifi ragne, what is the best design strategy to do the both?
-
Hi,
Does your robot provide a mean to connect to it directly ?
-
Hello guys i'm trying to ue qt mqtt for communication between robot and qt application with azure cloud. As i know if the sensor data from robot is passed through cloud to the qt app their will be some delay, so considering that robot is in the range of qt application radio/wifi ragne, what is the best design strategy to do the both?
@Dinesh-Lama remember that the MQTT protocol is publish/subscribe oriented, and it uses a broker as middle-man.
So if the answer to @SGaist question is yes, you can connect directly to your robot, you may want to run the MQTT broker in the same location where you run your Qt application.
This way you'll remove the dependency with the cloud approach.