We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 003a68a commit 9e3c185Copy full SHA for 9e3c185
3 files changed
lib/ism330dl/README.md
@@ -46,7 +46,7 @@ The sensor can use two I²C addresses depending on the **SA0 pin**:
46
| 0 | `0x6A` |
47
| 1 | `0x6B` |
48
49
-The STeaMi board uses **0x6A** (default).
+The STeaMi board uses **0x6B** (default).
50
51
---
52
lib/ism330dl/ism330dl/const.py
@@ -5,7 +5,7 @@
5
# ---------------------------------------------------------------------
6
ISM330DL_I2C_ADDR_LOW = const(0x6A)
7
ISM330DL_I2C_ADDR_HIGH = const(0x6B)
8
-ISM330DL_I2C_DEFAULT_ADDR = ISM330DL_I2C_ADDR_LOW
+ISM330DL_I2C_DEFAULT_ADDR = ISM330DL_I2C_ADDR_HIGH
9
ISM330DL_WHO_AM_I_VALUE = const(0x6A)
10
11
tests/scenarios/ism330dl.yaml
@@ -1,6 +1,6 @@
1
driver: ism330dl
2
driver_class: ISM330DL
3
-i2c_address: 0x6A
+i2c_address: 0x6B
4
i2c:
id: 1
0 commit comments