Skip to content

Commit 9e3c185

Browse files
committed
ism330dl: Fix default I2C address to 0x6B matching STeaMi board.
1 parent 003a68a commit 9e3c185

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/ism330dl/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The sensor can use two I²C addresses depending on the **SA0 pin**:
4646
| 0 | `0x6A` |
4747
| 1 | `0x6B` |
4848

49-
The STeaMi board uses **0x6A** (default).
49+
The STeaMi board uses **0x6B** (default).
5050

5151
---
5252

lib/ism330dl/ism330dl/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# ---------------------------------------------------------------------
66
ISM330DL_I2C_ADDR_LOW = const(0x6A)
77
ISM330DL_I2C_ADDR_HIGH = const(0x6B)
8-
ISM330DL_I2C_DEFAULT_ADDR = ISM330DL_I2C_ADDR_LOW
8+
ISM330DL_I2C_DEFAULT_ADDR = ISM330DL_I2C_ADDR_HIGH
99
ISM330DL_WHO_AM_I_VALUE = const(0x6A)
1010

1111

tests/scenarios/ism330dl.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
driver: ism330dl
22
driver_class: ISM330DL
3-
i2c_address: 0x6A
3+
i2c_address: 0x6B
44

55
i2c:
66
id: 1

0 commit comments

Comments
 (0)