We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0586d6 commit ef7803dCopy full SHA for ef7803d
demo/sync.py
@@ -17,11 +17,16 @@ def test(mycobot):
17
mycobot.sync_send_angles([100,50,0,0,70,160], 100)
18
mycobot.sync_send_angles([-100,-50,0,0,-70,-160], 100)
19
"""
20
- mycobot.sync_send_angles([0, 0, 0, 0, 0, 0], 100).sync_send_angles(
21
- [100, 50, 0, 0, 70, 160], 100
22
- ).sync_send_angles([-100, -50, 0, 0, -70, -160], 100).sync_send_angles(
23
- reset, 100
24
- ).set_free_mode()
+ # mycobot.sync_send_angles([0, 0, 0, 0, 0, 0], 100).sync_send_angles(
+ # [100, 50, 0, 0, 70, 160], 100
+ # ).sync_send_angles([-100, -50, 0, 0, -70, -160], 100).sync_send_angles(
+ # reset, 100
+ # ).set_free_mode()
25
+ # See: https://github.com/elephantrobotics/pymycobot/issues/144
26
+ mycobot.sync_send_angles([0, 0, 0, 0, 0, 0], 100)
27
+ mycobot.sync_send_angles([100, 50, 0, 0, 70, 160], 100)
28
+ mycobot.sync_send_angles([-100,-50, 0, 0, -70,-160], 100)
29
+ mycobot.set_free_mode(1)
30
31
print("=== check end ===\n")
32
0 commit comments