Forked from git://github.com/merbanan/rtl_433.git
[rtl-433.git] / README
1 rtl_433, turns your Realtek RTL2832 based DVB dongle into a 433.92MHz generic data receiver
2 ======================================================================
3
4 Installation instructions:
5
6 cd rtl_433/
7 mkdir build
8 cd build
9 cmake ../
10 make
11
12
13 Running:
14
15 ./rtl_433 -h
16
17 Usage:  [-d device_index (default: 0)]
18     [-g gain (default: 0 for auto)]
19     [-a analyze mode, print a textual description of the signal]
20     [-l change the detection level used to determine pulses (0-32000) default 10000]
21     [-f change the receive frequency, default is 433.92MHz]
22     [-S force sync output (default: async)]
23     [-r read data from file instead of from a receiver]
24     filename (a '-' dumps samples to stdout)
25
26
27 ./rtl_433 -a will run in analyze mode and you will get a text log of the received signal.
28 ./rtl_433 -a file_name will save the demodulated signal in a file. The format of the file is 48kHz 16 bit samples.
29 ./rtl_433 will run the software in receive mode. Some sensor data can be receviced.
30
31 This software is mostly useable for developers right now.