ham_radio/config.lua
2019-12-08 19:07:18 +02:00

27 lines
627 B
Lua

ham_radio.settings = {
-- color of RDS messages
rds_color = '#607d8b',
-- interval between RDS messages (seconds)
rds_interval = 10,
-- receiver hud position
hud_pos = { x = 0.5, y = 0.8 },
-- radio frequency range
frequency = {
min = 0,
max = 9999999
},
-- range where only one transmitter is permitted
locked_frequency = {
min = 100000,
max = 9999999
},
-- sub-range of locked frequency range
beacon_frequency = {
min = 1000000,
max = 9999999
},
-- digiline config
digiline_channel = "ham_radio",
digiline_rds_channel = "ham_radio_rds",
}