Skip to content

Commit 8900b18

Browse files
authored
Add support for Thermopro TP828B Meat Thermometers 2 probes (#3085)
* Add support for Thermopro TP828B Meat Thermometers 2 probes, with probe temp, LO and HI target temp
1 parent 4fa3756 commit 8900b18

File tree

6 files changed

+297
-141
lines changed

6 files changed

+297
-141
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -344,14 +344,15 @@ See [CONTRIBUTING.md](./docs/CONTRIBUTING.md).
344344
[256] ThermoPro TP28b Super Long Range Wireless Meat Thermometer for Smoker BBQ Grill
345345
[257] BMW Gen3 TPMS
346346
[258] Chamberlain CWPIRC PIR Sensor
347-
[259] ThermoPro TP829b Meat Thermometer 4 coated probes
347+
[259] ThermoPro Meat Thermometers, TP829B 4 probes with temp only
348348
[260]* Arad/Master Meter Dialog3G water utility meter
349349
[261] Geevon TX16-3 outdoor sensor
350350
[262] Fine Offset Electronics WH46 air quality sensor
351351
[263] Vevor Wireless Weather Station 7-in-1
352352
[264] Arexx Multilogger IP-HA90, IP-TH78EXT, TSN-70E
353353
[265] Rosstech Digital Control Unit DCU-706/Sundance/Jacuzzi
354354
[266] Risco 2 Way Agility protocol, Risco PIR/PET Sensor RWX95P
355+
[267] ThermoPro Meat Thermometers, TP828B 2 probes with Temp, BBQ Target LO and HI
355356
356357
* Disabled by default, use -R n or a conf file to enable
357358

conf/rtl_433.example.conf

+2-1
Original file line numberDiff line numberDiff line change
@@ -485,14 +485,15 @@ convert si
485485
protocol 256 # ThermoPro TP28b Super Long Range Wireless Meat Thermometer for Smoker BBQ Grill
486486
protocol 257 # BMW Gen3 TPMS
487487
protocol 258 # Chamberlain CWPIRC PIR Sensor
488-
protocol 259 # ThermoPro TP829b Meat Thermometer 4 coated probes
488+
protocol 259 # ThermoPro Meat Thermometers, TP829B 4 probes with temp only
489489
# protocol 260 # Arad/Master Meter Dialog3G water utility meter
490490
protocol 261 # Geevon TX16-3 outdoor sensor
491491
protocol 262 # Fine Offset Electronics WH46 air quality sensor
492492
protocol 263 # Vevor Wireless Weather Station 7-in-1
493493
protocol 264 # Arexx Multilogger IP-HA90, IP-TH78EXT, TSN-70E
494494
protocol 265 # Rosstech Digital Control Unit DCU-706/Sundance/Jacuzzi
495495
protocol 266 # Risco 2 Way Agility protocol, Risco PIR/PET Sensor RWX95P
496+
protocol 267 # ThermoPro Meat Thermometers, TP828B 2 probes with Temp, BBQ Target LO and HI
496497

497498
## Flex devices (command line option "-X")
498499

include/rtl_433_devices.h

+1
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@
274274
DECL(arexx_ml) \
275275
DECL(rosstech_dcu706) \
276276
DECL(risco_agility) \
277+
DECL(thermopro_tp828b) \
277278

278279
/* Add new decoders here. */
279280

src/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ add_library(r_433 STATIC
237237
devices/thermopro_tp11.c
238238
devices/thermopro_tp12.c
239239
devices/thermopro_tp28b.c
240-
devices/thermopro_tp829b.c
240+
devices/thermopro_tp82xb.c
241241
devices/thermopro_tx2.c
242242
devices/thermopro_tx2c.c
243243
devices/thermor.c

src/devices/thermopro_tp829b.c

-138
This file was deleted.

0 commit comments

Comments
 (0)