Skip to content

Commit

Permalink
(#159) replaced things in the doc
Browse files Browse the repository at this point in the history
  • Loading branch information
knmcguire committed Dec 22, 2020
1 parent 4698f53 commit a2f4c12
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/user-guides/sbs_motion_commander.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def take_off_simple(scf):
time.sleep(3)
mc.stop()
def param_deck_flow(name, value):
def param_deck_flow(name, value_str):
...
if __name__ == '__main__':
Expand Down Expand Up @@ -275,7 +275,7 @@ def move_linear_simple(scf):
def take_off_simple(scf):
...
def param_deck_flow(name, value):
def param_deck_flow(name, value_str):
...
Expand Down Expand Up @@ -370,7 +370,7 @@ def log_pos_callback(timestamp, data, logconf):
position_estimate[1] = data['stateEstimate.y']
def param_deck_flow(name, value):
def param_deck_flow(name, value_str):
...
if __name__ == '__main__':
Expand Down Expand Up @@ -481,7 +481,7 @@ def take_off_simple(scf):
def log_pos_callback(timestamp, data, logconf):
...
def param_deck_flow(name, value):
def param_deck_flow(name, value_str):
...
if __name__ == '__main__':
Expand Down Expand Up @@ -595,7 +595,7 @@ def log_pos_callback(timestamp, data, logconf):
position_estimate[1] = data['stateEstimate.y']
def param_deck_flow(name, value):
def param_deck_flow(name, value_str):
value = int(value_str)
print(value)
global is_deck_attached
Expand Down

0 comments on commit a2f4c12

Please sign in to comment.