@@ -272,7 +272,7 @@ def read_accel_raw(self):
272
272
273
273
@property
274
274
def accelerometer (self ):
275
- """Returns the accelerometer X, Y, Z axis values as a 3-tuple of
275
+ """The accelerometer X, Y, Z axis values as a 3-tuple of
276
276
m/s^2 values.
277
277
"""
278
278
raw = self .read_accel_raw ()
@@ -293,7 +293,7 @@ def read_mag_raw(self):
293
293
294
294
@property
295
295
def magnetometer (self ):
296
- """Returns the magnetometer X, Y, Z axis values as a 3-tuple of
296
+ """The magnetometer X, Y, Z axis values as a 3-tuple of
297
297
gauss values.
298
298
"""
299
299
raw = self .read_mag_raw ()
@@ -313,7 +313,7 @@ def read_gyro_raw(self):
313
313
314
314
@property
315
315
def gyroscope (self ):
316
- """Returns the gyroscope X, Y, Z axis values as a 3-tuple of
316
+ """The gyroscope X, Y, Z axis values as a 3-tuple of
317
317
degrees/second values.
318
318
"""
319
319
raw = self .read_mag_raw ()
@@ -332,7 +332,7 @@ def read_temp_raw(self):
332
332
333
333
@property
334
334
def temperature (self ):
335
- """Returns the temperature of the sensor in degrees Celsius."""
335
+ """The temperature of the sensor in degrees Celsius."""
336
336
# This is just a guess since the starting point (21C here) isn't documented :(
337
337
# See discussion from:
338
338
# https://github.com/kriswiner/LSM9DS1/issues/3
0 commit comments