forked from t2trg/wishi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
device.yang
278 lines (244 loc) · 7.45 KB
/
device.yang
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
module device-example {
namespace "http://acklio.com";
prefix "acklio";
import acklio-youpi { prefix youpi; }
organization
"Acklio";
contact
"Editor: Alexander Pelov
<mailto:a@ackl.io>
Editor: Ivaylo Petrov
<mailto:ivaylo@ackl.io>";
description
"Example device configuration YANG module. Copyright ACKLIO 2017";
revision 2017-06-09 {
description "Initial revision.";
}
typedef mode-type {
type enumeration {
enum btn;
enum temp;
enum light;
enum door;
enum move;
enum reed;
}
}
typedef msg-type-type {
type enumeration {
enum regular;
enum btn;
enum alert;
enum modeChange;
}
}
typedef battery-level {
type decimal64 {
fraction-digits 2;
range "3 .. 4.2";
}
units "http://data.nasa.gov/qudt/owl/unit#Volt";
youpi:units-subject "http://data.nasa.gov/qudt/owl/quantity#EnergyPerElectricCharge";
}
typedef temperature {
type decimal64 {
fraction-digits 1;
range "-20..102";
}
units "http://data.nasa.gov/qudt/owl/unit#DegreeCelsius";
youpi:units-subject "http://data.nasa.gov/qudt/owl/quantity#ThermodynamicTemperature";
}
typedef temp-threshold {
type int8 {
range "-20 .. 107";
}
description "Temperature threshold in Celsius";
units "http://data.nasa.gov/qudt/owl/unit#DegreeCelsius";
youpi:units-subject "http://data.nasa.gov/qudt/owl/quantity#ThermodynamicTemperature";
}
typedef frequency-of-update {
type enumeration {
enum 10;
enum 60;
enum 360;
enum 1440;
}
units "http://data.nasa.gov/qudt/owl/unit#MinuteTime";
youpi:units-subject "http://pending.schema.org/repeatFrequency";
}
typedef accelerometer-sensitivity {
type enumeration {
enum very-little-sensitivity {
value 1049459;
}
enum not-very-sensitive {
value 524915;
}
enum standard {
value 262771;
}
enum sensitive {
value 196979;
}
enum very-sensitive {
value 262515;
}
}
description "Sensitivity of an accelerometer.";
}
typedef magnet-sensitivity {
type enumeration {
enum not-very-sensitive {
value 22;
}
enum standard {
value 50;
}
enum sensitive {
value 80;
}
}
description "Sensitivity of the magnet.";
}
typedef light-factor-type {
type enumeration {
enum 1;
enum 8;
enum 64;
enum 2014;
}
}
grouping light-type {
description "Light sensitivity of the sensor. To obtain the units in lux, multiply the base by the factor and divide by 100.";
leaf light-base {
type uint8 {
range "0..64";
}
youpi:position "relative 0..5";
}
leaf light-factor {
type light-factor-type;
description "The multiplicative factor. Note - on the wire, the values are as the numeration (0b00, 0b01, 0b10, 0b11), whereas for calculation, the factor is the face value of the enumeration (1, 8, 64, 2014)";
youpi:position "relative 6..7";
}
leaf light {
type decimal64 {
fraction-digits 2;
}
units "http://data.nasa.gov/qudt/owl/unit#Lux";
youpi:units-subject "http://data.nasa.gov/qudt/owl/quantity#LuminousFluxPerArea";
youpi:position "";
youpi:multiplier "0.01";
youpi:multiplier "light-factor";
youpi:offset "light-base";
}
}
grouping temp-precise-reed-type {
leaf temp {
type temperature;
youpi:position "16..21 | 12..15";
youpi:multiplier "0.125";
youpi:offset "-200";
}
leaf reed-state {
type boolean;
youpi:position "22";
}
}
container uplink {
leaf mode {
type mode-type;
default btn;
youpi:position "0..2";
}
leaf period {
type frequency-of-update;
default 360;
description "What is the frequency at which the node will report its values";
youpi:position "3..4";
}
leaf msg-type {
type msg-type-type;
youpi:position "5..6";
}
leaf battery {
type battery-level;
youpi:position "8..11 | 7";
youpi:multiplier "0.05";
youpi:offset "54";
}
leaf approximative-temp {
type temperature;
youpi:position "12..15";
youpi:multiplier "6.4";
youpi:offset "-3.125";
youpi:units-subject "http://ackl.io/iot/vocab/m3-lite#ApproximateTemperature";
}
choice data {
case _btn {
container button-data {
uses temp-precise-reed-type;
leaf minor-version {
type uint8;
youpi:position "24..27";
}
leaf major-version {
type uint8;
youpi:position "28..31";
}
}
}
case _temp {
container temperature-data {
uses temp-precise-reed-type;
leaf humidity {
type decimal64 {
fraction-digits 1;
range "0 .. 100";
}
units "http://data.nasa.gov/qudt/owl/unit#Percent";
youpi:units-subject "https://w3id.org/saref#Humidity";
youpi:position "24..31";
youpi:multiplier "0.5";
}
}
}
case _light {
container light-data {
uses light-type;
}
}
case _door {
container door-data {
leaf padding {
type empty;
youpi:position "16..23";
}
leaf count {
type uint8;
youpi:position "24..31";
}
}
}
case _move {
container movement-data {
uses temp-precise-reed-type;
leaf count {
type uint8;
youpi:position "24..31";
}
}
}
case _reed {
container reed-switch-data {
uses temp-precise-reed-type;
leaf count {
type uint8;
youpi:position "24..31";
}
}
}
youpi:condition "mode";
}
}
}