-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdatapoints.json
113 lines (113 loc) · 2.28 KB
/
datapoints.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
{
"Datapoints": [
{
"name": "test",
"group": "DefaultGroup",
"id": 1,
"type": "int32_t",
"default": 4211,
"access": "READWRITE",
"namespace": "Testify",
"version": "1.0.1",
"description": "Test for a int32_t value"
},
{
"name": "est2",
"group": "DefaultGroup",
"id": 2,
"type": "int32_t",
"access": "READWRITE",
"namespace": "Testify",
"version": "1.0.1"
},
{
"name": "test3",
"group": "DefaultGroup",
"id": 3,
"type": "int32_t",
"access": "READWRITE",
"version": "1.0.1"
},
{
"name": "test4",
"group": "CyclicGroup",
"id": 4,
"type": "Temperature",
"default": {
"value": 123.0,
"raw": 5555
},
"access": "READWRITE",
"version": "1.0.1"
},
{
"name": "arrayTest",
"group": "CyclicGroup",
"id": 5,
"type": "Temperature",
"arraySize": 10,
"default": {
"value": 123.0,
"raw": 5555
},
"access": "READWRITE",
"version": "1.0.1"
},
{
"name": "arrayTest2",
"group": "DefaultGroup",
"id": 12,
"type": "int32_t",
"arraySize": 10,
"default": 1234,
"access": "READWRITE",
"namespace": "Testify",
"version": "1.0.1"
},
{
"name": "errorCode",
"group": "DefaultGroup",
"id": 24,
"type": "ErrorStates",
"default": "None",
"access": "READWRITE",
"version": "1.0.1"
},
{
"name": "TestAlias",
"group": "DefaultGroup",
"id": 28,
"type": "AliasTypeUint32t",
"access": "READWRITE",
"version": "1.0.1"
},
{
"name": "errorCodeArray",
"group": "DefaultGroup",
"id": 25,
"type": "ErrorStates",
"arraySize": 5,
"default": "None",
"access": "READWRITE",
"version": "1.0.1"
},
{
"name": "structInStructType",
"group": "DefaultGroup",
"id": 42,
"type": "Environment",
"access": "READWRITE",
"version": "1.0.1",
"default": {
"internal": {
"value": 111.1,
"raw": 111
},
"external": {
"value": 222.2,
"raw": 222
}
}
}
]
}