This repository was archived by the owner on Jan 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
88 lines (85 loc) · 2.39 KB
/
config.js
File metadata and controls
88 lines (85 loc) · 2.39 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// *******************************************************************************************
// ** config.js
// **
// ** This is and example configuration file for ARSCTL.
// **
// **
// ** (c) Tobias Wellnitz (DH1TW), 2015
// ********************************************************************************************
settings = {
webServer : {
ip: "127.0.0.1", // normally doesn't need to be changed
port : 4000 // change as you wish
},
socketServer : {
ip : "127.0.0.1", // normally doesn't need to be changed
port : 4001 // change as you wish
},
wintest : {
port : 9871,
send: "255.255.255.255",
rcv: "0.0.0.0"
},
rotators : [
{
name: "10m Yagi",
device: "/dev/ttys005",
order: 1,
band : ["10m"],
wtAuto: true,
tcpPort: 5001,
options : {
baudrate: 57600,
parser: serialport.parsers.readline("\r")
}
},
{
name: "15m Yagi",
order: 2,
band : ["15m"],
wtAuto: true,
device: "/dev/ttys008",
tcpPort: 5002,
options : {
baudrate: 57600,
parser: serialport.parsers.readline("\r")
}
},
// {
// name: "20m Yagi",
// order: 3,
// band : ["20m"],
// wtAuto: true,
// device: "/dev/ttys011",
// tcpPort: 5003,
// options : {
// baudrate: 57600,
// parser: serialport.parsers.readline("\r")
// }
// },
// {
// name: "40m Yagi",
// order: 4,
// band : ["40m"],
// wtAuto: true,
// device: "/dev/ttys013",
// tcpPort: 5004,
// options : {
// baudrate: 57600,
// parser: serialport.parsers.readline("\r")
// }
// },
// {
// name: "OB11-3",
// order: 5,
// band : ["10m", "15m", "20m"],
// wtAuto: false,
// device: "/dev/ttys015",
// tcpPort: 5005,
// options : {
// baudrate: 57600,
// parser: serialport.parsers.readline("\r")
// }
// }
]
}