forked from eclipse-velocitas/vehicle-app-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAppManifest.json
54 lines (54 loc) · 1.75 KB
/
AppManifest.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
{
"manifestVersion": "v3",
"name": "dogmode",
"interfaces": [
{
"type": "vehicle-signal-interface",
"config": {
"src": "https://github.com/COVESA/vehicle_signal_specification/releases/download/v3.0/vss_rel_3.0.json",
"datapoints": {
"required": [
{
"path": "Vehicle.Cabin.AmbientAirTemperature",
"access": "read"
},
{
"path": "Vehicle.Cabin.DogMode",
"access": "read"
},
{
"path": "Vehicle.Cabin.DogModeTemperature",
"access": "read"
},
{
"path": "Vehicle.Powertrain.Battery.StateOfCharge.Current",
"access": "read"
}
]
}
}
},
{
"type": "grpc-interface",
"config": {
"src": "https://github.com/eclipse/kuksa.val.services/blob/v0.2.0/hvac_service/proto/sdv/edge/comfort/hvac/v1/hvac.proto",
"required": {
"methods": [
"SetAcStatus",
"SetTemperature"
]
}
}
},
{
"type": "pubsub",
"config": {
"writes": [
"dogmode/ambientAirTemperature",
"dogmode/stateOfCharge",
"dogmode/display"
]
}
}
]
}