rtl_433.conf.j2 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546
  1. # config for rtl_433
  2. # A valid config line is a keyword followed by an argument to the end of line.
  3. # Whitespace around the keyword is ignored, whitespace is space and tab
  4. # Comments start with a hash sign, no inline comments, empty lines are ok.
  5. #
  6. # Boolean options can be true/false, yes/no, on/off, enable/disable, or 1/0
  7. #
  8. # All options will be applied in the order given, overwriting previous values.
  9. # Options given on the command line are then applied left to right.
  10. #
  11. # Config files can be nested/stacked (use multiple -c and config_file = ).
  12. #
  13. # If no -c option is given the first `rtl_433.conf` found of this list will be loaded:
  14. # - in the current working dir, i.e. `./rtl_433.conf`
  15. # - in XDG_CONFIG_HOME, e.g. `$HOME/.config/rtl_433/`
  16. # - in SYSCONFDIR, usually PREFIX/etc, e.g. `/usr/local/etc/rtl_433/`
  17. ## General options
  18. # as command line option:
  19. # [-v] Increase verbosity (can be used multiple times).
  20. # -v : verbose notice, -vv : verbose info, -vvv : debug, -vvvv : trace.
  21. # 1=fatal, 2=critical, 3=error, 4=warning (default), 5=notice, 6=info, 7=debug, 8=trace
  22. verbose 0
  23. # as command line option:
  24. # [-c <path>] Read config options from a file
  25. #config_file
  26. ## Tuner options
  27. # as command line option:
  28. # [-d <RTL-SDR USB device index>] (default: 0)
  29. # [-d :<RTL-SDR USB device serial (can be set with rtl_eeprom -s)>]
  30. # [-d "" Open default SoapySDR device
  31. # [-d driver=rtlsdr Open e.g. specific SoapySDR device
  32. # default is "0" (RTL-SDR) or "" (SoapySDR)
  33. device 0
  34. # as command line option:
  35. # [-g <gain>] (default: 0 for auto)
  36. # For RTL-SDR: gain in tenths of dB ("0" is auto).
  37. # For SoapySDR: gain in dB for automatic distribution ("" is auto), or string of gain elements.
  38. # E.g. "LNA=20,TIA=8,PGA=2" for LimeSDR.
  39. #gain 0
  40. # as command line option:
  41. # [-t <settings>] apply a list of keyword=value settings for SoapySDR devices
  42. # E.g. "antenna=A,bandwidth=4.5M,rfnotch_ctrl=false"
  43. #settings antenna=A,bandwidth=4.5M
  44. # as command line option:
  45. # [-f <frequency>] [-f...] Receive frequency(s) (default: 433920000 Hz)
  46. # default is "433.92M", other reasonable values are 315M, 345M, 915M and 868M
  47. frequency 433.92M
  48. #frequency 915M
  49. # as command line option:
  50. # [-H <seconds>] Hop interval for polling of multiple frequencies (default: 600 seconds)
  51. # default is "600" seconds, only used when multiple frequencies are given#
  52. #hop_interval 6
  53. # as command line option:
  54. # [-p <ppm_error] Correct rtl-sdr tuner frequency offset error (default: 0)
  55. # default is "0"
  56. #ppm_error 0
  57. # as command line option:
  58. # [-s <sample rate>] Set sample rate (default: 250000 Hz)
  59. # default is "250k", other valid settings are 1024k, 2048k, 3200k
  60. #sample_rate 250k
  61. # as command line option:
  62. # [-D restart | pause | quit | manual] Input device run mode options.
  63. # default is "quit"
  64. #device_mode quit
  65. ## Demodulator options
  66. # as command line option:
  67. # [-R <device>] Enable only the specified device decoding protocol (can be used multiple times)
  68. # see "protocol" section below.
  69. # as command line option:
  70. # [-X <spec> | help] Add a general purpose decoder (prepend -R 0 to disable all decoders)
  71. # see "decoder" section below.
  72. # as command line option:
  73. # [-Y auto | classic | minmax] FSK pulse detector mode.
  74. #pulse_detect auto
  75. # as command line option:
  76. # [-Y level=<dB level>] Manual detection level used to determine pulses (-1.0 to -30.0) (0=auto).
  77. #pulse_detect level=0
  78. # as command line option:
  79. # [-Y minlevel=<dB level>] Manual minimum detection level used to determine pulses (-1.0 to -99.0).
  80. #pulse_detect minlevel=-12
  81. # as command line option:
  82. # [-Y minsnr=<dB level>] Minimum SNR to determine pulses (1.0 to 99.0).
  83. #pulse_detect minsnr=9
  84. # as command line option:
  85. # [-Y autolevel] Set minlevel automatically based on average estimated noise.
  86. #pulse_detect autolevel
  87. # as command line option:
  88. # [-Y squelch] Skip frames below estimated noise level to lower cpu load.
  89. #pulse_detect squelch
  90. # as command line option:
  91. # [-Y ampest | magest] Choose amplitude or magnitude level estimator.
  92. #pulse_detect magest
  93. # as command line option:
  94. # [-n <value>] Specify number of samples to take (each sample is 2 bytes: 1 each of I & Q)
  95. #samples_to_read 0
  96. ## Analyze/Debug options
  97. # as command line option:
  98. # [-a] Analyze mode. Print a textual description of the signal. Disables decoding
  99. #analyze false
  100. # as command line option:
  101. # [-A] Pulse Analyzer. Enable pulse analysis and decode attempt
  102. #analyze_pulses false
  103. # as command line option:
  104. # [-b] Out block size: 262144 (default)
  105. #out_block_size
  106. # as command line option:
  107. # [-M time[:<options>]|protocol|level|noise[:<secs>]|stats|bits] Add various metadata to every output line.
  108. # Use "time" to add current date and time meta data (preset for live inputs).
  109. # Use "time:rel" to add sample position meta data (preset for read-file and stdin).
  110. # Use "time:unix" to show the seconds since unix epoch as time meta data. This is always UTC.
  111. # Use "time:iso" to show the time with ISO-8601 format (YYYY-MM-DD"T"hh:mm:ss).
  112. # Use "time:off" to remove time meta data.
  113. # Use "time:usec" to add microseconds to date time meta data.
  114. # Use "time:tz" to output time with timezone offset.
  115. # Use "time:utc" to output time in UTC.
  116. # (this may also be accomplished by invocation with TZ environment variable set).
  117. # "usec" and "utc" can be combined with other options, eg. "time:iso:utc" or "time:unix:usec".
  118. # Use "protocol" / "noprotocol" to output the decoder protocol number meta data.
  119. # Use "level" to add Modulation, Frequency, RSSI, SNR, and Noise meta data.
  120. # Use "noise[:secs]" to report estimated noise level at intervals (default: 10 seconds).
  121. # Use "stats[:[<level>][:<interval>]]" to report statistics (default: 600 seconds).
  122. # level 0: no report, 1: report successful devices, 2: report active devices, 3: report all
  123. # Use "bits" to add bit representation to code outputs (for debug).
  124. report_meta level
  125. report_meta noise
  126. report_meta stats
  127. report_meta time
  128. report_meta protocol
  129. # as command line option:
  130. # [-y <code>] Verify decoding of demodulated test data (e.g. "{25}fb2dd58") with enabled devices
  131. #test_data {25}fb2dd58
  132. ## File I/O options
  133. # as command line option:
  134. # [-S none|all|unknown|known] Signal auto save. Creates one file per signal.
  135. # Note: Saves raw I/Q samples (uint8 pcm, 2 channel). Preferred mode for generating test files.
  136. #signal_grabber none
  137. # as command line option:
  138. # [-r <filename>] Read data from input file instead of a receiver
  139. #read_file FILENAME.cu8
  140. # as command line option:
  141. # [-w <filename>] Save data stream to output file (a '-' dumps samples to stdout)
  142. #write_file FILENAME.cu8
  143. # as command line option:
  144. # [-W <filename>] Save data stream to output file, overwrite existing file
  145. #overwrite_file FILENAME.cu8
  146. ## Data output options
  147. # as command line option:
  148. # [-F log|kv|json|csv|mqtt|influx|syslog|trigger|null] Produce decoded output in given format.
  149. # Without this option the default is LOG and KV output. Use "-F null" to remove the default.
  150. # Append output to file with :<filename> (e.g. -F csv:log.csv), defaults to stdout.
  151. # Specify MQTT server with e.g. -F mqtt://localhost:1883
  152. # Add MQTT options with e.g. -F "mqtt://host:1883,opt=arg"
  153. # MQTT options are: user=foo, pass=bar, retain[=0|1], <format>[=topic]
  154. # Supported MQTT formats: (default is all)
  155. # events: posts JSON event data
  156. # states: posts JSON state data
  157. # devices: posts device and sensor info in nested topics
  158. # The topic string will expand keys like [/model]
  159. # E.g. -F "mqtt://localhost:1883,user=USERNAME,pass=PASSWORD,retain=0,devices=rtl_433[/id]"
  160. # With MQTT each rtl_433 instance needs a distinct driver selection. The MQTT Client-ID is computed from the driver string.
  161. # If you use multiple RTL-SDR, perhaps set a serial and select by that (helps not to get the wrong antenna).
  162. # Specify InfluxDB 2.0 server with e.g. -F "influx://localhost:9999/api/v2/write?org=<org>&bucket=<bucket>,token=<authtoken>"
  163. # Specify InfluxDB 1.x server with e.g. -F "influx://localhost:8086/write?db=<db>&p=<password>&u=<user>"
  164. # Additional parameter -M time:unix:usec:utc for correct timestamps in InfluxDB recommended
  165. # Specify host/port for syslog with e.g. -F syslog:127.0.0.1:1514
  166. # default is "kv", multiple outputs can be used.
  167. output kv
  168. #output mqtt://10.0.0.4:1883
  169. output {{ mqtt_output }}
  170. # as command line option:
  171. # [-K FILE | PATH | <tag> | <key>=<tag>] Add an expanded token or fixed tag to every output line.
  172. # If <tag> is "FILE" or "PATH" an expanded token will be added.
  173. # The <tag> can also be a GPSd URL, e.g.
  174. # -K gpsd,lat,lon" (report lat and lon keys from local gpsd)
  175. # -K loc=gpsd,lat,lon" (report lat and lon in loc object)
  176. # -K gpsd" (full json TPV report, in default "gps" object)
  177. # -K foo=gpsd://127.0.0.1:2947" (with key and address)
  178. # -K bar=gpsd,nmea" (NMEA default GPGGA report)
  179. # -K rmc=gpsd,nmea,filter='$GPRMC'" (NMEA GPRMC report)
  180. # Also <tag> can be a generic tcp address, e.g.
  181. # -K foo=tcp:localhost:4000" (read lines as TCP client)
  182. # -K bar=tcp://127.0.0.1:3000,init='subscribe tags\\r\\n'"
  183. # -K baz=tcp://127.0.0.1:5000,filter='a prefix to match'"
  184. #output_tag mytag
  185. # as command line option:
  186. # [-C] native|si|customary Convert units in decoded output.
  187. # default is "native"
  188. #convert native
  189. # as command line option:
  190. # [-T] specify number of seconds to run
  191. #duration 0
  192. # as command line option:
  193. # [-E hop | quit] Hop/Quit after outputting successful event(s)
  194. #stop_after_successful_events false
  195. ## Protocols to enable (command line option "-R")
  196. protocol 1 # Silvercrest Remote Control
  197. protocol 2 # Rubicson, TFA 30.3197 or InFactory PT-310 Temperature Sensor
  198. protocol 3 # Prologue, FreeTec NC-7104, NC-7159-675 temperature sensor
  199. protocol 4 # Waveman Switch Transmitter
  200. # protocol 6 # ELV EM 1000
  201. # protocol 7 # ELV WS 2000
  202. protocol 8 # LaCrosse TX Temperature / Humidity Sensor
  203. protocol 10 # Acurite 896 Rain Gauge
  204. protocol 11 # Acurite 609TXC Temperature and Humidity Sensor
  205. protocol 12 # Oregon Scientific Weather Sensor
  206. # protocol 13 # Mebus 433
  207. # protocol 14 # Intertechno 433
  208. protocol 15 # KlikAanKlikUit Wireless Switch
  209. protocol 16 # AlectoV1 Weather Sensor (Alecto WS3500 WS4500 Ventus W155/W044 Oregon)
  210. protocol 17 # Cardin S466-TX2
  211. protocol 18 # Fine Offset Electronics, WH2, WH5, Telldus Temperature/Humidity/Rain Sensor
  212. protocol 19 # Nexus, FreeTec NC-7345, NX-3980, Solight TE82S, TFA 30.3209 temperature/humidity sensor
  213. protocol 20 # Ambient Weather F007TH, TFA 30.3208.02, SwitchDocLabs F016TH temperature sensor
  214. protocol 21 # Calibeur RF-104 Sensor
  215. protocol 22 # X10 RF
  216. protocol 23 # DSC Security Contact
  217. # protocol 24 # Brennenstuhl RCS 2044
  218. protocol 25 # Globaltronics GT-WT-02 Sensor
  219. protocol 26 # Danfoss CFR Thermostat
  220. protocol 29 # Chuango Security Technology
  221. protocol 30 # Generic Remote SC226x EV1527
  222. protocol 31 # TFA-Twin-Plus-30.3049, Conrad KW9010, Ea2 BL999
  223. protocol 32 # Fine Offset Electronics WH1080/WH3080 Weather Station
  224. protocol 33 # WT450, WT260H, WT405H
  225. protocol 34 # LaCrosse WS-2310 / WS-3600 Weather Station
  226. protocol 35 # Esperanza EWS
  227. protocol 36 # Efergy e2 classic
  228. # protocol 37 # Inovalley kw9015b, TFA Dostmann 30.3161 (Rain and temperature sensor)
  229. protocol 38 # Generic temperature sensor 1
  230. protocol 39 # WG-PB12V1 Temperature Sensor
  231. protocol 40 # Acurite 592TXR Temp/Humidity, 592TX Temp, 5n1 Weather Station, 6045 Lightning, 899 Rain, 3N1, Atlas
  232. protocol 41 # Acurite 986 Refrigerator / Freezer Thermometer
  233. protocol 42 # HIDEKI TS04 Temperature, Humidity, Wind and Rain Sensor
  234. protocol 43 # Watchman Sonic / Apollo Ultrasonic / Beckett Rocket oil tank monitor
  235. protocol 44 # CurrentCost Current Sensor
  236. protocol 45 # emonTx OpenEnergyMonitor
  237. protocol 46 # HT680 Remote control
  238. protocol 47 # Conrad S3318P, FreeTec NC-5849-913 temperature humidity sensor
  239. protocol 48 # Akhan 100F14 remote keyless entry
  240. protocol 49 # Quhwa
  241. protocol 50 # OSv1 Temperature Sensor
  242. protocol 51 # Proove / Nexa / KlikAanKlikUit Wireless Switch
  243. protocol 52 # Bresser Thermo-/Hygro-Sensor 3CH
  244. protocol 53 # Springfield Temperature and Soil Moisture
  245. protocol 54 # Oregon Scientific SL109H Remote Thermal Hygro Sensor
  246. protocol 55 # Acurite 606TX Temperature Sensor
  247. protocol 56 # TFA pool temperature sensor
  248. protocol 57 # Kedsum Temperature & Humidity Sensor, Pearl NC-7415
  249. protocol 58 # Blyss DC5-UK-WH
  250. protocol 59 # Steelmate TPMS
  251. protocol 60 # Schrader TPMS
  252. # protocol 61 # LightwaveRF
  253. # protocol 62 # Elro DB286A Doorbell
  254. protocol 63 # Efergy Optical
  255. # protocol 64 # Honda Car Key
  256. protocol 67 # Radiohead ASK
  257. protocol 68 # Kerui PIR / Contact Sensor
  258. protocol 69 # Fine Offset WH1050 Weather Station
  259. protocol 70 # Honeywell Door/Window Sensor, 2Gig DW10/DW11, RE208 repeater
  260. protocol 71 # Maverick ET-732/733 BBQ Sensor
  261. # protocol 72 # RF-tech
  262. protocol 73 # LaCrosse TX141-Bv2, TX141TH-Bv2, TX141-Bv3, TX141W, TX145wsdth, (TFA, ORIA) sensor
  263. protocol 74 # Acurite 00275rm,00276rm Temp/Humidity with optional probe
  264. protocol 75 # LaCrosse TX35DTH-IT, TFA Dostmann 30.3155 Temperature/Humidity sensor
  265. protocol 76 # LaCrosse TX29IT, TFA Dostmann 30.3159.IT Temperature sensor
  266. protocol 77 # Vaillant calorMatic VRT340f Central Heating Control
  267. protocol 78 # Fine Offset Electronics, WH25, WH32B, WH24, WH65B, HP1000, Misol WS2320 Temperature/Humidity/Pressure Sensor
  268. protocol 79 # Fine Offset Electronics, WH0530 Temperature/Rain Sensor
  269. protocol 80 # IBIS beacon
  270. protocol 81 # Oil Ultrasonic STANDARD FSK
  271. protocol 82 # Citroen TPMS
  272. protocol 83 # Oil Ultrasonic STANDARD ASK
  273. protocol 84 # Thermopro TP11 Thermometer
  274. protocol 85 # Solight TE44/TE66, EMOS E0107T, NX-6876-917
  275. protocol 86 # Wireless Smoke and Heat Detector GS 558
  276. protocol 87 # Generic wireless motion sensor
  277. protocol 88 # Toyota TPMS
  278. protocol 89 # Ford TPMS
  279. protocol 90 # Renault TPMS
  280. protocol 91 # inFactory, nor-tec, FreeTec NC-3982-913 temperature humidity sensor
  281. protocol 92 # FT-004-B Temperature Sensor
  282. protocol 93 # Ford Car Key
  283. protocol 94 # Philips outdoor temperature sensor (type AJ3650)
  284. protocol 95 # Schrader TPMS EG53MA4, PA66GF35
  285. protocol 96 # Nexa
  286. protocol 97 # ThermoPro TP08/TP12/TP20 thermometer
  287. protocol 98 # GE Color Effects
  288. protocol 99 # X10 Security
  289. protocol 100 # Interlogix GE UTC Security Devices
  290. # protocol 101 # Dish remote 6.3
  291. protocol 102 # SimpliSafe Home Security System (May require disabling automatic gain for KeyPad decodes)
  292. protocol 103 # Sensible Living Mini-Plant Moisture Sensor
  293. protocol 104 # Wireless M-Bus, Mode C&T, 100kbps (-f 868.95M -s 1200k)
  294. protocol 105 # Wireless M-Bus, Mode S, 32.768kbps (-f 868.3M -s 1000k)
  295. # protocol 106 # Wireless M-Bus, Mode R, 4.8kbps (-f 868.33M)
  296. # protocol 107 # Wireless M-Bus, Mode F, 2.4kbps
  297. protocol 108 # Hyundai WS SENZOR Remote Temperature Sensor
  298. protocol 109 # WT0124 Pool Thermometer
  299. protocol 110 # PMV-107J (Toyota) TPMS
  300. protocol 111 # Emos TTX201 Temperature Sensor
  301. protocol 112 # Ambient Weather TX-8300 Temperature/Humidity Sensor
  302. protocol 113 # Ambient Weather WH31E Thermo-Hygrometer Sensor, EcoWitt WH40 rain gauge
  303. protocol 114 # Maverick et73
  304. protocol 115 # Honeywell ActivLink, Wireless Doorbell
  305. protocol 116 # Honeywell ActivLink, Wireless Doorbell (FSK)
  306. # protocol 117 # ESA1000 / ESA2000 Energy Monitor
  307. # protocol 118 # Biltema rain gauge
  308. protocol 119 # Bresser Weather Center 5-in-1
  309. protocol 120 # Digitech XC-0324 / AmbientWeather FT005TH temp/hum sensor
  310. protocol 121 # Opus/Imagintronix XT300 Soil Moisture
  311. # protocol 122 # FS20
  312. # protocol 123 # Jansite TPMS Model TY02S
  313. protocol 124 # LaCrosse/ELV/Conrad WS7000/WS2500 weather sensors
  314. protocol 125 # TS-FT002 Wireless Ultrasonic Tank Liquid Level Meter With Temperature Sensor
  315. protocol 126 # Companion WTR001 Temperature Sensor
  316. protocol 127 # Ecowitt Wireless Outdoor Thermometer WH53/WH0280/WH0281A
  317. protocol 128 # DirecTV RC66RX Remote Control
  318. # protocol 129 # Eurochron temperature and humidity sensor
  319. protocol 130 # IKEA Sparsnas Energy Meter Monitor
  320. protocol 131 # Microchip HCS200/HCS300 KeeLoq Hopping Encoder based remotes
  321. protocol 132 # TFA Dostmann 30.3196 T/H outdoor sensor
  322. protocol 133 # Rubicson 48659 Thermometer
  323. protocol 134 # AOK Weather Station rebrand Holman Industries iWeather WS5029, Conrad AOK-5056, Optex 990018
  324. protocol 135 # Philips outdoor temperature sensor (type AJ7010)
  325. protocol 136 # ESIC EMT7110 power meter
  326. protocol 137 # Globaltronics QUIGG GT-TMBBQ-05
  327. protocol 138 # Globaltronics GT-WT-03 Sensor
  328. protocol 139 # Norgo NGE101
  329. protocol 140 # Elantra2012 TPMS
  330. protocol 141 # Auriol HG02832, HG05124A-DCF, Rubicson 48957 temperature/humidity sensor
  331. protocol 142 # Fine Offset Electronics/ECOWITT WH51, SwitchDoc Labs SM23 Soil Moisture Sensor
  332. protocol 143 # Holman Industries iWeather WS5029 weather station (older PWM)
  333. protocol 144 # TBH weather sensor
  334. protocol 145 # WS2032 weather station
  335. protocol 146 # Auriol AFW2A1 temperature/humidity sensor
  336. protocol 147 # TFA Drop Rain Gauge 30.3233.01
  337. protocol 148 # DSC Security Contact (WS4945)
  338. protocol 149 # ERT Standard Consumption Message (SCM)
  339. # protocol 150 # Klimalogg
  340. protocol 151 # Visonic powercode
  341. protocol 152 # Eurochron EFTH-800 temperature and humidity sensor
  342. protocol 153 # Cotech 36-7959, SwitchDocLabs FT020T wireless weather station with USB
  343. protocol 154 # Standard Consumption Message Plus (SCMplus)
  344. protocol 155 # Fine Offset Electronics WH1080/WH3080 Weather Station (FSK)
  345. protocol 156 # Abarth 124 Spider TPMS
  346. protocol 157 # Missil ML0757 weather station
  347. protocol 158 # Sharp SPC775 weather station
  348. protocol 159 # Insteon
  349. protocol 160 # ERT Interval Data Message (IDM)
  350. protocol 161 # ERT Interval Data Message (IDM) for Net Meters
  351. # protocol 162 # ThermoPro-TX2 temperature sensor
  352. protocol 163 # Acurite 590TX Temperature with optional Humidity
  353. protocol 164 # Security+ 2.0 (Keyfob)
  354. protocol 165 # TFA Dostmann 30.3221.02 T/H Outdoor Sensor
  355. protocol 166 # LaCrosse Technology View LTV-WSDTH01 Breeze Pro Wind Sensor
  356. protocol 167 # Somfy RTS
  357. protocol 168 # Schrader TPMS SMD3MA4 (Subaru) 3039 (Infiniti, Nissan, Renault)
  358. # protocol 169 # Nice Flor-s remote control for gates
  359. protocol 170 # LaCrosse Technology View LTV-WR1 Multi Sensor
  360. protocol 171 # LaCrosse Technology View LTV-TH Thermo/Hygro Sensor
  361. protocol 172 # Bresser Weather Center 6-in-1, 7-in-1 indoor, soil, new 5-in-1, 3-in-1 wind gauge, Froggit WH6000, Ventus C8488A
  362. protocol 173 # Bresser Weather Center 7-in-1, Air Quality PM2.5 / PM10
  363. protocol 174 # EcoDHOME Smart Socket and MCEE Solar monitor
  364. protocol 175 # LaCrosse Technology View LTV-R1, LTV-R3 Rainfall Gauge, LTV-W1/W2 Wind Sensor
  365. protocol 176 # BlueLine Innovations Power Cost Monitor
  366. protocol 177 # Burnhard BBQ thermometer
  367. protocol 178 # Security+ (Keyfob)
  368. protocol 179 # Cavius smoke, heat and water detector
  369. protocol 180 # Jansite TPMS Model Solar
  370. protocol 181 # Amazon Basics Meat Thermometer
  371. protocol 182 # TFA Marbella Pool Thermometer
  372. protocol 183 # Auriol AHFL temperature/humidity sensor
  373. protocol 184 # Auriol AFT 77 B2 temperature sensor
  374. protocol 185 # Honeywell CM921 Wireless Programmable Room Thermostat
  375. protocol 186 # Hyundai TPMS (VDO)
  376. protocol 187 # RojaFlex shutter and remote devices
  377. protocol 188 # Marlec Solar iBoost+ sensors
  378. protocol 189 # Somfy io-homecontrol
  379. protocol 190 # Ambient Weather WH31L (FineOffset WH57) Lightning-Strike sensor
  380. protocol 191 # Markisol, E-Motion, BOFU, Rollerhouse, BF-30x, BF-415 curtain remote
  381. protocol 192 # Govee Water Leak Detector H5054, Door Contact Sensor B5023
  382. protocol 193 # Clipsal CMR113 Cent-a-meter power meter
  383. protocol 194 # Inkbird ITH-20R temperature humidity sensor
  384. protocol 195 # RainPoint soil temperature and moisture sensor
  385. protocol 196 # Atech-WS308 temperature sensor
  386. protocol 197 # Acurite Grill/Meat Thermometer 01185M
  387. # protocol 198 # EnOcean ERP1
  388. protocol 199 # Linear Megacode Garage/Gate Remotes
  389. # protocol 200 # Auriol 4-LD5661/4-LD5972/4-LD6313 temperature/rain sensors
  390. protocol 201 # Unbranded SolarTPMS for trucks
  391. protocol 202 # Funkbus / Instafunk (Berker, Gira, Jung)
  392. protocol 203 # Porsche Boxster/Cayman TPMS
  393. protocol 204 # Jasco/GE Choice Alert Security Devices
  394. protocol 205 # Telldus weather station FT0385R sensors
  395. protocol 206 # LaCrosse TX34-IT rain gauge
  396. protocol 207 # SmartFire Proflame 2 remote control
  397. protocol 208 # AVE TPMS
  398. protocol 209 # SimpliSafe Gen 3 Home Security System
  399. protocol 210 # Yale HSA (Home Security Alarm), YES-Alarmkit
  400. protocol 211 # Regency Ceiling Fan Remote (-f 303.75M to 303.96M)
  401. protocol 212 # Renault 0435R TPMS
  402. protocol 213 # Fine Offset Electronics WS80 weather station
  403. protocol 214 # EMOS E6016 weatherstation with DCF77
  404. protocol 215 # Emax W6, rebrand Altronics x7063/4, Optex 990040/50/51, Orium 13093/13123, Infactory FWS-1200, Newentor Q9, Otio 810025, Protmex PT3390A, Jula Marquant 014331/32, Weather Station or temperature/humidity sensor
  405. # protocol 216 # ANT and ANT+ devices
  406. protocol 217 # EMOS E6016 rain gauge
  407. protocol 218 # Microchip HCS200/HCS300 KeeLoq Hopping Encoder based remotes (FSK)
  408. protocol 219 # Fine Offset Electronics WH45 air quality sensor
  409. protocol 220 # Maverick XR-30 BBQ Sensor
  410. protocol 221 # Fine Offset Electronics WN34 temperature sensor
  411. protocol 222 # Rubicson Pool Thermometer 48942
  412. protocol 223 # Badger ORION water meter, 100kbps (-f 916.45M -s 1200k)
  413. protocol 224 # GEO minim+ energy monitor
  414. protocol 225 # TyreGuard 400 TPMS
  415. protocol 226 # Kia TPMS (-s 1000k)
  416. protocol 227 # SRSmith Pool Light Remote Control SRS-2C-TX (-f 915M)
  417. protocol 228 # Neptune R900 flow meters
  418. protocol 229 # WEC-2103 temperature/humidity sensor
  419. protocol 230 # Vauno EN8822C
  420. protocol 231 # Govee Water Leak Detector H5054
  421. protocol 232 # TFA Dostmann 14.1504.V2 Radio-controlled grill and meat thermometer
  422. # protocol 233 # CED7000 Shot Timer
  423. protocol 234 # Watchman Sonic Advanced / Plus, Tekelek
  424. protocol 235 # Oil Ultrasonic SMART FSK
  425. protocol 236 # Gasmate BA1008 meat thermometer
  426. protocol 237 # Flowis flow meters
  427. protocol 238 # Wireless M-Bus, Mode T, 32.768kbps (-f 868.3M -s 1000k)
  428. protocol 239 # Revolt NC-5642 Energy Meter
  429. protocol 240 # LaCrosse TX31U-IT, The Weather Channel WS-1910TWC-IT
  430. protocol 241 # EezTire E618, Carchet TPMS
  431. # protocol 242 # Baldr / RainPoint rain gauge.
  432. protocol 243 # Celsia CZC1 Thermostat
  433. protocol 244 # Fine Offset Electronics WS90 weather station
  434. # protocol 245 # ThermoPro TX-2C Thermometer and Humidity sensor
  435. protocol 246 # TFA 30.3151 Weather Station
  436. protocol 247 # Bresser water leakage
  437. # protocol 248 # Nissan TPMS
  438. protocol 249 # Bresser lightning
  439. protocol 250 # Schou 72543 Day Rain Gauge, Motonet MTX Rain, MarQuant Rain Gauge
  440. ## Flex devices (command line option "-X")
  441. # Some general decoder definitions for various devices, enable as needed.
  442. #
  443. # For details about decoder definition run "rtl_433 -X help"
  444. #
  445. # If you enable these decoders you'll likely want to add ",match=<YOUR-DEVICE-ID>"
  446. # Elro DB270 - wireless doorbell
  447. #
  448. # Device information and test files:
  449. # https://github.com/merbanan/rtl_433_tests/tree/master/tests/elro/db270/01
  450. #
  451. # Output sample:
  452. # {"time" : "2018-02-14 19:11:16", "model" : "Elro_DB270", "count" : 4, "num_rows" : 4,
  453. # "rows" : [{"len" : 25, "data" : "ebeaaa8"}, {"len" : 25, "data" : "ebeaaa8"},
  454. # {"len" : 25, "data" : "ebeaaa8"}, {"len" : 25, "data" : "ebeaaa8"}]}
  455. #
  456. #decoder n=Elro_DB270,m=OOK_PWM,s=300,l=930,r=11000,g=1500,repeats>=4,bits=25
  457. # Euroster 3000TX - programmable room thermostat
  458. #
  459. # Device information and test files:
  460. # https://github.com/merbanan/rtl_433_tests/tree/master/tests/euroster/3000tx/01
  461. #
  462. # Output sample:
  463. # {"time" : "2018-02-14 19:20:20", "model" : "Euroster_3000TX", "count" : 1, "num_rows" : 1,
  464. # "rows" : [{"len" : 32, "data" : "41150515"}]}
  465. #
  466. #decoder n=Euroster_3000TX,m=OOK_MC_ZEROBIT,s=1000,r=4800,bits=32
  467. # Byron BY series door bell
  468. #
  469. # Device information and test files:
  470. # https://github.com/merbanan/rtl_433_tests/tree/master/tests/Byron-BY101 and Byron-BY34
  471. #
  472. # Output sample:
  473. # {"time" : "@1.572864s", "model" : "doorbell#1", "count" : 25, "num_rows" : 25, "rows" : [{"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}, {"len" : 21, "data" : "e768c8"}]}
  474. #decoder n=Byron_BY_Doorbell,m=OOK_PWM,s=500,l=1000,r=3300,g=1200,repeats>=4,bits=21,match={2}0x3
  475. # Kerui alarm system (PIR and door sensors)
  476. # short is 333 us
  477. # long is 972 us
  478. # packet gap 11000 us
  479. #decoder n=Kerui,m=OOK_PWM,s=333,l=972,r=11000,g=1100,bits=25,invert,get={20}:state,get=@20:{4}:event:[10:pir 14:open 7:close 11:tamper 15:battery_low]
  480. # Golden Security GS-WDS07 door and window sensor
  481. # short is 476 us + 1344 us
  482. # long is 1364 us + 448 us
  483. # packet gap 13972 us
  484. #decoder n=gswds07,m=OOK_PWM,s=476,l=1364,r=15000,g=1600,bits>=24,bits<=25,invert
  485. # Generic SCV2260 4-button remote (see rtl_433_tests/tests/generic_remote/01)
  486. # short is 472 us + 1412 us
  487. # long is 1428 us + 472 us
  488. #decoder n=generic_remote_01,m=OOK_PWM,s=472,l=1428,r=1800,g=1600,bits=25,invert,match=13cd,get=@16:{8}:event:[192:arm 12:disarm 3:home 48:sos]
  489. # Generic PT2260 PIR (see rtl_433_tests/tests/PT2262/01)
  490. # short is 440 us + 1536 us
  491. # long is 1428 us + 548 us
  492. # packet gap 15348 us
  493. #decoder n=pt2260_pir,m=OOK_PWM,s=440,l=1428,r=16000,g=1700,bits=25,invert,match=755555,countonly