Skip to content

Commit

Permalink
Removed values from terminal display
Browse files Browse the repository at this point in the history
  • Loading branch information
jamestaylr committed May 28, 2015
1 parent 026e78e commit 7907509
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/modules/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ def print_terminal(data, values):
print('%sCurrent desired heading: %d' % (purple, values['current_desired_heading']))
print('Direction: %d' % values['direction'])
print('Absolute wind direction: %d%s\n' % (values['absolute_wind_direction'], reset))
print('Max turn rate angle: %d' % values['max_turn_rate_angle'])
print('Max rudder angle: %d' % values['max_rudder_angle'])
print('Max winch angle: %d\n' % values['max_winch_angle'])
# print('Max turn rate angle: %d' % values['max_turn_rate_angle'])
# print('Max rudder angle: %d' % values['max_rudder_angle'])
# print('Max winch angle: %d\n' % values['max_winch_angle'])
print('Preferred tack: %d' % values['preferred_tack'])
print('Preferred gybe: %d\n' % values['preferred_gybe'])
print('Winch angle: %d\n' % values['winch_angle'])
print('Tack angle: %d' % values['tack_angle'])
print('Gybe angle: %d\n\n' % values['gybe_angle'])
# print('Tack angle: %d' % values['tack_angle'])
# print('Gybe angle: %d\n\n' % values['gybe_angle'])

time.sleep(0.995)

Expand Down

0 comments on commit 7907509

Please sign in to comment.