-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsdr.txt
53 lines (39 loc) · 1.13 KB
/
sdr.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# getting live preview
rtl_433
# witj JSON output
rtl_433 -F JSON
# ^^ 433MHz is where typical house-hold thermometers transmit
# GUI for visualization / waterfall plot
apt install cubicsdr
CubicSDR
# alt:
SDR++
# (W)M-bus (electricity / water / gas meters)
step by step instructions: https://dev.to/ordigital/zdalny-odczyt-licznika-amiplus-z-hanplus-m-bus-15o1
projects / libs:
* https://github.com/xaelsouth/rtl-wmbus
* https://github.com/wmbusmeters/wmbusmeters
usually running ~868.9MHz
# analog PMR
* around 446.0MHz - 446.2MHz
* 12.5kHz channel spacing
* (NB)FM modulation
* ~6kHz bandwidth is enough
### UNSORTED (WIP)
# random
apt install rtl-sdr
apt install gnuradio
# Chris
gqrx-sdr - Software defined radio receiver
multimon-ng - digital radio transmission decoder
https://konektor5000.pl/index.php?p4657,yard-stick-one-great-scott-gadgets-nadajnik-odbiornik-sdr-3-pasmowy-np-do-radio-hackingu
https://greatscottgadgets.com/yardstickone/
https://www.gqrx.dk/
```
git clone https://github.com/osmocom/rtl-sdr.git
cd rtl-sdr
mkdir build && cd $_
cmake -DINSTALL_UDEV_RULES=ON -DDETACH_KERNEL_DRIVER=ON ..
make
sudo make install
```