22 lines
596 B
JavaScript
22 lines
596 B
JavaScript
const config = {};
|
|
|
|
config.teamspeak = {
|
|
ip: '127.0.0.1',
|
|
port: '25639',
|
|
|
|
// Key returned by the Client Query plugin in TeamSpeak. Can also be found in ~/.ts3client/clientquery.ini
|
|
// It should look something like LKT9-ZLDM-LFK0-CLSB-UDEE-2YVJ.
|
|
apiKey: '',
|
|
};
|
|
|
|
config.provider = 'flrig'; // flrig or serial
|
|
config.providerOptions = {
|
|
serial: {
|
|
port: '/dev/mhuxd/ptt1', // path to the serial port of the radio or the VSP created by mhuxd
|
|
},
|
|
flrig: {
|
|
url: 'http://127.0.0.1:12345', // URL to the FLrig XML-RPC server
|
|
},
|
|
};
|
|
|
|
export default config; |