Skip to content

Commit 42b4334

Browse files
committed
remove STTS751 addr parameter
1 parent 1a78240 commit 42b4334

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sensor/STTS751/STTS751.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
STTS751_REG_THERMHYS = const(33)
2020

2121
class STTS751():
22-
def __init__(self, i2c, addr = 0x4A):
22+
def __init__(self, i2c):
2323
self.i2c = i2c
24-
self.addr = addr
24+
self.addr = 0x4A
2525
self.tb = bytearray(1)
2626
self.rb = bytearray(1)
2727
self.oneshot = False

0 commit comments

Comments
 (0)