|
|
|
|
@ -30,37 +30,48 @@ config_webrx: configuration options for OpenWebRX
|
|
|
|
|
(It means that you do not have to redistribute config_rtl.py and
|
|
|
|
|
config_webrx.py if you make any changes to these two configuration files,
|
|
|
|
|
and use them for running your web service with OpenWebRX.)
|
|
|
|
|
|
|
|
|
|
portions inspired by http://gephi.michalnovak.eu/config_webrx.py
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
# configuration version. please only modify if you're able to perform the associated migration steps.
|
|
|
|
|
version = 2
|
|
|
|
|
version = 3
|
|
|
|
|
|
|
|
|
|
# NOTE: you can find additional information about configuring OpenWebRX in the Wiki:
|
|
|
|
|
# https://github.com/jketterl/openwebrx/wiki/Configuration-guide
|
|
|
|
|
|
|
|
|
|
# ==== Server settings ====
|
|
|
|
|
web_port = 8073
|
|
|
|
|
max_clients = 10
|
|
|
|
|
max_clients = 20
|
|
|
|
|
|
|
|
|
|
# ==== Web GUI configuration ====
|
|
|
|
|
receiver_name = "KU2Y"
|
|
|
|
|
receiver_location = "Philadelphia, PA"
|
|
|
|
|
receiver_name = "[Callsign]"
|
|
|
|
|
receiver_location = "Budapest, Hungary"
|
|
|
|
|
receiver_asl = 200
|
|
|
|
|
receiver_admin = "ku2y@amsat.org"
|
|
|
|
|
receiver_gps = (40.0376, -75.3492)
|
|
|
|
|
receiver_gps = {"lat": 40.0376, "lon": -75.3492}
|
|
|
|
|
photo_title = "ARISS"
|
|
|
|
|
receiver_admin = "example@example.com"
|
|
|
|
|
receiver_gps = {"lat": 47.000000, "lon": 19.000000}
|
|
|
|
|
photo_title = "Panorama of Budapest from Schönherz Zoltán Dormitory"
|
|
|
|
|
# photo_desc allows you to put pretty much any HTML you like into the receiver description.
|
|
|
|
|
# The lines below should give you some examples of what's possible.
|
|
|
|
|
photo_desc = """
|
|
|
|
|
You can add your own background photo and receiver information.<br />
|
|
|
|
|
Receiver is operated by: <a href="mailto:ku2y@amsat.org">ku2y@amsat.org</a><br/>
|
|
|
|
|
Device: RTL-SDR<br />
|
|
|
|
|
Antenna: <br />
|
|
|
|
|
Website: <a href="http://ariss-radio:8073" target="_blank">http://ariss-radio:8073</a>
|
|
|
|
|
Receiver is operated by: <a href="mailto:openwebrx@localhost" target="_blank">Receiver Operator</a><br/>
|
|
|
|
|
Device: Receiver Device<br />
|
|
|
|
|
Antenna: Receiver Antenna<br />
|
|
|
|
|
Website: <a href="http://localhost" target="_blank">http://localhost</a>
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
# ==== Public receiver listings ====
|
|
|
|
|
# You can publish your receiver on online receiver directories, like https://www.receiverbook.de
|
|
|
|
|
# You will receive a receiver key from the directory that will authenticate you as the operator of this receiver.
|
|
|
|
|
# Please note that you not share your receiver keys publicly since anyone that obtains your receiver key can take over
|
|
|
|
|
# your public listing.
|
|
|
|
|
# Your receiver keys should be placed into this array:
|
|
|
|
|
receiver_keys = []
|
|
|
|
|
# If you list your receiver on multiple sites, you can place all your keys into the array above, or you can append
|
|
|
|
|
# keys to the arraylike this:
|
|
|
|
|
# receiver_keys += ["my-receiver-key"]
|
|
|
|
|
|
|
|
|
|
# If you're not sure, simply copy & paste the code you received from your listing site below this line:
|
|
|
|
|
|
|
|
|
|
# ==== DSP/RX settings ====
|
|
|
|
|
fft_fps = 9
|
|
|
|
|
fft_size = 4096 # Should be power of 2
|
|
|
|
|
@ -71,8 +82,15 @@ fft_voverlap_factor = (
|
|
|
|
|
audio_compression = "adpcm" # valid values: "adpcm", "none"
|
|
|
|
|
fft_compression = "adpcm" # valid values: "adpcm", "none"
|
|
|
|
|
|
|
|
|
|
# Tau setting for WFM (broadcast FM) deemphasis\
|
|
|
|
|
# Quote from wikipedia https://en.wikipedia.org/wiki/FM_broadcasting#Pre-emphasis_and_de-emphasis
|
|
|
|
|
# "In most of the world a 50 µs time constant is used. In the Americas and South Korea, 75 µs is used"
|
|
|
|
|
# Enable one of the following lines, depending on your location:
|
|
|
|
|
# wfm_deemphasis_tau = 75e-6 # for US and South Korea
|
|
|
|
|
wfm_deemphasis_tau = 50e-6 # for the rest of the world
|
|
|
|
|
|
|
|
|
|
digimodes_enable = True # Decoding digimodes come with higher CPU usage.
|
|
|
|
|
digimodes_fft_size = 1024
|
|
|
|
|
digimodes_fft_size = 2048
|
|
|
|
|
|
|
|
|
|
# determines the quality, and thus the cpu usage, for the ambe codec used by digital voice modes
|
|
|
|
|
# if you're running on a Raspi (up to 3B+) you'll want to leave this on 1
|
|
|
|
|
@ -116,729 +134,143 @@ Note: if you experience audio underruns while CPU usage is 100%, you can:
|
|
|
|
|
|
|
|
|
|
sdrs = {
|
|
|
|
|
"rtlsdr": {
|
|
|
|
|
"name": "RTL-SDR",
|
|
|
|
|
"type": "rtl_sdr_soapy",
|
|
|
|
|
"name": "RTL-SDR USB Stick",
|
|
|
|
|
"type": "rtl_sdr",
|
|
|
|
|
"ppm": 0,
|
|
|
|
|
# you can change this if you use an upconverter. formula is:
|
|
|
|
|
# center_freq + lfo_offset = actual frequency on the sdr
|
|
|
|
|
# "lfo_offset": 0,
|
|
|
|
|
"profiles": {
|
|
|
|
|
"wx": {
|
|
|
|
|
"name": "Weather Band",
|
|
|
|
|
"center_freq": 162350000,
|
|
|
|
|
"rf_gain": 20,
|
|
|
|
|
"samp_rate": 1000000,
|
|
|
|
|
"start_freq": 162400000,
|
|
|
|
|
"70cm": {
|
|
|
|
|
"name": "70cm Relais",
|
|
|
|
|
"center_freq": 438800000,
|
|
|
|
|
"rf_gain": 29,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 439275000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"2m": {
|
|
|
|
|
"name": "2m Ham Band",
|
|
|
|
|
"name": "2m komplett",
|
|
|
|
|
"center_freq": 145000000,
|
|
|
|
|
"rf_gain": 20,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"rf_gain": 29,
|
|
|
|
|
"samp_rate": 2048000,
|
|
|
|
|
"start_freq": 145725000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"70cm-1": {
|
|
|
|
|
"name": "70cm Ham Band 435 MHz",
|
|
|
|
|
"center_freq": 435500000,
|
|
|
|
|
"rf_gain": 20,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 4355000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"70cm-2": {
|
|
|
|
|
"name": "70cm Ham Band 438 MHz",
|
|
|
|
|
"center_freq": 438000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 437800000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"fm": {
|
|
|
|
|
"name": "FM Band",
|
|
|
|
|
"center_freq": 91000000,
|
|
|
|
|
"rf_gain": 20,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 90000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"10mv": {
|
|
|
|
|
"name": "10m Band",
|
|
|
|
|
"center_freq": 28000000,
|
|
|
|
|
"rf_gain": 20,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 28500000,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
"airspy": {
|
|
|
|
|
"name": "Airspy HF+",
|
|
|
|
|
"type": "airspyhf",
|
|
|
|
|
"ppm": 0,
|
|
|
|
|
"rf_gain": "auto",
|
|
|
|
|
"profiles": {
|
|
|
|
|
"20m": {
|
|
|
|
|
"name": "20m",
|
|
|
|
|
"center_freq": 14150000,
|
|
|
|
|
"samp_rate": 384000,
|
|
|
|
|
"start_freq": 14070000,
|
|
|
|
|
"start_mod": "usb",
|
|
|
|
|
},
|
|
|
|
|
"6m": {
|
|
|
|
|
"name": "6m Band",
|
|
|
|
|
"center_freq": 51000000,
|
|
|
|
|
"rf_gain": 20,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 51000000,
|
|
|
|
|
"30m": {
|
|
|
|
|
"name": "30m",
|
|
|
|
|
"center_freq": 10125000,
|
|
|
|
|
"samp_rate": 192000,
|
|
|
|
|
"start_freq": 10142000,
|
|
|
|
|
"start_mod": "usb",
|
|
|
|
|
},
|
|
|
|
|
"108MHz": {
|
|
|
|
|
"name": "108 MHz",
|
|
|
|
|
"center_freq": 108000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 108000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"110MHz": {
|
|
|
|
|
"name": "110 MHz",
|
|
|
|
|
"center_freq": 110000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 110000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"112MHz": {
|
|
|
|
|
"name": "112 MHz",
|
|
|
|
|
"center_freq": 112000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 112000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"114MHz": {
|
|
|
|
|
"name": "114 MHz",
|
|
|
|
|
"center_freq": 114000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 114000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"116mhz": {
|
|
|
|
|
"name": "116 MHz",
|
|
|
|
|
"center_freq": 116000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 116000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"118mhz": {
|
|
|
|
|
"name": "118 MHz Air Band",
|
|
|
|
|
"center_freq": 118000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 118000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"120mhz": {
|
|
|
|
|
"name": "120 MHz Air Band",
|
|
|
|
|
"center_freq": 120000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 120000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"122mhz": {
|
|
|
|
|
"name": "122 MHz Air Band",
|
|
|
|
|
"center_freq": 122000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 122000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"124mhz": {
|
|
|
|
|
"name": "124 MHz Air Band",
|
|
|
|
|
"center_freq": 124000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 124000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"126mhz": {
|
|
|
|
|
"name": "126 MHz Air Band",
|
|
|
|
|
"center_freq": 126000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 126000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"128mhz": {
|
|
|
|
|
"name": "126 MHz Air Band",
|
|
|
|
|
"center_freq": 128000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 128000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"130mhz": {
|
|
|
|
|
"name": "130 MHz Air Band",
|
|
|
|
|
"center_freq": 130000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 130000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"132mhz": {
|
|
|
|
|
"name": "132 MHz Air Band",
|
|
|
|
|
"center_freq": 132000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 132000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"134mhz": {
|
|
|
|
|
"name": "134 MHz Air Band",
|
|
|
|
|
"center_freq": 134000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 134000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"136mhz": {
|
|
|
|
|
"name": "136 MHz Air Band",
|
|
|
|
|
"center_freq": 136000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 136000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"138mhz": {
|
|
|
|
|
"name": "138 MHz NOAA Weather Satellite Band",
|
|
|
|
|
"center_freq": 138000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 138000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"140mhz": {
|
|
|
|
|
"name": "140 MHz",
|
|
|
|
|
"center_freq": 140000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 140000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"142mhz": {
|
|
|
|
|
"name": "142 MHz",
|
|
|
|
|
"center_freq": 142000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 142000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"144mhz": {
|
|
|
|
|
"name": "144 MHz Ham Band",
|
|
|
|
|
"center_freq": 144000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 144000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"146mhz": {
|
|
|
|
|
"name": "146 MHz Ham Band",
|
|
|
|
|
"center_freq": 146000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 146000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"148mhz": {
|
|
|
|
|
"name": "148 MHz Ham Band",
|
|
|
|
|
"center_freq": 148000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 148000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"150mhz": {
|
|
|
|
|
"name": "150 MHz",
|
|
|
|
|
"center_freq": 150000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 150000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"152mhz": {
|
|
|
|
|
"name": "152 MHz",
|
|
|
|
|
"center_freq": 152000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 152000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"154mhz": {
|
|
|
|
|
"name": "154 MHz",
|
|
|
|
|
"center_freq": 154000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 154000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"156mhz": {
|
|
|
|
|
"name": "156 MHz",
|
|
|
|
|
"center_freq": 156000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 156100000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"158mhz": {
|
|
|
|
|
"name": "158 MHz",
|
|
|
|
|
"center_freq": 158000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 158000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"160mhz": {
|
|
|
|
|
"name": "160 MHz",
|
|
|
|
|
"center_freq": 160000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 160000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"162mhz": {
|
|
|
|
|
"name": "162 MHz Weather Band",
|
|
|
|
|
"center_freq": 162000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 162000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"164mhz": {
|
|
|
|
|
"name": "164 MHz",
|
|
|
|
|
"center_freq": 164000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 164000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"166mhz": {
|
|
|
|
|
"name": "166 MHz",
|
|
|
|
|
"center_freq": 166000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 166000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"168mhz": {
|
|
|
|
|
"name": "168 MHz",
|
|
|
|
|
"center_freq": 168000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 168000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"170mhz": {
|
|
|
|
|
"name": "170 MHz",
|
|
|
|
|
"center_freq": 170000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 170000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"172mhz": {
|
|
|
|
|
"name": "172 MHz",
|
|
|
|
|
"center_freq": 172000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 172000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"174mhz": {
|
|
|
|
|
"name": "174 MHz",
|
|
|
|
|
"center_freq": 174000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 174000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"420mhz": {
|
|
|
|
|
"name": "420 MHz 70cm Ham Band",
|
|
|
|
|
"center_freq": 420000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 420000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"422mhz": {
|
|
|
|
|
"name": "422 MHz 70cm Ham Band",
|
|
|
|
|
"center_freq": 422000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 422000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"424mhz": {
|
|
|
|
|
"name": "424 MHz 70cm Ham Band",
|
|
|
|
|
"center_freq": 424000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 424000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"426mhz": {
|
|
|
|
|
"name": "426 MHz 70cm Ham Band",
|
|
|
|
|
"center_freq": 426000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 426000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"428mhz": {
|
|
|
|
|
"name": "426 MHz 70cm Ham Band",
|
|
|
|
|
"center_freq": 428000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 428000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"430mhz": {
|
|
|
|
|
"name": "430 MHz 70cm Ham Band",
|
|
|
|
|
"center_freq": 430000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 430000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"432mhz": {
|
|
|
|
|
"name": "432 MHz 70cm Ham Band",
|
|
|
|
|
"center_freq": 432000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 432000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"434mhz": {
|
|
|
|
|
"name": "434 MHz 70cm Ham Band",
|
|
|
|
|
"center_freq": 434000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 434000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"436mhz": {
|
|
|
|
|
"name": "436 MHz 70cm Ham Band",
|
|
|
|
|
"center_freq": 436000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 436000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"438mhz": {
|
|
|
|
|
"name": "438 MHz 70cm Ham Band",
|
|
|
|
|
"center_freq": 438000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 438000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"440mhz": {
|
|
|
|
|
"name": "440 MHz 70cm Ham Band",
|
|
|
|
|
"center_freq": 440000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 440000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"446mhz": {
|
|
|
|
|
"name": "446 MHz",
|
|
|
|
|
"center_freq": 446000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 446000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"460mhz": {
|
|
|
|
|
"name": "460 MHz",
|
|
|
|
|
"center_freq": 460000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 460000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"462mhz": {
|
|
|
|
|
"name": "462 MHz FRS/GMRS",
|
|
|
|
|
"center_freq": 462000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 462000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"467mhz": {
|
|
|
|
|
"name": "467 MHz FRS/GMRS",
|
|
|
|
|
"center_freq": 467000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 467000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"860mhz": {
|
|
|
|
|
"name": "860 MHz",
|
|
|
|
|
"center_freq": 860000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 860000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"862mhz": {
|
|
|
|
|
"name": "862 MHz",
|
|
|
|
|
"center_freq": 862000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 862000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"864mhz": {
|
|
|
|
|
"name": "864 MHz",
|
|
|
|
|
"center_freq": 864000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 864000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"866mhz": {
|
|
|
|
|
"name": "866 MHz",
|
|
|
|
|
"center_freq": 866000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 866000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"868mhz": {
|
|
|
|
|
"name": "868 MHz SRD Band",
|
|
|
|
|
"center_freq": 868000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 868000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"870mhz": {
|
|
|
|
|
"name": "870 MHz",
|
|
|
|
|
"center_freq": 870000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 870000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"915mhz": {
|
|
|
|
|
"name": "915 MHz ISM Band",
|
|
|
|
|
"center_freq": 915000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 915000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"1090mhz": {
|
|
|
|
|
"name": "1090 MHz",
|
|
|
|
|
"center_freq": 1090000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 1090000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"1880mhz": {
|
|
|
|
|
"name": "1880 MHz",
|
|
|
|
|
"center_freq": 1880000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 1880000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"1882mhz": {
|
|
|
|
|
"name": "1882 MHz",
|
|
|
|
|
"center_freq": 1882000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 1882000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"1884mhz": {
|
|
|
|
|
"name": "1884 MHz",
|
|
|
|
|
"center_freq": 1884000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 1884000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"1886mhz": {
|
|
|
|
|
"name": "1886 MHz",
|
|
|
|
|
"center_freq": 1886000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 1886000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"1888mhz": {
|
|
|
|
|
"name": "1888 MHz",
|
|
|
|
|
"center_freq": 1888000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 1888000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"1890mhz": {
|
|
|
|
|
"name": "1890 MHz",
|
|
|
|
|
"center_freq": 1890000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 1890000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"1892mhz": {
|
|
|
|
|
"name": "1892 MHz",
|
|
|
|
|
"center_freq": 1892000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 1892000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"1894mhz": {
|
|
|
|
|
"name": "1894 MHz",
|
|
|
|
|
"center_freq": 1894000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 1894000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"1896mhz": {
|
|
|
|
|
"name": "1896 MHz",
|
|
|
|
|
"center_freq": 1896000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 1896000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"1898mhz": {
|
|
|
|
|
"name": "1898 MHz",
|
|
|
|
|
"center_freq": 1898000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 1898000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"1900mhz": {
|
|
|
|
|
"name": "1900 MHz",
|
|
|
|
|
"center_freq": 1900000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 1900000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"23cm": {
|
|
|
|
|
"name": "23cm Ham Band",
|
|
|
|
|
"center_freq": 1270000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 1270000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"13cm": {
|
|
|
|
|
"name": "13cm Ham Band",
|
|
|
|
|
"center_freq": 2370000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 2370000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
},
|
|
|
|
|
"9cm": {
|
|
|
|
|
"name": "9cm Band",
|
|
|
|
|
"center_freq": 3440000000,
|
|
|
|
|
"rf_gain": 30,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 3440000000,
|
|
|
|
|
"start_mod": "nfm",
|
|
|
|
|
"40m": {
|
|
|
|
|
"name": "40m",
|
|
|
|
|
"center_freq": 7100000,
|
|
|
|
|
"samp_rate": 256000,
|
|
|
|
|
"start_freq": 7070000,
|
|
|
|
|
"start_mod": "lsb",
|
|
|
|
|
},
|
|
|
|
|
"10m": {
|
|
|
|
|
"name": "10m Ham Band HF",
|
|
|
|
|
"center_freq": 29150000,
|
|
|
|
|
"rf_gain": 10,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 28283000,
|
|
|
|
|
"start_mod": "usb",
|
|
|
|
|
"direct_sampling": 2,
|
|
|
|
|
"80m": {
|
|
|
|
|
"name": "80m",
|
|
|
|
|
"center_freq": 3650000,
|
|
|
|
|
"samp_rate": 384000,
|
|
|
|
|
"start_freq": 3570000,
|
|
|
|
|
"start_mod": "lsb",
|
|
|
|
|
},
|
|
|
|
|
"19m": {
|
|
|
|
|
"name": "19m Broadcast Band HF",
|
|
|
|
|
"center_freq": 16000000,
|
|
|
|
|
"rf_gain": 10,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 15400000,
|
|
|
|
|
"49m": {
|
|
|
|
|
"name": "49m Broadcast",
|
|
|
|
|
"center_freq": 6050000,
|
|
|
|
|
"samp_rate": 384000,
|
|
|
|
|
"start_freq": 6070000,
|
|
|
|
|
"start_mod": "am",
|
|
|
|
|
"direct_sampling": 2,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
"sdrplay": {
|
|
|
|
|
"name": "SDRPlay RSP2",
|
|
|
|
|
"type": "sdrplay",
|
|
|
|
|
"ppm": 0,
|
|
|
|
|
"antenna": "Antenna A",
|
|
|
|
|
"profiles": {
|
|
|
|
|
"20m": {
|
|
|
|
|
"name": "20m Ham Band HF",
|
|
|
|
|
"name": "20m",
|
|
|
|
|
"center_freq": 14150000,
|
|
|
|
|
"rf_gain": 10,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"rf_gain": 0,
|
|
|
|
|
"samp_rate": 500000,
|
|
|
|
|
"start_freq": 14070000,
|
|
|
|
|
"start_mod": "usb",
|
|
|
|
|
"direct_sampling": 2,
|
|
|
|
|
},
|
|
|
|
|
"30m": {
|
|
|
|
|
"name": "30m Ham Band HF",
|
|
|
|
|
"name": "30m",
|
|
|
|
|
"center_freq": 10125000,
|
|
|
|
|
"rf_gain": 10,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"rf_gain": 0,
|
|
|
|
|
"samp_rate": 250000,
|
|
|
|
|
"start_freq": 10142000,
|
|
|
|
|
"start_mod": "usb",
|
|
|
|
|
"direct_sampling": 2,
|
|
|
|
|
},
|
|
|
|
|
"40m": {
|
|
|
|
|
"name": "40m Ham Band HF",
|
|
|
|
|
"name": "40m",
|
|
|
|
|
"center_freq": 7100000,
|
|
|
|
|
"rf_gain": 10,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"rf_gain": 0,
|
|
|
|
|
"samp_rate": 500000,
|
|
|
|
|
"start_freq": 7070000,
|
|
|
|
|
"start_mod": "lsb",
|
|
|
|
|
"direct_sampling": 2,
|
|
|
|
|
},
|
|
|
|
|
"49m": {
|
|
|
|
|
"name": "49m Broadcast Band HF",
|
|
|
|
|
"center_freq": 6000000,
|
|
|
|
|
"rf_gain": 10,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 6070000,
|
|
|
|
|
"start_mod": "am",
|
|
|
|
|
"direct_sampling": 2,
|
|
|
|
|
},
|
|
|
|
|
"80m": {
|
|
|
|
|
"name": "80m Ham Band HF",
|
|
|
|
|
"name": "80m",
|
|
|
|
|
"center_freq": 3650000,
|
|
|
|
|
"rf_gain": 10,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"rf_gain": 0,
|
|
|
|
|
"samp_rate": 500000,
|
|
|
|
|
"start_freq": 3570000,
|
|
|
|
|
"start_mod": "lsb",
|
|
|
|
|
"direct_sampling": 2,
|
|
|
|
|
},
|
|
|
|
|
"160m": {
|
|
|
|
|
"name": "160m Band HF",
|
|
|
|
|
"center_freq": 1700000,
|
|
|
|
|
"rf_gain": 10,
|
|
|
|
|
"samp_rate": 2400000,
|
|
|
|
|
"start_freq": 1440000,
|
|
|
|
|
"49m": {
|
|
|
|
|
"name": "49m Broadcast",
|
|
|
|
|
"center_freq": 6000000,
|
|
|
|
|
"rf_gain": 0,
|
|
|
|
|
"samp_rate": 500000,
|
|
|
|
|
"start_freq": 6070000,
|
|
|
|
|
"start_mod": "am",
|
|
|
|
|
"direct_sampling": 2,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# ==== Color themes ====
|
|
|
|
|
|
|
|
|
|
# A guide is available to help you set these values: https://github.com/simonyiszk/openwebrx/wiki/Calibrating-waterfall-display-levels
|
|
|
|
|
### google turbo colormap (see: https://ai.googleblog.com/2019/08/turbo-improved-rainbow-colormap-for.html)
|
|
|
|
|
waterfall_colors = [0x30123b, 0x311542, 0x33184a, 0x341b51, 0x351e58, 0x36215f, 0x372466, 0x38266c, 0x392973, 0x3a2c79, 0x3b2f80, 0x3c3286, 0x3d358b, 0x3e3891, 0x3e3a97, 0x3f3d9c, 0x4040a2, 0x4043a7, 0x4146ac, 0x4248b1, 0x424bb6, 0x434eba, 0x4351bf, 0x4453c3, 0x4456c7, 0x4559cb, 0x455bcf, 0x455ed3, 0x4561d7, 0x4663da, 0x4666dd, 0x4669e1, 0x466be4, 0x466ee7, 0x4671e9, 0x4673ec, 0x4676ee, 0x4678f1, 0x467bf3, 0x467df5, 0x4680f7, 0x4682f9, 0x4685fa, 0x4587fc, 0x458afd, 0x448cfe, 0x448ffe, 0x4391ff, 0x4294ff, 0x4196ff, 0x3f99ff, 0x3e9bff, 0x3d9efe, 0x3ba1fd, 0x3aa3fd, 0x38a6fb, 0x36a8fa, 0x35abf9, 0x33adf7, 0x31b0f6, 0x2fb2f4, 0x2db5f2, 0x2cb7f0, 0x2ab9ee, 0x28bcec, 0x26beea, 0x25c0e7, 0x23c3e5, 0x21c5e2, 0x20c7e0, 0x1fc9dd, 0x1dccdb, 0x1cced8, 0x1bd0d5, 0x1ad2d3, 0x19d4d0, 0x18d6cd, 0x18d8cb, 0x18dac8, 0x17dbc5, 0x17ddc3, 0x17dfc0, 0x18e0be, 0x18e2bb, 0x19e3b9, 0x1ae5b7, 0x1be6b4, 0x1de8b2, 0x1ee9af, 0x20eaad, 0x22ecaa, 0x24eda7, 0x27eea4, 0x29efa1, 0x2cf09e, 0x2ff19b, 0x32f298, 0x35f394, 0x38f491, 0x3cf58e, 0x3ff68b, 0x43f787, 0x46f884, 0x4af980, 0x4efa7d, 0x51fa79, 0x55fb76, 0x59fc73, 0x5dfc6f, 0x61fd6c, 0x65fd69, 0x69fe65, 0x6dfe62, 0x71fe5f, 0x75ff5c, 0x79ff59, 0x7dff56, 0x80ff53, 0x84ff50, 0x88ff4e, 0x8bff4b, 0x8fff49, 0x92ff46, 0x96ff44, 0x99ff42, 0x9cfe40, 0x9ffe3e, 0xa2fd3d, 0xa4fd3b, 0xa7fc3a, 0xaafc39, 0xacfb38, 0xaffa37, 0xb1f936, 0xb4f835, 0xb7f835, 0xb9f634, 0xbcf534, 0xbff434, 0xc1f334, 0xc4f233, 0xc6f033, 0xc9ef34, 0xcbee34, 0xceec34, 0xd0eb34, 0xd2e934, 0xd5e835, 0xd7e635, 0xd9e435, 0xdbe236, 0xdde136, 0xe0df37, 0xe2dd37, 0xe4db38, 0xe6d938, 0xe7d738, 0xe9d539, 0xebd339, 0xedd139, 0xeecf3a, 0xf0cd3a, 0xf1cb3a, 0xf3c93a, 0xf4c73a, 0xf5c53a, 0xf7c33a, 0xf8c13a, 0xf9bf39, 0xfabd39, 0xfaba38, 0xfbb838, 0xfcb637, 0xfcb436, 0xfdb135, 0xfdaf35, 0xfeac34, 0xfea933, 0xfea732, 0xfea431, 0xffa12f, 0xff9e2e, 0xff9c2d, 0xff992c, 0xfe962b, 0xfe932a, 0xfe9028, 0xfe8d27, 0xfd8a26, 0xfd8724, 0xfc8423, 0xfc8122, 0xfb7e20, 0xfb7b1f, 0xfa781e, 0xf9751c, 0xf8721b, 0xf86f1a, 0xf76c19, 0xf66917, 0xf56616, 0xf46315, 0xf36014, 0xf25d13, 0xf05b11, 0xef5810, 0xee550f, 0xed530e, 0xeb500e, 0xea4e0d, 0xe94b0c, 0xe7490b, 0xe6470a, 0xe4450a, 0xe34209, 0xe14009, 0xdf3e08, 0xde3c07, 0xdc3a07, 0xda3806, 0xd83606, 0xd63405, 0xd43205, 0xd23105, 0xd02f04, 0xce2d04, 0xcc2b03, 0xca2903, 0xc82803, 0xc62602, 0xc32402, 0xc12302, 0xbf2102, 0xbc1f01, 0xba1e01, 0xb71c01, 0xb41b01, 0xb21901, 0xaf1801, 0xac1601, 0xaa1501, 0xa71401, 0xa41201, 0xa11101, 0x9e1001, 0x9b0f01, 0x980d01, 0x950c01, 0x920b01, 0x8e0a01, 0x8b0901, 0x880801, 0x850701, 0x810602, 0x7e0502, 0x7a0402]
|
|
|
|
|
|
|
|
|
|
### original theme by teejez:
|
|
|
|
|
#waterfall_colors = [0x000000, 0x0000FF, 0x00FFFF, 0x00FF00, 0xFFFF00, 0xFF0000, 0xFF00FF, 0xFFFFFF]
|
|
|
|
|
|
|
|
|
|
### default theme by teejez:
|
|
|
|
|
waterfall_colors = [0x000000FF, 0x0000FFFF, 0x00FFFFFF, 0x00FF00FF, 0xFFFF00FF, 0xFF0000FF, 0xFF00FFFF, 0xFFFFFFFF]
|
|
|
|
|
waterfall_min_level = -88 # in dB
|
|
|
|
|
waterfall_max_level = -20
|
|
|
|
|
waterfall_auto_level_margin = {"min": 5, "max": 40}
|
|
|
|
|
### old theme by HA7ILM:
|
|
|
|
|
# waterfall_colors = "[0x000000ff,0x2e6893ff, 0x69a5d0ff, 0x214b69ff, 0x9dc4e0ff, 0xfff775ff, 0xff8a8aff, 0xb20000ff]"
|
|
|
|
|
#waterfall_colors = [0x000000, 0x2e6893, 0x69a5d0, 0x214b69, 0x9dc4e0, 0xfff775, 0xff8a8a, 0xb20000]
|
|
|
|
|
# waterfall_min_level = -115 #in dB
|
|
|
|
|
# waterfall_max_level = 0
|
|
|
|
|
# waterfall_auto_level_margin = {"min": 20, "max": 30}
|
|
|
|
|
##For the old colors, you might also want to set [fft_voverlap_factor] to 0.
|
|
|
|
|
|
|
|
|
|
waterfall_min_level = -88 # in dB
|
|
|
|
|
waterfall_max_level = -20
|
|
|
|
|
waterfall_auto_level_margin = {"min": 3, "max": 10, "min_range": 50}
|
|
|
|
|
|
|
|
|
|
# Note: When the auto waterfall level button is clicked, the following happens:
|
|
|
|
|
# [waterfall_min_level] = [current_min_power_level] - [waterfall_auto_level_margin["min"]]
|
|
|
|
|
# [waterfall_max_level] = [current_max_power_level] + [waterfall_auto_level_margin["max"]]
|
|
|
|
|
@ -884,7 +316,7 @@ js8_enabled_profiles = ["normal", "slow"]
|
|
|
|
|
# JS8 decoding depth; higher value will get more results, but will also consume more cpu
|
|
|
|
|
js8_decoding_depth = 3
|
|
|
|
|
|
|
|
|
|
temporary_directory = "/tmp/openwebrx"
|
|
|
|
|
temporary_directory = "/tmp"
|
|
|
|
|
|
|
|
|
|
services_enabled = False
|
|
|
|
|
services_decoders = ["ft8", "ft4", "wspr", "packet"]
|
|
|
|
|
|