I have three remote devices controlled by another one. What I want is those remote devices to execute a code in a syncronous way. I mean, all at the exact time.
This comes from the need to take photos from different perspectives in the same time moment. So I have a Python program running on three different devices that takes a picture. What I need now is to control those devices from an external one to take the pictures at the same moment (with no delay).
I have read about RPyC but I am not sure if it is the best option.
How do you think it can be implemented in the best possible way? Thanks!