File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ class BNO055:
91
91
Driver for the BNO055 9DOF IMU sensor.
92
92
"""
93
93
94
- temperature = _ReadOnlyUnaryStruct (0x34 , 'B ' )
94
+ temperature = _ReadOnlyUnaryStruct (0x34 , 'b ' )
95
95
"""Measures the temperature of the chip in degrees Celsius."""
96
96
accelerometer = _ScaledReadOnlyStruct (0x08 , '<hhh' , 1 / 100 )
97
97
"""Gives the raw accelerometer readings, in m/s.
@@ -107,7 +107,7 @@ class BNO055:
107
107
other drivers too."""
108
108
magnetic = _ScaledReadOnlyStruct (0x0e , '<hhh' , 1 / 16 )
109
109
"""Gives the raw magnetometer readings in microteslas."""
110
- gyroscope = _ScaledReadOnlyStruct (0x14 , '<hhh' , 1 / 900 )
110
+ gyroscope = _ScaledReadOnlyStruct (0x14 , '<hhh' , 1 / 16 )
111
111
"""Gives the raw gyroscope reading in degrees per second."""
112
112
euler = _ScaledReadOnlyStruct (0x1a , '<hhh' , 1 / 16 )
113
113
"""Gives the calculated orientation angles, in degrees."""
You can’t perform that action at this time.
0 commit comments