Skip to content

Commit

Permalink
fix: fix typo on README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
keunjun-choi committed Mar 21, 2024
1 parent ff0eac1 commit 6ca76d8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,12 @@ for bv in blending_value:
robot.move_jb2_add(rc, np.array([90, 0, 0, 0, 0, 0]), 100, 100, bv)
robot.move_jb2_add(rc, np.array([0, 0, 0, 0, 0, 0]), 100, 100, bv)
robot.move_jb2_add(rc, np.array([90, 0, 0, 0, 0, 0]), 100, 100, bv)
robot.move_jb2_add(rc, np.array([0, 0, 0, 0, 0, 0]), 100, 100, bv)
robot.move_jb2_add(rc, np.array([90, 0, 0, 0, 0, 0]), 100, 100, bv)
robot.move_jb2_run(rc)

data = []
if robot.wait_for_move_started(rc, 0.1).type() == rb.ReturnType.Success:
if robot.wait_for_move_started(rc, 0.5).type() == rb.ReturnType.Success:
while robot.wait_for_move_finished(rc, 0.).type() == rb.ReturnType.Timeout:
data.append(data_channel.request_data().sdata.jnt_ref)
time.sleep(0.01)
Expand Down

0 comments on commit 6ca76d8

Please sign in to comment.