Skip to content

Commit

Permalink
minor: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
zuckschwerdt committed Oct 6, 2023
1 parent f22b757 commit 7a836e3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ See [CONTRIBUTING.md](./docs/CONTRIBUTING.md).

```
A "rtl_433.conf" file is searched in "./", XDG_CONFIG_HOME e.g. "$HOME/.config/rtl_433/",
"/usr/local/etc/rtl_433/", "/etc/rtl_433/", then command line args will be parsed in order.
= General options =
[-V] Output the version string and exit
[-v] Increase verbosity (can be used multiple times).
Expand Down Expand Up @@ -328,7 +330,7 @@ See [CONTRIBUTING.md](./docs/CONTRIBUTING.md).
[242]* Baldr / RainPoint rain gauge.
[243] Celsia CZC1 Thermostat
[244] Fine Offset Electronics WS90 weather station
[245]* ThermoPro TX-2C Thermometer
[245]* ThermoPro TX-2C Thermometer and Humidity sensor
[246] TFA 30.3151 Weather Station
* Disabled by default, use -R n or a conf file to enable
Expand Down
3 changes: 2 additions & 1 deletion conf/rtl_433.example.conf
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,8 @@ stop_after_successful_events false
# protocol 242 # Baldr / RainPoint rain gauge.
protocol 243 # Celsia CZC1 Thermostat
protocol 244 # Fine Offset Electronics WS90 weather station
# protocol 245 # ThermoPro TX-2C Thermometer
# protocol 245 # ThermoPro TX-2C Thermometer and Humidity sensor
protocol 246 # TFA 30.3151 Weather Station

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

Expand Down
4 changes: 4 additions & 0 deletions man/man1/rtl_433.1
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ PlutoSDR, HackRF One (using SoapySDR drivers), as well as SoapyRemote.
A summary of options is included below.
Detailed information on some options follows.
.\" body


A "rtl_433.conf" file is searched in "./", XDG_CONFIG_HOME e.g. "$HOME/.config/rtl_433/",
"/usr/local/etc/rtl_433/", "/etc/rtl_433/", then command line args will be parsed in order.
.SS "General options"
.TP
[ \fB\-V\fI\fP ]
Expand Down
3 changes: 2 additions & 1 deletion src/devices/simplisafe.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ static int ss_sensor_parser(r_device *decoder, bitbuffer_t *bitbuffer, int row)
} else if (state == 3) {
snprintf(extradata, sizeof(extradata), "Alarm Off");
} else {
snprintf(extradata, sizeof(extradata), "");
//snprintf(extradata, sizeof(extradata), "");
*extradata = '\0';
}

/* clang-format off */
Expand Down

0 comments on commit 7a836e3

Please sign in to comment.