Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Ernst79 committed Feb 29, 2024
1 parent 68daa92 commit 1ac8e93
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion custom_components/ble_monitor/ble_parser/oras.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def parse_oras(self, data: bytes, mac: str):

sensor_volume = data[11:14].decode("ASCII")
sensor_total = data[14:17].decode("ASCII")
sensor_alarm = data[17]
sensor_alarm = int(chr(data[17]))

result.update({
sensor_type: sensor_data,
Expand Down
2 changes: 1 addition & 1 deletion custom_components/ble_monitor/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
"btsocket>=0.2.0",
"pyric>=0.1.6.3"
],
"version": "12.9.3"
"version": "12.10.0"
}
2 changes: 1 addition & 1 deletion custom_components/ble_monitor/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ class BaseSensor(RestoreSensor, SensorEntity):
# | |**flow
# | |**gas
# | |**water
# | |**fresh/grey/black tank
# | |**fresh/grey/black/lpg/galley/chemical tank
# |--InstantUpdateSensor (Class)
# | |**consumable
# | |**heart rate
Expand Down

0 comments on commit 1ac8e93

Please sign in to comment.