-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathqmi8658c.py
408 lines (324 loc) · 13.1 KB
/
qmi8658c.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
# SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries
# SPDX-FileCopyrightText: Copyright (c) 2023 Taiki Komoda for JINS Inc.
#
# SPDX-License-Identifier: MIT
"""
`qmi8658c`
================================================================================
CircuitPython helper library for the QMI8658C 6-DoF Accelerometer and Gyroscope
* Author(s): Taiki Komoda
Implementation Notes
--------------------
**Software and Dependencies:**
* Adafruit CircuitPython firmware for the supported boards:
https://circuitpython.org/downloads
* Adafruit's Bus Device library: https://github.com/adafruit/Adafruit_CircuitPython_BusDevice
* Adafruit's Register library: https://github.com/adafruit/Adafruit_CircuitPython_Register
"""
# imports
__version__ = "0.0.0+auto.0"
__repo__ = "https://github.com/jins-tkomoda/CircuitPython_QMI8658C.git"
from math import radians
from time import sleep
from micropython import const
from adafruit_register.i2c_struct import ROUnaryStruct, Struct
from adafruit_register.i2c_bits import RWBits
from adafruit_bus_device import i2c_device
try:
from typing import Tuple
from busio import I2C
except ImportError:
pass
_QMI8658C_WHO_AM_I = const(0x0) # WHO_AM_I register
_QMI8658C_REVISION_ID = const(0x1) # Divice ID register
_QMI8658C_TIME_OUT = const(0x30) # time data byte register
_QMI8658C_TEMP_OUT = const(0x33) # temp data byte register
_QMI8658C_ACCEL_OUT = const(0x35) # base address for sensor data reads
_QMI8658C_GYRO_OUT = const(0x3B) # base address for sensor data reads
STANDARD_GRAVITY = 9.80665
class AccRange: # pylint: disable=too-few-public-methods
"""Allowed values for :py:attr:`accelerometer_range`.
* :py:attr:`AccRange.RANGE_2_G`
* :py:attr:`AccRange.RANGE_4_G`
* :py:attr:`AccRange.RANGE_8_G`
* :py:attr:`AccRange.RANGE_16_G`
"""
RANGE_2_G = const(0) # +/- 2g
RANGE_4_G = const(1) # +/- 4g
RANGE_8_G = const(2) # +/- 8g (default value)
RANGE_16_G = const(3) # +/- 16g
class GyroRange: # pylint: disable=too-few-public-methods
"""Allowed values for :py:attr:`gyro_range`.
* :py:attr:`GyroRange.RANGE_16_DPS`
* :py:attr:`GyroRange.RANGE_32_DPS`
* :py:attr:`GyroRange.RANGE_64_DPS`
* :py:attr:`GyroRange.RANGE_128_DPS`
* :py:attr:`GyroRange.RANGE_256_DPS`
* :py:attr:`GyroRange.RANGE_512_DPS`
* :py:attr:`GyroRange.RANGE_1024_DPS`
* :py:attr:`GyroRange.RANGE_2048_DPS`
"""
RANGE_16_DPS = const(0) # +/- 16 deg/s
RANGE_32_DPS = const(1) # +/- 32 deg/s
RANGE_64_DPS = const(2) # +/- 64 deg/s
RANGE_128_DPS = const(3) # +/- 128 deg/s
RANGE_256_DPS = const(4) # +/- 256 deg/s (default value)
RANGE_512_DPS = const(5) # +/- 512 deg/s
RANGE_1024_DPS = const(6) # +/- 1024 deg/s
RANGE_2048_DPS = const(7) # +/- 2048 deg/s
class AccRate: # pylint: disable=too-few-public-methods
"""Allowed values for :py:attr:`accelerometer_rate`.
Accelerometer low power(LP) mode must be a gyro disabled.
* :py:attr:`AccRate.RATE_8000_HZ`
* :py:attr:`AccRate.RATE_4000_HZ`
* :py:attr:`AccRate.RATE_2000_HZ`
* :py:attr:`AccRate.RATE_1000_HZ`
* :py:attr:`AccRate.RATE_500_HZ`
* :py:attr:`AccRate.RATE_250_HZ`
* :py:attr:`AccRate.RATE_125_HZ`
* :py:attr:`AccRate.RATE_62_HZ`
* :py:attr:`AccRate.RATE_31_HZ`
* :py:attr:`AccRate.RATE_LP_128_HZ`
* :py:attr:`AccRate.RATE_LP_21_HZ`
* :py:attr:`AccRate.RATE_LP_11_HZ`
* :py:attr:`AccRate.RATE_LP_3_HZ`
"""
RATE_8000_HZ = const(0)
RATE_4000_HZ = const(1)
RATE_2000_HZ = const(2)
RATE_1000_HZ = const(3)
RATE_500_HZ = const(4)
RATE_250_HZ = const(5)
RATE_125_HZ = const(6) # (default value)
RATE_62_HZ = const(7)
RATE_31_HZ = const(8)
RATE_LP_128_HZ = const(12)
RATE_LP_21_HZ = const(13)
RATE_LP_11_HZ = const(14)
RATE_LP_3_HZ = const(15)
class GyroRate: # pylint: disable=too-few-public-methods
"""Allowed values for :py:attr:`gyro_rate`.
* :py:attr:`GyroRate.RATE_G_8000_HZ`
* :py:attr:`GyroRate.RATE_G_4000_HZ`
* :py:attr:`GyroRate.RATE_G_2000_HZ`
* :py:attr:`GyroRate.RATE_G_1000_HZ`
* :py:attr:`GyroRate.RATE_G_500_HZ`
* :py:attr:`GyroRate.RATE_G_250_HZ`
* :py:attr:`GyroRate.RATE_G_125_HZ`
* :py:attr:`GyroRate.RATE_G_62_HZ`
* :py:attr:`GyroRate.RATE_G_31_HZ`
"""
RATE_G_8000_HZ = const(0)
RATE_G_4000_HZ = const(1)
RATE_G_2000_HZ = const(2)
RATE_G_1000_HZ = const(3)
RATE_G_500_HZ = const(4)
RATE_G_250_HZ = const(5)
RATE_G_125_HZ = const(6) # (default value)
RATE_G_62_HZ = const(7)
RATE_G_31_HZ = const(8)
class QMI8658C: # pylint: disable=too-many-instance-attributes
"""Driver for the QMI8658C 6-DoF accelerometer and gyroscope.
:param ~busio.I2C i2c_bus: The I2C bus the device is connected to
:param int address: The I2C device address. Defaults to :const:`0x68`
**Quickstart: Importing and using the device**
Here is an example of using the :class:`QMI8658C` class.
First you will need to import the libraries to use the sensor
.. code-block:: python
import board
import qmi8658c
Once this is done you can define your `board.I2C` object and define your sensor object
.. code-block:: python
i2c = board.I2C() # uses board.SCL and board.SDA
sensor = qmi8658c.QMI8658C(i2c)
Now you have access to the :attr:`acceleration`, :attr:`gyro`
and :attr:`temperature` attributes
.. code-block:: python
acc_x, acc_y, acc_z = sensor.acceleration
gyro_x, gyro_y, gyro_z = sensor.gyro
temperature = sensor.temperature
"""
_device_id = ROUnaryStruct(_QMI8658C_WHO_AM_I, "B")
_revision_id = ROUnaryStruct(_QMI8658C_REVISION_ID, "B")
_ctrl1 = RWBits(8, 0x02, 0)
# _ctrl2 = RWBits(8, 0x03, 0)
_accelerometer_range = RWBits(3, 0x03, 4)
_accelerometer_rate = RWBits(4, 0x03, 0)
# _ctrl3 = RWBits(8, 0x04, 0)
_gyro_range = RWBits(3, 0x04, 4)
_gyro_rate = RWBits(4, 0x04, 0)
_ctrl4 = RWBits(8, 0x05, 0)
_ctrl5 = RWBits(8, 0x06, 0)
_ctrl6 = RWBits(8, 0x07, 0)
# _ctrl7 = RWBits(8, 0x08, 0)
_accelerometer_enable = RWBits(1, 0x08, 0)
_gyro_enable = RWBits(1, 0x08, 1)
_raw_time_data = Struct(_QMI8658C_TIME_OUT, "BBB")
_raw_temp_data = Struct(_QMI8658C_TEMP_OUT, "BB")
_raw_accel_data = Struct(_QMI8658C_ACCEL_OUT, "<hhh")
_raw_gyro_data = Struct(_QMI8658C_GYRO_OUT, "<hhh")
_raw_accel_gyro_data = Struct(_QMI8658C_ACCEL_OUT, "<hhhhhh")
_raw_accel_gyro_bytes = Struct(_QMI8658C_ACCEL_OUT, "BBBBBBBBBBBB")
# these vars are called very frequently
_acc_scale = 1
_gyro_scale = 1
def __init__(self, i2c_bus: I2C, address=0x6B) -> None:
self.i2c_device = i2c_device.I2CDevice(i2c_bus, address)
# print(f"_device_id/_revision_id {self._device_id}/{self._revision_id}")
if self._device_id != 0x05:
raise RuntimeError("Failed to find QMI8658C")
# Config
# REG CTRL1 Enables 4-wire SPI interface, address auto increment, SPI read data big endian
self._ctrl1 = 0b01100000
# REG CTRL2 : QMI8658CAccRange_8g and QMI8658CAccOdr_125Hz
# self._ctrl2 = (2 << 4) + 0b0110
self.accelerometer_range = AccRange.RANGE_8_G
sleep(0.01)
self.accelerometer_rate = AccRate.RATE_125_HZ
sleep(0.01)
# REG CTRL3 : QMI8658CGyrRange_512dps and QMI8658CGyrOdr_125Hz
# self._ctrl3 = (5 << 4) + 0b0110
self.gyro_range = GyroRange.RANGE_512_DPS
sleep(0.01)
self.gyro_rate = GyroRate.RATE_G_125_HZ
sleep(0.01)
# REG CTRL4 : No magnetometer
self._ctrl4 = 0x00
# REG CTRL5 : Disables Gyroscope And Accelerometer Low-Pass Filter
self._ctrl5 = 0x00
# REG CTRL6 : Disables Motion on Demand.
self._ctrl6 = 0x00
# REG CTRL7 : Enable Gyroscope And Accelerometer
# self._ctrl7 = 0b00000011
sleep(0.01)
self._accelerometer_enable = 1
sleep(0.1)
self._gyro_enable = 1
sleep(0.1)
@property
def timestamp(self) -> int:
"""Timestamp from boot up"""
raw_timestamp = self._raw_time_data
return raw_timestamp[0] + (raw_timestamp[1] << 8) + (raw_timestamp[2] << 16)
@property
def temperature(self) -> float:
"""Chip temperature"""
raw_temperature = self._raw_temp_data
temp = raw_temperature[0] / 256 + raw_temperature[1]
return temp
@property
def acceleration(self) -> Tuple[float, float, float]:
"""Acceleration X, Y, and Z axis data in :math:`m/s^2`"""
raw_x, raw_y, raw_z = self._raw_accel_data
# setup range dependant scaling
accel_x = (raw_x / self._acc_scale) * STANDARD_GRAVITY
accel_y = (raw_y / self._acc_scale) * STANDARD_GRAVITY
accel_z = (raw_z / self._acc_scale) * STANDARD_GRAVITY
return (accel_x, accel_y, accel_z)
@property
def gyro(self) -> Tuple[float, float, float]:
"""Gyroscope X, Y, and Z axis data in :math:`rad/s`"""
raw_x, raw_y, raw_z = self._raw_gyro_data
# setup range dependant scaling
gyro_x = radians(raw_x / self._gyro_scale)
gyro_y = radians(raw_y / self._gyro_scale)
gyro_z = radians(raw_z / self._gyro_scale)
return (gyro_x, gyro_y, gyro_z)
@property
def raw_acc_gyro(self) -> Tuple[int, int, int, int, int, int]:
"""Raw data extraction"""
raw_data = self._raw_accel_gyro_data
return raw_data
@property
def raw_acc_gyro_bytes(
self,
) -> Tuple[int, int, int, int, int, int, int, int, int, int, int, int]:
"""Raw bytes extraction"""
raw_data = self._raw_accel_gyro_bytes
return raw_data
@property
def accelerometer_range(self) -> int:
"""The measurement range of all accelerometer axes. Must be a `AccRange`"""
return self._accelerometer_range
@accelerometer_range.setter
def accelerometer_range(self, value: int) -> None:
if (value < 0) or (value > 3):
raise ValueError("accelerometer_range must be a AccRange")
if value == AccRange.RANGE_16_G:
self._acc_scale = 2048
if value == AccRange.RANGE_8_G:
self._acc_scale = 4096
if value == AccRange.RANGE_4_G:
self._acc_scale = 8192
if value == AccRange.RANGE_2_G:
self._acc_scale = 16384
self._accelerometer_range = value
sleep(0.01)
@property
def accelerometer_rate(self) -> int:
"""The measurement rate of all accelerometer axes. Must be a `AccRate`"""
return self._accelerometer_rate
@accelerometer_rate.setter
def accelerometer_rate(self, value: int) -> None:
if value < 0 or value > 15 or 9 <= value <= 11:
raise ValueError("accelerometer_rate must be a AccRate")
if 12 <= value <= 15 and self._gyro_enable == 1:
raise ValueError("accelerometer low power mode must be a gyro disabled")
self._accelerometer_rate = value
sleep(0.01)
@property
def gyro_range(self) -> int:
"""The measurement range of all gyroscope axes. Must be a `GyroRange`"""
return self._gyro_range
@gyro_range.setter
def gyro_range(self, value: int) -> None:
if (value < 0) or (value > 7):
raise ValueError("gyro_range must be a GyroRange")
if value == GyroRange.RANGE_16_DPS:
self._gyro_scale = 2048
if value == GyroRange.RANGE_32_DPS:
self._gyro_scale = 1024
if value == GyroRange.RANGE_64_DPS:
self._gyro_scale = 512
if value == GyroRange.RANGE_128_DPS:
self._gyro_scale = 256
if value == GyroRange.RANGE_256_DPS:
self._gyro_scale = 128
if value == GyroRange.RANGE_512_DPS:
self._gyro_scale = 64
if value == GyroRange.RANGE_1024_DPS:
self._gyro_scale = 32
if value == GyroRange.RANGE_2048_DPS:
self._gyro_scale = 16
self._gyro_range = value
sleep(0.01)
@property
def gyro_rate(self) -> int:
"""The measurement rate of all gyroscope axes. Must be a `GyroRate`"""
return self._gyro_rate
@gyro_rate.setter
def gyro_rate(self, value: int) -> None:
if value < 0 or value > 8:
raise ValueError("gyro_rate must be a GyroRate")
self._gyro_rate = value
sleep(0.01)
@property
def accelerometer_enable(self) -> int:
"""Enable / disable accelerometer"""
return self._accelerometer_enable
@accelerometer_enable.setter
def accelerometer_enable(self, value: int) -> None:
if value < 0 or value > 1:
raise ValueError("accelerometer_enable must be a 0/1")
self._accelerometer_enable = value
sleep(0.1)
@property
def gyro_enable(self) -> int:
"""Enable / disable gyroscope"""
return self._gyro_enable
@gyro_enable.setter
def gyro_enable(self, value: int) -> None:
if value < 0 or value > 1:
raise ValueError("gyro_enable must be a 0/1")
self._gyro_enable = value
sleep(0.1)