Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ac1e4a8

Browse files
committedApr 2, 2024·
minor: Update readme
1 parent a50f235 commit ac1e4a8

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed
 

‎README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -339,8 +339,9 @@ See [CONTRIBUTING.md](./docs/CONTRIBUTING.md).
339339
[251] Fine Offset / Ecowitt WH55 water leak sensor
340340
[252] BMW Gen5 TPMS, multi-brand HUF, Continental, Schrader/Sensata
341341
[253] Watts WFHT-RF Thermostat
342-
[254] Thermor DG950 Weather Station
342+
[254] Thermor DG950 weather station
343343
[255] Mueller Hot Rod water meter
344+
[256] ThermoPro TP28b Super Long Range Wireless Meat Thermometer for Smoker BBQ Grill
344345
345346
* Disabled by default, use -R n or a conf file to enable
346347

‎conf/rtl_433.example.conf

+3
Original file line numberDiff line numberDiff line change
@@ -480,6 +480,9 @@ convert si
480480
protocol 251 # Fine Offset / Ecowitt WH55 water leak sensor
481481
protocol 252 # BMW Gen5 TPMS, multi-brand HUF, Continental, Schrader/Sensata
482482
protocol 253 # Watts WFHT-RF Thermostat
483+
protocol 254 # Thermor DG950 weather station
484+
protocol 255 # Mueller Hot Rod water meter
485+
protocol 256 # ThermoPro TP28b Super Long Range Wireless Meat Thermometer for Smoker BBQ Grill
483486

484487
## Flex devices (command line option "-X")
485488

‎src/devices/thermopro_tp28b.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ static char const *const output_fields[] = {
155155
};
156156

157157
r_device const thermopro_tp28b = {
158-
.name = "ThermoPro TP28b Super Long Range Wireless Meat Thermometer for Smoker BBQ Grill.",
158+
.name = "ThermoPro TP28b Super Long Range Wireless Meat Thermometer for Smoker BBQ Grill",
159159
.modulation = FSK_PULSE_PCM,
160160
.short_width = 105,
161161
.long_width = 105,

‎src/devices/thermor.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ static char const *const output_fields[] = {
211211
};
212212

213213
r_device const thermor = {
214-
.name = "Thermor Weather Station DG950",
214+
.name = "Thermor DG950 weather station",
215215
.modulation = OOK_PULSE_PWM,
216216
.short_width = 680,
217217
.long_width = 2100,

0 commit comments

Comments
 (0)
Please sign in to comment.