Skip to content

Commit

Permalink
Merge pull request #428 from Ben-Jarvis/python-server-vz-fix
Browse files Browse the repository at this point in the history
Fix odom logging vz typo
  • Loading branch information
whoenig authored Feb 19, 2024
2 parents e598f7a + 034c4d2 commit 32e87d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crazyflie/scripts/crazyflie_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ def _log_odom_data_callback(self, timestamp, data, logconf, uri):
pitch = radians(data.get('stabilizer.pitch'))
vx = data.get('kalman.statePX')
vy = data.get('kalman.statePY')
vz = data.get('kalman.statePY')
vz = data.get('kalman.statePZ')
yawrate = data.get('gyro.z')
rollrate = data.get('gyro.x')
pitchrate = data.get('gyro.y')
Expand Down

0 comments on commit 32e87d6

Please sign in to comment.