File size: 307 Bytes
8cf4ead | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import time
import ManusServer
ManusServer.init()
for i in range(10):
time.sleep(1)
output = ManusServer.get_latest_state()
# print(output.keys())
# if(output['3762867141_angle']!=[] and output['3822396207_angle']!=[]):
# print(output['3762867141_angle'])
ManusServer.shutdown()
|