You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Instructions for setting up ThermoPro TP357 Bluetooth-based temperature and humidity sensors in ESPHome."
3
-
title: "ThermoPro TP357 BLE Sensor"
2
+
description: "Instructions for setting up ThermoPro Bluetooth-based temperature and humidity sensors in ESPHome."
3
+
title: "ThermoPro BLE Sensor"
4
4
params:
5
5
seo:
6
-
description: Instructions for setting up ThermoPro TP357 Bluetooth-based temperature and humidity sensors in ESPHome.
6
+
description: Instructions for setting up ThermoPro Bluetooth-based temperature and humidity sensors in ESPHome.
7
7
image: thermopro_tp357.jpg
8
8
---
9
9
10
-
The `thermopro_tp357` sensor platform lets you track the output of ThermoPro TP357 Bluetooth
10
+
The `thermopro_ble` sensor platform lets you track the output of ThermoPro Bluetooth
11
11
Low Energy devices using the {{< docref "/components/esp32_ble_tracker" >}}. This component will track the
12
-
temperature, humidity, battery level and signal strength of the TP357 device every time the
12
+
temperature, humidity, battery level and signal strength of the ThermoPro device every time the
13
13
sensor sends out a BLE broadcast.
14
14
15
+
> [!NOTE]
16
+
> Currently this component is only tested with TP357S devices. However, it should work with TP972, TP970, TP96x and TP3xx.
17
+
15
18
{{< img src="thermopro_tp357-full.jpg" alt="Image" caption="ThermoPro TP357 Temperature and Humidity Sensor over BLE." width="80.0%" class="align-center" >}}
16
19
17
20
```yaml
18
21
# Example configuration entry
19
22
esp32_ble_tracker:
20
23
21
24
sensor:
22
-
- platform: thermopro_tp357
25
+
- platform: thermopro_ble
23
26
mac_address: XX:XX:XX:XX:XX:XX
24
27
temperature:
25
28
name: "ThermoPro Temperature"
@@ -33,12 +36,19 @@ sensor:
33
36
34
37
## Configuration variables
35
38
36
-
- **mac_address** (**Required**, MAC Address): The MAC address of the ThermoPro TP357 device.
39
+
- **mac_address** (**Required**, MAC Address): The MAC address of the ThermoPro device.
40
+
37
41
- **temperature** (*Optional*): The information for the temperature sensor.
38
42
39
43
- All options from [Sensor](#config-sensor).
40
44
45
+
- **external_temperature** (*Optional*): The information for the ambient temperature sensor.
46
+
This is only aviliable on TP972, TP970 and TP96x devices.
47
+
48
+
- All options from [Sensor](#config-sensor).
49
+
41
50
- **humidity** (*Optional*): The information for the humidity sensor
51
+
This is only aviliable on TP3xx devices.
42
52
43
53
- All options from [Sensor](#config-sensor).
44
54
@@ -52,8 +62,8 @@ sensor:
52
62
53
63
## Setting Up Devices
54
64
55
-
To set up ThermoPro TP357 devices you first need to find their MAC Address so that ESPHome can
56
-
identify them. So first, create a simple configuration without any `thermopro_tp357` entries
65
+
To set up ThermoPro devices you first need to find their MAC Address so that ESPHome can
66
+
identify them. So first, create a simple configuration without any `thermopro_ble` entries
0 commit comments