-
-
Notifications
You must be signed in to change notification settings - Fork 157
/
volare-serial-settings.json
61 lines (57 loc) · 1.24 KB
/
volare-serial-settings.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
{
"vessel": {
"name": "Volare",
"brand": "Friendship",
"type": "22",
"uuid": "10101010",
"dimensions": {
"length": 7,
"width": 2.5,
"mast": 10,
"depthTransducer": 0.5,
"keel": 1.5
}
},
"interfaces": {},
"pipedProviders": [
{
"id": "nmeaFromFile",
"pipeElements": [
{
"type": "providers/serialport",
"options": {
"device": "/dev/ttyUSB0",
"baudrate": 4800,
"toStdout": ["nmea0183out1", "nmea0183out2"]
},
"optionMappings": [
{
"fromAppProperty": "argv.nmeadevice",
"toOption": "device"
},
{
"fromAppProperty": "argv.nmeabaudrate",
"toOption": "baudrate"
}
]
},
{
"type": "providers/nmea0183-signalk",
"options": {
"sentenceEvent": "nmea0183in1"
},
"optionMappings": [
{
"fromAppProperty": "selfId",
"toOption": "selfId"
},
{
"fromAppProperty": "selfType",
"toOption": "selfType"
}
]
}
]
}
]
}