You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
307 B
14 lines
307 B
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()
|