-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconf.json
122 lines (122 loc) · 2.63 KB
/
conf.json
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"deviceID": "UMG/0001",
"influx": {
"host": "localhost",
"port": 8086
},
"mqtt": {
"broker": "localhost",
"port": 1883
},
"n2k": {
"port": "/dev/ttyS10",
"baudrate": 115200,
"udp_port": 8095,
"pgnConfigs": {
"130311": {
"for": "Environmental Parameters",
"fieldLabels": [
"Temperature",
"Atmospheric Pressure"
],
"topics": [
"environment/nmea2k/temperature",
"environment/nmea2k/pressure"
]
},
"127250": {
"for": "Vessel Heading",
"fieldLabels": [
"Heading"
],
"topics": [
"control/nmea2k/heading"
]
},
"127251": {
"for": "Rate of Turn",
"fieldLabels": [
"control/nmea2k/rateOfTurn"
]
},
"129025": {
"for": "GPS Navigation",
"fieldLabels": [
"Latitude",
"Longitude"
],
"topics": [
"location/nmea2k/latitude",
"location/nmea2k/longitude"
]
},
"127245": {
"for": "Rudder",
"fieldLabels": [
"Direction Order",
"Position"
],
"topics": [
"control/nmea2k/rudder"
]
},
"127501": {
"for": "Binary Switch Bank",
"fromSource": 1,
"fieldLabels": [
"Indicator1",
"Indicator2"
],
"topics": [
"input/nmea2k/switchbank"
]
},
"127488": {
"for": "Engine Speed",
"fieldLabel": [
"Engine Speed"
],
"topics": [
"engine/nmea2k/speed"
]
},
"127489": {
"for": "Engine Parameters",
"fieldLabels": [
"Engine oil pressure",
"Engine temp.",
"Fuel rate"
],
"topics": [
"engine/nmea2k/oilPressure",
"engine/nmea2k/temperature",
"engine/nmea2k/fuelRate"
]
},
"129026": {
"for": "SOG/COG",
"fieldLabels": [
"SOG",
"COG"
],
"topics": [
"groundVelocity/nmea2k/sog",
"groundVelocity/nmea2k/cog"
]
},
"127257": {
"for": "Attitude(Yaw,Pitch,Roll)",
"fieldLabels": [
"Yaw",
"Pitch",
"Roll"
],
"topics": [
"orientation/nmea2k/yaw",
"orientation/nmea2k/pitch",
"orientation/nmea2k/roll"
]
}
}
}
}