File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 9
9
[" modulino/modulino.py" , " github:arduino/modulino-mpy/src/modulino/modulino.py" ],
10
10
[" modulino/movement.py" , " github:arduino/modulino-mpy/src/modulino/movement.py" ],
11
11
[" modulino/pixels.py" , " github:arduino/modulino-mpy/src/modulino/pixels.py" ],
12
+ [" modulino/pressure.py" , " github:arduino/modulino-mpy/src/modulino/pressure.py" ],
12
13
[" modulino/thermo.py" , " github:arduino/modulino-mpy/src/modulino/thermo.py" ]
13
14
],
14
15
"deps" : [
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ class ModulinoPressure(Modulino):
8
8
convert_default_addresses = False
9
9
10
10
def __init__ (self , i2c_bus = None , address : int | None = None ) -> None :
11
- super ().__init__ (i2c_bus , address , "MOVEMENT " )
11
+ super ().__init__ (i2c_bus , address , "PRESSURE " )
12
12
self .sensor = LPS22H (self .i2c_bus , self .address )
13
13
14
14
@property
You can’t perform that action at this time.
0 commit comments