Skip to content

Commit d18baeb

Browse files
authoredMar 9, 2025
Merge pull request #1441 from custom-components/thermopro
Add battery low data to Thermopro
2 parents 708297c + 5e1c1a0 commit d18baeb

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed
 

‎custom_components/ble_monitor/ble_parser/thermopro.py

+9-4
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,20 @@ def parse_thermopro(self, data: bytes, device_type, mac: bytes):
1111
"""Thermopro parser"""
1212
if device_type in ["TP357", "TP359"]:
1313
firmware = "Thermopro"
14-
xvalue = data[3:6]
15-
(temp, humi) = unpack("<hB", xvalue)
14+
xvalue = data[3:7]
15+
(temp, humi, batt) = unpack("<hBB", xvalue)
16+
if batt == 2:
17+
# full battery
18+
batt_low = 0
19+
else:
20+
# low battery
21+
batt_low = 1
1622
result = {
1723
"temperature": temp / 10,
1824
"humidity": humi,
25+
"battery low": batt_low
1926
}
2027
else:
21-
device_type = None
22-
if device_type is None:
2328
if self.report_unknown == "Thermopro":
2429
_LOGGER.info(
2530
"BLE ADV from UNKNOWN Thermopro DEVICE: MAC: %s, ADV: %s",

‎custom_components/ble_monitor/manifest.json

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

‎custom_components/ble_monitor/test/test_thermopro.py

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ def test_thermopro_tp357(self):
2020
assert sensor_msg["data"]
2121
assert sensor_msg["temperature"] == 27.9
2222
assert sensor_msg["humidity"] == 39
23+
assert sensor_msg["battery low"] == 0
2324
assert sensor_msg["rssi"] == -68
2425

2526
def test_thermopro_tp359(self):

0 commit comments

Comments
 (0)