Skip to content

Commit 1ac8e93

Browse files
committed
bump version
1 parent 68daa92 commit 1ac8e93

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

custom_components/ble_monitor/ble_parser/oras.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def parse_oras(self, data: bytes, mac: str):
5454

5555
sensor_volume = data[11:14].decode("ASCII")
5656
sensor_total = data[14:17].decode("ASCII")
57-
sensor_alarm = data[17]
57+
sensor_alarm = int(chr(data[17]))
5858

5959
result.update({
6060
sensor_type: sensor_data,

custom_components/ble_monitor/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
"btsocket>=0.2.0",
1515
"pyric>=0.1.6.3"
1616
],
17-
"version": "12.9.3"
17+
"version": "12.10.0"
1818
}

custom_components/ble_monitor/sensor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ class BaseSensor(RestoreSensor, SensorEntity):
337337
# | |**flow
338338
# | |**gas
339339
# | |**water
340-
# | |**fresh/grey/black tank
340+
# | |**fresh/grey/black/lpg/galley/chemical tank
341341
# |--InstantUpdateSensor (Class)
342342
# | |**consumable
343343
# | |**heart rate

0 commit comments

Comments
 (0)