mirror of
https://github.com/YikeStone/ros_arduino_bridge.git
synced 2025-08-05 20:14:07 +05:30
Removed print statement from update_pid() function
This commit is contained in:
parent
79e5a3b1a8
commit
17d6a44e3e
@ -129,7 +129,6 @@ class Arduino:
|
|||||||
def update_pid(self, Kp, Kd, Ki, Ko):
|
def update_pid(self, Kp, Kd, Ki, Ko):
|
||||||
''' Set the PID parameters on the Arduino
|
''' Set the PID parameters on the Arduino
|
||||||
'''
|
'''
|
||||||
print "Updating PID parameters"
|
|
||||||
cmd = 'u ' + str(Kp) + ':' + str(Kd) + ':' + str(Ki) + ':' + str(Ko)
|
cmd = 'u ' + str(Kp) + ':' + str(Kd) + ':' + str(Ki) + ':' + str(Ko)
|
||||||
self.execute_ack(cmd)
|
self.execute_ack(cmd)
|
||||||
|
|
||||||
@ -158,11 +157,11 @@ class Arduino:
|
|||||||
'''
|
'''
|
||||||
IMU data is assumed to be returned in the following order:
|
IMU data is assumed to be returned in the following order:
|
||||||
|
|
||||||
[ax, ay, az, gx, gy, gz, mx, my, mz, roll, pitch, uh]
|
[ax, ay, az, gx, gy, gz, mx, my, mz, roll, pitch, ch]
|
||||||
|
|
||||||
where a stands for accelerometer, g for gyroscope and m for magnetometer.
|
where a stands for accelerometer, g for gyroscope and m for magnetometer.
|
||||||
The last value uh stands for "unified heading" that some IMU's compute
|
The last value ch stands for "compensated heading" that some IMU's can
|
||||||
from both gyroscope and compass data.
|
compute to compensate magnetic heading from the current roll and pitch.
|
||||||
'''
|
'''
|
||||||
values = self.execute_array('i')
|
values = self.execute_array('i')
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user