Fix UTC in README

This commit is contained in:
Christian W. Zuckschwerdt 2018-12-27 12:52:50 +01:00
parent d5bb623746
commit 0fa3abac87
2 changed files with 2 additions and 2 deletions

View file

@ -201,7 +201,7 @@ Some examples:
| `rtl_433 -A` | Enable pulse analyzer. Summarizes the timings of pulses, gaps, and periods. Can be used with `-R 0` to disable decoders.
| `rtl_433 -S all -T 120` | Save all detected signals (`g###_###M_###k.cu8`). Run for 2 minutes.
| `rtl_433 -K FILE -r file_name` | Read a saved data file instead of receiving live data. Tag output with filenames.
| `rtl_433 -F json -U \| mosquitto_pub -t home/rtl_433 -l` | Will pipe the output to network as JSON formatted MQTT messages. A test MQTT client can be found in `tests/mqtt_rtl_433_test.py`.
| `rtl_433 -F json -M utc \| mosquitto_pub -t home/rtl_433 -l` | Will pipe the output to network as JSON formatted MQTT messages. A test MQTT client can be found in `tests/mqtt_rtl_433_test.py`.
| `rtl_433 -f 433.53M -f 434.02M -H 15` | Will poll two frequencies with 15 seconds hop interval.

View file

@ -4,7 +4,7 @@
Example program for receiving and parsing sensor data from rtl_433 sent
as MQTT network messages. Recommended way of sending rtl_433 data on network is:
$ rtl_433 -F json -U | mosquitto_pub -t home/rtl_433 -l
$ rtl_433 -F json -M utc | mosquitto_pub -t home/rtl_433 -l
An MQTT broker e.g. 'mosquitto' must be running on local computer