diff --git a/MAVProxy/modules/mavproxy_console.py b/MAVProxy/modules/mavproxy_console.py index f094540593..15da8648bc 100644 --- a/MAVProxy/modules/mavproxy_console.py +++ b/MAVProxy/modules/mavproxy_console.py @@ -66,6 +66,7 @@ def __init__(self, mpstate): mpstate.console.set_status('Thr', 'Thr ---', row=2) mpstate.console.set_status('Roll', 'Roll ---', row=2) mpstate.console.set_status('Pitch', 'Pitch ---', row=2) + mpstate.console.set_status('Yaw', 'Yaw ---', row=2) mpstate.console.set_status('Wind', 'Wind ---/---', row=2) mpstate.console.set_status('WP', 'WP --', row=3) mpstate.console.set_status('WPDist', 'Distance ---', row=3) @@ -457,6 +458,7 @@ def update_flight_time_from_vfr_hud(self, msg): def handle_attitude(self, msg): self.console.set_status('Roll', 'Roll %u' % math.degrees(msg.roll)) self.console.set_status('Pitch', 'Pitch %u' % math.degrees(msg.pitch)) + self.console.set_status('Yaw', 'Yaw %u' % math.degrees(msg.yaw)) def handle_sys_status(self, msg): master = self.master