wiseml-ruby 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. data/.gitignore +1 -0
  2. data/Gemfile +4 -0
  3. data/README.md +0 -0
  4. data/Rakefile +2 -0
  5. data/lib/version.rb +3 -0
  6. data/lib/wise_ml.rb +6 -0
  7. data/lib/wiseconfig/application.rb +5 -0
  8. data/lib/wiseconfig/configuration.rb +5 -0
  9. data/lib/wiseconfig/nodename.rb +5 -0
  10. data/lib/wiseconfig/nodes.rb +5 -0
  11. data/lib/wiseconfig/portal_app.rb +5 -0
  12. data/lib/wiseconfig/protobuf_interface.rb +5 -0
  13. data/lib/wiseconfig/server_connection.rb +5 -0
  14. data/lib/wiseconfig/testbed_configuration.rb +5 -0
  15. data/lib/wiseconfig/web_service.rb +5 -0
  16. data/lib/wiseconfig/wsn_device.rb +5 -0
  17. data/lib/wiseml/all.rb +66 -0
  18. data/lib/wiseml/scenario/disable_link.rb +15 -0
  19. data/lib/wiseml/scenario/disable_node.rb +12 -0
  20. data/lib/wiseml/scenario/enable_link.rb +14 -0
  21. data/lib/wiseml/scenario/enable_node.rb +13 -0
  22. data/lib/wiseml/scenario/scenario.rb +17 -0
  23. data/lib/wiseml/scenario/timestamp.rb +20 -0
  24. data/lib/wiseml/setup/capability.rb +19 -0
  25. data/lib/wiseml/setup/data.rb +15 -0
  26. data/lib/wiseml/setup/defaults.rb +14 -0
  27. data/lib/wiseml/setup/link.rb +20 -0
  28. data/lib/wiseml/setup/node.rb +23 -0
  29. data/lib/wiseml/setup/origin.rb +18 -0
  30. data/lib/wiseml/setup/position.rb +17 -0
  31. data/lib/wiseml/setup/rssi.rb +15 -0
  32. data/lib/wiseml/setup/setup.rb +21 -0
  33. data/lib/wiseml/setup/time_info.rb +16 -0
  34. data/lib/wiseml/trace/message.rb +15 -0
  35. data/lib/wiseml/trace/trace.rb +15 -0
  36. data/lib/wiseml/wise_ml.rb +17 -0
  37. data/test/test_xml.rb +33 -0
  38. data/test/wisebed_uzl_demo.json +3153 -0
  39. data/test/wisebed_uzl_demo.xml +3038 -0
  40. data/test/wiseml.model.xsd +89 -0
  41. data/wiseml-ruby.gemspec +20 -0
  42. metadata +122 -0
@@ -0,0 +1,16 @@
1
+ module WiseML
2
+ module Setup
3
+ class TimeInfo
4
+
5
+ # This is a persistant class for the object timeinfo that has the
6
+ # properties of a timeinfo. Setters and getters are implicitly defined
7
+ # trough the accesors
8
+
9
+ xml_accessor :start
10
+ xml_accessor :end
11
+ xml_accessor :duration, :as => Integer
12
+ xml_accessor :unit
13
+
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,15 @@
1
+ module WiseML
2
+ module Trace
3
+ class Message
4
+
5
+ # This is a persistent class for the object Trace that has the
6
+ # properties of a Trace. Setters and getters are implicitly defined
7
+ # trough the accesors
8
+
9
+ xml_accessor :timestamp
10
+ xml_accessor :id
11
+ xml_accessor :data
12
+
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,15 @@
1
+ module WiseML
2
+ module Trace
3
+ class Trace
4
+
5
+ # This is a persistent class for the object Trace that has the
6
+ # properties of a Trace. Setters and getters are implicitly defined
7
+ # trough the accesors
8
+
9
+ xml_accessor :id
10
+ xml_accessor :timestamp, :as => [Scenario::Timestamp]
11
+ xml_accessor :children
12
+
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,17 @@
1
+ module WiseML
2
+ class WiseML
3
+
4
+ # This is a persistent class for the object wiseml that has the
5
+ # properties of a wiseml. Setters and getters are implicitly defined
6
+ # trough the accesors
7
+
8
+ include ROXML
9
+
10
+ xml_accessor :version
11
+ xml_accessor :xmlns
12
+ xml_accessor :setup, :as => Setup::Setup
13
+ xml_accessor :scenario, :as => Scenario::Scenario
14
+ xml_accessor :trace, :as => Trace::Trace
15
+
16
+ end
17
+ end
data/test/test_xml.rb ADDED
@@ -0,0 +1,33 @@
1
+ require "test/unit"
2
+
3
+ require File.dirname(__FILE__) + '/../lib/wise_ml.rb'
4
+
5
+ class TestXml < Test::Unit::TestCase
6
+
7
+ def setup
8
+ @wisexml = WiseML::WiseML.from_xml(File.read("wisebed_uzl_demo.xml"))
9
+ end
10
+
11
+ def teardown
12
+ # Do nothing
13
+ end
14
+
15
+ def test_read_from_xml
16
+ assert_instance_of(WiseML::Setup::Setup, @wisexml.setup)
17
+ assert_instance_of(Float, @wisexml.setup.origin.phi)
18
+ assert_instance_of(Array, @wisexml.setup.nodes)
19
+ assert_instance_of(WiseML::Setup::Node, @wisexml.setup.nodes.first)
20
+ assert_match(/^Processor/, @wisexml.setup.nodes.first.description)
21
+ assert(@wisexml.setup.nodes.size == 108)
22
+ end
23
+
24
+ def test_write_to_xml
25
+ # xsd file seems outdated and is itself invalid...
26
+ #xsd = Nokogiri::XML::Schema("wiseml.model.xsd")
27
+
28
+ doc = Nokogiri::XML::Document.new
29
+ doc.root = @wisexml.to_xml
30
+
31
+ end
32
+
33
+ end
@@ -0,0 +1,3153 @@
1
+ {
2
+ "setup" : {
3
+ "origin" : {
4
+ "x" : 53.833836,
5
+ "y" : 10.704606,
6
+ "z" : 33.0,
7
+ "phi" : -145.0,
8
+ "theta" : 0.0
9
+ },
10
+ "timeinfo" : null,
11
+ "interpolation" : null,
12
+ "coordinateType" : "geographic",
13
+ "description" : "This is the description WiseML file of the UzL testbed in Luebeck, Germany containing 54 iSense, 54 telosB and 54 Pacemate sensor nodes.",
14
+ "defaults" : null,
15
+ "node" : [ {
16
+ "position" : {
17
+ "x" : 10.0,
18
+ "y" : 1.0,
19
+ "z" : 1.0,
20
+ "phi" : null,
21
+ "theta" : null
22
+ },
23
+ "gateway" : true,
24
+ "programDetails" : null,
25
+ "nodeType" : "telosb",
26
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
27
+ "capability" : [ {
28
+ "name" : "urn:wisebed:node:capability:temperature",
29
+ "datatype" : "integer",
30
+ "unit" : "degrees",
31
+ "default" : "0"
32
+ }, {
33
+ "name" : "urn:wisebed:node:capability:light",
34
+ "datatype" : "integer",
35
+ "unit" : "lux",
36
+ "default" : "0"
37
+ }, {
38
+ "name" : "urn:wisebed:node:capability:ir",
39
+ "datatype" : "integer",
40
+ "unit" : "lux",
41
+ "default" : "0"
42
+ }, {
43
+ "name" : "urn:wisebed:node:capability:humidity",
44
+ "datatype" : "integer",
45
+ "unit" : "raw",
46
+ "default" : "0"
47
+ } ],
48
+ "id" : "urn:wisebed:uzl1:0x221e"
49
+ }, {
50
+ "position" : {
51
+ "x" : 10.0,
52
+ "y" : 1.0,
53
+ "z" : 1.0,
54
+ "phi" : null,
55
+ "theta" : null
56
+ },
57
+ "gateway" : true,
58
+ "programDetails" : null,
59
+ "nodeType" : "isense48",
60
+ "description" : "Processor: Jennic JN5148 (128kB RAM, 512kB Flash, 32 Bit RISC Controller, 4-32MHz) Radio: IEEE 802.15.4 compliant radio, 250kbit/s, hardware AES encryption, ToF ranging engine)",
61
+ "capability" : [ {
62
+ "name" : "urn:wisebed:node:capability:pir",
63
+ "datatype" : "integer",
64
+ "unit" : "raw",
65
+ "default" : "0"
66
+ }, {
67
+ "name" : "urn:wisebed:node:capability:acc",
68
+ "datatype" : "integer",
69
+ "unit" : "raw",
70
+ "default" : "[0,0,0]"
71
+ } ],
72
+ "id" : "urn:wisebed:uzl1:0x211c"
73
+ }, {
74
+ "position" : {
75
+ "x" : 6.0,
76
+ "y" : 1.0,
77
+ "z" : 1.0,
78
+ "phi" : null,
79
+ "theta" : null
80
+ },
81
+ "gateway" : true,
82
+ "programDetails" : null,
83
+ "nodeType" : "telosb",
84
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
85
+ "capability" : [ {
86
+ "name" : "urn:wisebed:node:capability:temperature",
87
+ "datatype" : "integer",
88
+ "unit" : "degrees",
89
+ "default" : "0"
90
+ }, {
91
+ "name" : "urn:wisebed:node:capability:light",
92
+ "datatype" : "integer",
93
+ "unit" : "lux",
94
+ "default" : "0"
95
+ }, {
96
+ "name" : "urn:wisebed:node:capability:ir",
97
+ "datatype" : "integer",
98
+ "unit" : "lux",
99
+ "default" : "0"
100
+ }, {
101
+ "name" : "urn:wisebed:node:capability:humidity",
102
+ "datatype" : "integer",
103
+ "unit" : "raw",
104
+ "default" : "0"
105
+ } ],
106
+ "id" : "urn:wisebed:uzl1:0x221c"
107
+ }, {
108
+ "position" : {
109
+ "x" : 6.0,
110
+ "y" : 1.0,
111
+ "z" : 1.0,
112
+ "phi" : null,
113
+ "theta" : null
114
+ },
115
+ "gateway" : true,
116
+ "programDetails" : null,
117
+ "nodeType" : "isense39",
118
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
119
+ "capability" : [ {
120
+ "name" : "urn:wisebed:node:capability:temperature",
121
+ "datatype" : "integer",
122
+ "unit" : "degrees",
123
+ "default" : "0"
124
+ }, {
125
+ "name" : "urn:wisebed:node:capability:light",
126
+ "datatype" : "integer",
127
+ "unit" : "lux",
128
+ "default" : "0"
129
+ } ],
130
+ "id" : "urn:wisebed:uzl1:0x201c"
131
+ }, {
132
+ "position" : {
133
+ "x" : 8.0,
134
+ "y" : 1.0,
135
+ "z" : 1.0,
136
+ "phi" : null,
137
+ "theta" : null
138
+ },
139
+ "gateway" : true,
140
+ "programDetails" : null,
141
+ "nodeType" : "telosb",
142
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
143
+ "capability" : [ {
144
+ "name" : "urn:wisebed:node:capability:temperature",
145
+ "datatype" : "integer",
146
+ "unit" : "degrees",
147
+ "default" : "0"
148
+ }, {
149
+ "name" : "urn:wisebed:node:capability:light",
150
+ "datatype" : "integer",
151
+ "unit" : "lux",
152
+ "default" : "0"
153
+ }, {
154
+ "name" : "urn:wisebed:node:capability:ir",
155
+ "datatype" : "integer",
156
+ "unit" : "lux",
157
+ "default" : "0"
158
+ }, {
159
+ "name" : "urn:wisebed:node:capability:humidity",
160
+ "datatype" : "integer",
161
+ "unit" : "raw",
162
+ "default" : "0"
163
+ } ],
164
+ "id" : "urn:wisebed:uzl1:0x221d"
165
+ }, {
166
+ "position" : {
167
+ "x" : 8.0,
168
+ "y" : 1.0,
169
+ "z" : 1.0,
170
+ "phi" : null,
171
+ "theta" : null
172
+ },
173
+ "gateway" : true,
174
+ "programDetails" : null,
175
+ "nodeType" : "isense39",
176
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
177
+ "capability" : [ {
178
+ "name" : "urn:wisebed:node:capability:temperature",
179
+ "datatype" : "integer",
180
+ "unit" : "degrees",
181
+ "default" : "0"
182
+ }, {
183
+ "name" : "urn:wisebed:node:capability:light",
184
+ "datatype" : "integer",
185
+ "unit" : "lux",
186
+ "default" : "0"
187
+ } ],
188
+ "id" : "urn:wisebed:uzl1:0x201d"
189
+ }, {
190
+ "position" : {
191
+ "x" : 10.5,
192
+ "y" : 3.0,
193
+ "z" : 1.0,
194
+ "phi" : null,
195
+ "theta" : null
196
+ },
197
+ "gateway" : true,
198
+ "programDetails" : null,
199
+ "nodeType" : "telosb",
200
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
201
+ "capability" : [ {
202
+ "name" : "urn:wisebed:node:capability:temperature",
203
+ "datatype" : "integer",
204
+ "unit" : "degrees",
205
+ "default" : "0"
206
+ }, {
207
+ "name" : "urn:wisebed:node:capability:light",
208
+ "datatype" : "integer",
209
+ "unit" : "lux",
210
+ "default" : "0"
211
+ }, {
212
+ "name" : "urn:wisebed:node:capability:ir",
213
+ "datatype" : "integer",
214
+ "unit" : "lux",
215
+ "default" : "0"
216
+ }, {
217
+ "name" : "urn:wisebed:node:capability:humidity",
218
+ "datatype" : "integer",
219
+ "unit" : "raw",
220
+ "default" : "0"
221
+ } ],
222
+ "id" : "urn:wisebed:uzl1:0x2215"
223
+ }, {
224
+ "position" : {
225
+ "x" : 10.5,
226
+ "y" : 3.0,
227
+ "z" : 1.0,
228
+ "phi" : null,
229
+ "theta" : null
230
+ },
231
+ "gateway" : true,
232
+ "programDetails" : null,
233
+ "nodeType" : "isense39",
234
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
235
+ "capability" : [ {
236
+ "name" : "urn:wisebed:node:capability:temperature",
237
+ "datatype" : "integer",
238
+ "unit" : "degrees",
239
+ "default" : "0"
240
+ }, {
241
+ "name" : "urn:wisebed:node:capability:light",
242
+ "datatype" : "integer",
243
+ "unit" : "lux",
244
+ "default" : "0"
245
+ } ],
246
+ "id" : "urn:wisebed:uzl1:0x2015"
247
+ }, {
248
+ "position" : {
249
+ "x" : 13.5,
250
+ "y" : 1.0,
251
+ "z" : 1.0,
252
+ "phi" : null,
253
+ "theta" : null
254
+ },
255
+ "gateway" : true,
256
+ "programDetails" : null,
257
+ "nodeType" : "telosb",
258
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
259
+ "capability" : [ {
260
+ "name" : "urn:wisebed:node:capability:temperature",
261
+ "datatype" : "integer",
262
+ "unit" : "degrees",
263
+ "default" : "0"
264
+ }, {
265
+ "name" : "urn:wisebed:node:capability:light",
266
+ "datatype" : "integer",
267
+ "unit" : "lux",
268
+ "default" : "0"
269
+ }, {
270
+ "name" : "urn:wisebed:node:capability:ir",
271
+ "datatype" : "integer",
272
+ "unit" : "lux",
273
+ "default" : "0"
274
+ }, {
275
+ "name" : "urn:wisebed:node:capability:humidity",
276
+ "datatype" : "integer",
277
+ "unit" : "raw",
278
+ "default" : "0"
279
+ } ],
280
+ "id" : "urn:wisebed:uzl1:0x2214"
281
+ }, {
282
+ "position" : {
283
+ "x" : 13.5,
284
+ "y" : 1.0,
285
+ "z" : 1.0,
286
+ "phi" : null,
287
+ "theta" : null
288
+ },
289
+ "gateway" : true,
290
+ "programDetails" : null,
291
+ "nodeType" : "isense39",
292
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
293
+ "capability" : [ {
294
+ "name" : "urn:wisebed:node:capability:pir",
295
+ "datatype" : "integer",
296
+ "unit" : "raw",
297
+ "default" : "0"
298
+ }, {
299
+ "name" : "urn:wisebed:node:capability:acc",
300
+ "datatype" : "integer",
301
+ "unit" : "raw",
302
+ "default" : "[0,0,0]"
303
+ } ],
304
+ "id" : "urn:wisebed:uzl1:0x2014"
305
+ }, {
306
+ "position" : {
307
+ "x" : 1.0,
308
+ "y" : 6.0,
309
+ "z" : 2.0,
310
+ "phi" : null,
311
+ "theta" : null
312
+ },
313
+ "gateway" : true,
314
+ "programDetails" : null,
315
+ "nodeType" : "telosb",
316
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
317
+ "capability" : [ {
318
+ "name" : "urn:wisebed:node:capability:temperature",
319
+ "datatype" : "integer",
320
+ "unit" : "degrees",
321
+ "default" : "0"
322
+ }, {
323
+ "name" : "urn:wisebed:node:capability:light",
324
+ "datatype" : "integer",
325
+ "unit" : "lux",
326
+ "default" : "0"
327
+ }, {
328
+ "name" : "urn:wisebed:node:capability:ir",
329
+ "datatype" : "integer",
330
+ "unit" : "lux",
331
+ "default" : "0"
332
+ }, {
333
+ "name" : "urn:wisebed:node:capability:humidity",
334
+ "datatype" : "integer",
335
+ "unit" : "raw",
336
+ "default" : "0"
337
+ } ],
338
+ "id" : "urn:wisebed:uzl1:0x2216"
339
+ }, {
340
+ "position" : {
341
+ "x" : 1.0,
342
+ "y" : 6.0,
343
+ "z" : 2.0,
344
+ "phi" : null,
345
+ "theta" : null
346
+ },
347
+ "gateway" : true,
348
+ "programDetails" : null,
349
+ "nodeType" : "isense48",
350
+ "description" : "Processor: Jennic JN5148 (128kB RAM, 512kB Flash, 32 Bit RISC Controller, 4-32MHz) Radio: IEEE 802.15.4 compliant radio, 250kbit/s, hardware AES encryption, ToF ranging engine)",
351
+ "capability" : [ {
352
+ "name" : "urn:wisebed:node:capability:pir",
353
+ "datatype" : "integer",
354
+ "unit" : "raw",
355
+ "default" : "0"
356
+ }, {
357
+ "name" : "urn:wisebed:node:capability:acc",
358
+ "datatype" : "integer",
359
+ "unit" : "raw",
360
+ "default" : "[0,0,0]"
361
+ } ],
362
+ "id" : "urn:wisebed:uzl1:0x2114"
363
+ }, {
364
+ "position" : {
365
+ "x" : 25.5,
366
+ "y" : 11.5,
367
+ "z" : 2.0,
368
+ "phi" : null,
369
+ "theta" : null
370
+ },
371
+ "gateway" : true,
372
+ "programDetails" : null,
373
+ "nodeType" : "telosb",
374
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
375
+ "capability" : [ {
376
+ "name" : "urn:wisebed:node:capability:temperature",
377
+ "datatype" : "integer",
378
+ "unit" : "degrees",
379
+ "default" : "0"
380
+ }, {
381
+ "name" : "urn:wisebed:node:capability:light",
382
+ "datatype" : "integer",
383
+ "unit" : "lux",
384
+ "default" : "0"
385
+ }, {
386
+ "name" : "urn:wisebed:node:capability:ir",
387
+ "datatype" : "integer",
388
+ "unit" : "lux",
389
+ "default" : "0"
390
+ }, {
391
+ "name" : "urn:wisebed:node:capability:humidity",
392
+ "datatype" : "integer",
393
+ "unit" : "raw",
394
+ "default" : "0"
395
+ } ],
396
+ "id" : "urn:wisebed:uzl1:0x2206"
397
+ }, {
398
+ "position" : {
399
+ "x" : 25.5,
400
+ "y" : 11.5,
401
+ "z" : 2.0,
402
+ "phi" : null,
403
+ "theta" : null
404
+ },
405
+ "gateway" : true,
406
+ "programDetails" : null,
407
+ "nodeType" : "isense48",
408
+ "description" : "Processor: Jennic JN5148 (128kB RAM, 512kB Flash, 32 Bit RISC Controller, 4-32MHz) Radio: IEEE 802.15.4 compliant radio, 250kbit/s, hardware AES encryption, ToF ranging engine)",
409
+ "capability" : [ {
410
+ "name" : "urn:wisebed:node:capability:pir",
411
+ "datatype" : "integer",
412
+ "unit" : "raw",
413
+ "default" : "0"
414
+ }, {
415
+ "name" : "urn:wisebed:node:capability:acc",
416
+ "datatype" : "integer",
417
+ "unit" : "raw",
418
+ "default" : "[0,0,0]"
419
+ } ],
420
+ "id" : "urn:wisebed:uzl1:0x2104"
421
+ }, {
422
+ "position" : {
423
+ "x" : 12.5,
424
+ "y" : 15.5,
425
+ "z" : 2.0,
426
+ "phi" : null,
427
+ "theta" : null
428
+ },
429
+ "gateway" : true,
430
+ "programDetails" : null,
431
+ "nodeType" : "telosb",
432
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
433
+ "capability" : [ {
434
+ "name" : "urn:wisebed:node:capability:temperature",
435
+ "datatype" : "integer",
436
+ "unit" : "degrees",
437
+ "default" : "0"
438
+ }, {
439
+ "name" : "urn:wisebed:node:capability:light",
440
+ "datatype" : "integer",
441
+ "unit" : "lux",
442
+ "default" : "0"
443
+ }, {
444
+ "name" : "urn:wisebed:node:capability:ir",
445
+ "datatype" : "integer",
446
+ "unit" : "lux",
447
+ "default" : "0"
448
+ }, {
449
+ "name" : "urn:wisebed:node:capability:humidity",
450
+ "datatype" : "integer",
451
+ "unit" : "raw",
452
+ "default" : "0"
453
+ } ],
454
+ "id" : "urn:wisebed:uzl1:0x220e"
455
+ }, {
456
+ "position" : {
457
+ "x" : 12.5,
458
+ "y" : 15.5,
459
+ "z" : 2.0,
460
+ "phi" : null,
461
+ "theta" : null
462
+ },
463
+ "gateway" : true,
464
+ "programDetails" : null,
465
+ "nodeType" : "isense48",
466
+ "description" : "Processor: Jennic JN5148 (128kB RAM, 512kB Flash, 32 Bit RISC Controller, 4-32MHz) Radio: IEEE 802.15.4 compliant radio, 250kbit/s, hardware AES encryption, ToF ranging engine)",
467
+ "capability" : [ {
468
+ "name" : "urn:wisebed:node:capability:temperature",
469
+ "datatype" : "integer",
470
+ "unit" : "degrees",
471
+ "default" : "0"
472
+ }, {
473
+ "name" : "urn:wisebed:node:capability:light",
474
+ "datatype" : "integer",
475
+ "unit" : "lux",
476
+ "default" : "0"
477
+ } ],
478
+ "id" : "urn:wisebed:uzl1:0x210c"
479
+ }, {
480
+ "position" : {
481
+ "x" : 20.5,
482
+ "y" : 1.5,
483
+ "z" : 1.0,
484
+ "phi" : null,
485
+ "theta" : null
486
+ },
487
+ "gateway" : true,
488
+ "programDetails" : null,
489
+ "nodeType" : "telosb",
490
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
491
+ "capability" : [ {
492
+ "name" : "urn:wisebed:node:capability:temperature",
493
+ "datatype" : "integer",
494
+ "unit" : "degrees",
495
+ "default" : "0"
496
+ }, {
497
+ "name" : "urn:wisebed:node:capability:light",
498
+ "datatype" : "integer",
499
+ "unit" : "lux",
500
+ "default" : "0"
501
+ }, {
502
+ "name" : "urn:wisebed:node:capability:ir",
503
+ "datatype" : "integer",
504
+ "unit" : "lux",
505
+ "default" : "0"
506
+ }, {
507
+ "name" : "urn:wisebed:node:capability:humidity",
508
+ "datatype" : "integer",
509
+ "unit" : "raw",
510
+ "default" : "0"
511
+ } ],
512
+ "id" : "urn:wisebed:uzl1:0x220d"
513
+ }, {
514
+ "position" : {
515
+ "x" : 20.5,
516
+ "y" : 1.5,
517
+ "z" : 1.0,
518
+ "phi" : null,
519
+ "theta" : null
520
+ },
521
+ "gateway" : true,
522
+ "programDetails" : null,
523
+ "nodeType" : "isense39",
524
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
525
+ "capability" : [ {
526
+ "name" : "urn:wisebed:node:capability:temperature",
527
+ "datatype" : "integer",
528
+ "unit" : "degrees",
529
+ "default" : "0"
530
+ }, {
531
+ "name" : "urn:wisebed:node:capability:light",
532
+ "datatype" : "integer",
533
+ "unit" : "lux",
534
+ "default" : "0"
535
+ } ],
536
+ "id" : "urn:wisebed:uzl1:0x200d"
537
+ }, {
538
+ "position" : {
539
+ "x" : 17.0,
540
+ "y" : 0.5,
541
+ "z" : 0.0,
542
+ "phi" : null,
543
+ "theta" : null
544
+ },
545
+ "gateway" : true,
546
+ "programDetails" : null,
547
+ "nodeType" : "telosb",
548
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
549
+ "capability" : [ {
550
+ "name" : "urn:wisebed:node:capability:temperature",
551
+ "datatype" : "integer",
552
+ "unit" : "degrees",
553
+ "default" : "0"
554
+ }, {
555
+ "name" : "urn:wisebed:node:capability:light",
556
+ "datatype" : "integer",
557
+ "unit" : "lux",
558
+ "default" : "0"
559
+ }, {
560
+ "name" : "urn:wisebed:node:capability:ir",
561
+ "datatype" : "integer",
562
+ "unit" : "lux",
563
+ "default" : "0"
564
+ }, {
565
+ "name" : "urn:wisebed:node:capability:humidity",
566
+ "datatype" : "integer",
567
+ "unit" : "raw",
568
+ "default" : "0"
569
+ } ],
570
+ "id" : "urn:wisebed:uzl1:0x220c"
571
+ }, {
572
+ "position" : {
573
+ "x" : 17.0,
574
+ "y" : 0.5,
575
+ "z" : 0.0,
576
+ "phi" : null,
577
+ "theta" : null
578
+ },
579
+ "gateway" : true,
580
+ "programDetails" : null,
581
+ "nodeType" : "isense39",
582
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
583
+ "capability" : [ {
584
+ "name" : "urn:wisebed:node:capability:temperature",
585
+ "datatype" : "integer",
586
+ "unit" : "degrees",
587
+ "default" : "0"
588
+ }, {
589
+ "name" : "urn:wisebed:node:capability:light",
590
+ "datatype" : "integer",
591
+ "unit" : "lux",
592
+ "default" : "0"
593
+ } ],
594
+ "id" : "urn:wisebed:uzl1:0x200c"
595
+ }, {
596
+ "position" : {
597
+ "x" : 27.5,
598
+ "y" : 2.5,
599
+ "z" : 1.0,
600
+ "phi" : null,
601
+ "theta" : null
602
+ },
603
+ "gateway" : true,
604
+ "programDetails" : null,
605
+ "nodeType" : "telosb",
606
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
607
+ "capability" : [ {
608
+ "name" : "urn:wisebed:node:capability:temperature",
609
+ "datatype" : "integer",
610
+ "unit" : "degrees",
611
+ "default" : "0"
612
+ }, {
613
+ "name" : "urn:wisebed:node:capability:light",
614
+ "datatype" : "integer",
615
+ "unit" : "lux",
616
+ "default" : "0"
617
+ }, {
618
+ "name" : "urn:wisebed:node:capability:ir",
619
+ "datatype" : "integer",
620
+ "unit" : "lux",
621
+ "default" : "0"
622
+ }, {
623
+ "name" : "urn:wisebed:node:capability:humidity",
624
+ "datatype" : "integer",
625
+ "unit" : "raw",
626
+ "default" : "0"
627
+ } ],
628
+ "id" : "urn:wisebed:uzl1:0x2204"
629
+ }, {
630
+ "position" : {
631
+ "x" : 27.5,
632
+ "y" : 2.5,
633
+ "z" : 1.0,
634
+ "phi" : null,
635
+ "theta" : null
636
+ },
637
+ "gateway" : true,
638
+ "programDetails" : null,
639
+ "nodeType" : "isense39",
640
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
641
+ "capability" : [ {
642
+ "name" : "urn:wisebed:node:capability:temperature",
643
+ "datatype" : "integer",
644
+ "unit" : "degrees",
645
+ "default" : "0"
646
+ }, {
647
+ "name" : "urn:wisebed:node:capability:light",
648
+ "datatype" : "integer",
649
+ "unit" : "lux",
650
+ "default" : "0"
651
+ } ],
652
+ "id" : "urn:wisebed:uzl1:0x2004"
653
+ }, {
654
+ "position" : {
655
+ "x" : 27.5,
656
+ "y" : 1.0,
657
+ "z" : 1.0,
658
+ "phi" : null,
659
+ "theta" : null
660
+ },
661
+ "gateway" : true,
662
+ "programDetails" : null,
663
+ "nodeType" : "telosb",
664
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
665
+ "capability" : [ {
666
+ "name" : "urn:wisebed:node:capability:temperature",
667
+ "datatype" : "integer",
668
+ "unit" : "degrees",
669
+ "default" : "0"
670
+ }, {
671
+ "name" : "urn:wisebed:node:capability:light",
672
+ "datatype" : "integer",
673
+ "unit" : "lux",
674
+ "default" : "0"
675
+ }, {
676
+ "name" : "urn:wisebed:node:capability:ir",
677
+ "datatype" : "integer",
678
+ "unit" : "lux",
679
+ "default" : "0"
680
+ }, {
681
+ "name" : "urn:wisebed:node:capability:humidity",
682
+ "datatype" : "integer",
683
+ "unit" : "raw",
684
+ "default" : "0"
685
+ } ],
686
+ "id" : "urn:wisebed:uzl1:0x2205"
687
+ }, {
688
+ "position" : {
689
+ "x" : 27.5,
690
+ "y" : 1.0,
691
+ "z" : 1.0,
692
+ "phi" : null,
693
+ "theta" : null
694
+ },
695
+ "gateway" : true,
696
+ "programDetails" : null,
697
+ "nodeType" : "isense39",
698
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
699
+ "capability" : [ {
700
+ "name" : "urn:wisebed:node:capability:pir",
701
+ "datatype" : "integer",
702
+ "unit" : "raw",
703
+ "default" : "0"
704
+ }, {
705
+ "name" : "urn:wisebed:node:capability:acc",
706
+ "datatype" : "integer",
707
+ "unit" : "raw",
708
+ "default" : "[0,0,0]"
709
+ } ],
710
+ "id" : "urn:wisebed:uzl1:0x2005"
711
+ }, {
712
+ "position" : {
713
+ "x" : 3.5,
714
+ "y" : 1.0,
715
+ "z" : 1.0,
716
+ "phi" : null,
717
+ "theta" : null
718
+ },
719
+ "gateway" : true,
720
+ "programDetails" : null,
721
+ "nodeType" : "telosb",
722
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
723
+ "capability" : [ {
724
+ "name" : "urn:wisebed:node:capability:temperature",
725
+ "datatype" : "integer",
726
+ "unit" : "degrees",
727
+ "default" : "0"
728
+ }, {
729
+ "name" : "urn:wisebed:node:capability:light",
730
+ "datatype" : "integer",
731
+ "unit" : "lux",
732
+ "default" : "0"
733
+ }, {
734
+ "name" : "urn:wisebed:node:capability:ir",
735
+ "datatype" : "integer",
736
+ "unit" : "lux",
737
+ "default" : "0"
738
+ }, {
739
+ "name" : "urn:wisebed:node:capability:humidity",
740
+ "datatype" : "integer",
741
+ "unit" : "raw",
742
+ "default" : "0"
743
+ } ],
744
+ "id" : "urn:wisebed:uzl1:0x2225"
745
+ }, {
746
+ "position" : {
747
+ "x" : 3.5,
748
+ "y" : 1.0,
749
+ "z" : 1.0,
750
+ "phi" : null,
751
+ "theta" : null
752
+ },
753
+ "gateway" : true,
754
+ "programDetails" : null,
755
+ "nodeType" : "isense39",
756
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
757
+ "capability" : [ {
758
+ "name" : "urn:wisebed:node:capability:pir",
759
+ "datatype" : "integer",
760
+ "unit" : "raw",
761
+ "default" : "0"
762
+ }, {
763
+ "name" : "urn:wisebed:node:capability:acc",
764
+ "datatype" : "integer",
765
+ "unit" : "raw",
766
+ "default" : "[0,0,0]"
767
+ } ],
768
+ "id" : "urn:wisebed:uzl1:0x2025"
769
+ }, {
770
+ "position" : {
771
+ "x" : 25.5,
772
+ "y" : 1.0,
773
+ "z" : 1.0,
774
+ "phi" : null,
775
+ "theta" : null
776
+ },
777
+ "gateway" : true,
778
+ "programDetails" : null,
779
+ "nodeType" : "telosb",
780
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
781
+ "capability" : [ {
782
+ "name" : "urn:wisebed:node:capability:temperature",
783
+ "datatype" : "integer",
784
+ "unit" : "degrees",
785
+ "default" : "0"
786
+ }, {
787
+ "name" : "urn:wisebed:node:capability:light",
788
+ "datatype" : "integer",
789
+ "unit" : "lux",
790
+ "default" : "0"
791
+ }, {
792
+ "name" : "urn:wisebed:node:capability:ir",
793
+ "datatype" : "integer",
794
+ "unit" : "lux",
795
+ "default" : "0"
796
+ }, {
797
+ "name" : "urn:wisebed:node:capability:humidity",
798
+ "datatype" : "integer",
799
+ "unit" : "raw",
800
+ "default" : "0"
801
+ } ],
802
+ "id" : "urn:wisebed:uzl1:0x2226"
803
+ }, {
804
+ "position" : {
805
+ "x" : 25.5,
806
+ "y" : 1.0,
807
+ "z" : 1.0,
808
+ "phi" : null,
809
+ "theta" : null
810
+ },
811
+ "gateway" : true,
812
+ "programDetails" : null,
813
+ "nodeType" : "isense48",
814
+ "description" : "Processor: Jennic JN5148 (128kB RAM, 512kB Flash, 32 Bit RISC Controller, 4-32MHz) Radio: IEEE 802.15.4 compliant radio, 250kbit/s, hardware AES encryption, ToF ranging engine)",
815
+ "capability" : [ {
816
+ "name" : "urn:wisebed:node:capability:temperature",
817
+ "datatype" : "integer",
818
+ "unit" : "degrees",
819
+ "default" : "0"
820
+ }, {
821
+ "name" : "urn:wisebed:node:capability:light",
822
+ "datatype" : "integer",
823
+ "unit" : "lux",
824
+ "default" : "0"
825
+ } ],
826
+ "id" : "urn:wisebed:uzl1:0x2124"
827
+ }, {
828
+ "position" : {
829
+ "x" : 4.5,
830
+ "y" : 1.0,
831
+ "z" : 1.0,
832
+ "phi" : null,
833
+ "theta" : null
834
+ },
835
+ "gateway" : true,
836
+ "programDetails" : null,
837
+ "nodeType" : "telosb",
838
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
839
+ "capability" : [ {
840
+ "name" : "urn:wisebed:node:capability:temperature",
841
+ "datatype" : "integer",
842
+ "unit" : "degrees",
843
+ "default" : "0"
844
+ }, {
845
+ "name" : "urn:wisebed:node:capability:light",
846
+ "datatype" : "integer",
847
+ "unit" : "lux",
848
+ "default" : "0"
849
+ }, {
850
+ "name" : "urn:wisebed:node:capability:ir",
851
+ "datatype" : "integer",
852
+ "unit" : "lux",
853
+ "default" : "0"
854
+ }, {
855
+ "name" : "urn:wisebed:node:capability:humidity",
856
+ "datatype" : "integer",
857
+ "unit" : "raw",
858
+ "default" : "0"
859
+ } ],
860
+ "id" : "urn:wisebed:uzl1:0x2224"
861
+ }, {
862
+ "position" : {
863
+ "x" : 4.5,
864
+ "y" : 1.0,
865
+ "z" : 1.0,
866
+ "phi" : null,
867
+ "theta" : null
868
+ },
869
+ "gateway" : true,
870
+ "programDetails" : null,
871
+ "nodeType" : "isense39",
872
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
873
+ "capability" : [ {
874
+ "name" : "urn:wisebed:node:capability:temperature",
875
+ "datatype" : "integer",
876
+ "unit" : "degrees",
877
+ "default" : "0"
878
+ }, {
879
+ "name" : "urn:wisebed:node:capability:light",
880
+ "datatype" : "integer",
881
+ "unit" : "lux",
882
+ "default" : "0"
883
+ } ],
884
+ "id" : "urn:wisebed:uzl1:0x2024"
885
+ }, {
886
+ "position" : {
887
+ "x" : 28.5,
888
+ "y" : 10.5,
889
+ "z" : 2.0,
890
+ "phi" : null,
891
+ "theta" : null
892
+ },
893
+ "gateway" : true,
894
+ "programDetails" : null,
895
+ "nodeType" : "telosb",
896
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
897
+ "capability" : [ {
898
+ "name" : "urn:wisebed:node:capability:temperature",
899
+ "datatype" : "integer",
900
+ "unit" : "degrees",
901
+ "default" : "0"
902
+ }, {
903
+ "name" : "urn:wisebed:node:capability:light",
904
+ "datatype" : "integer",
905
+ "unit" : "lux",
906
+ "default" : "0"
907
+ }, {
908
+ "name" : "urn:wisebed:node:capability:ir",
909
+ "datatype" : "integer",
910
+ "unit" : "lux",
911
+ "default" : "0"
912
+ }, {
913
+ "name" : "urn:wisebed:node:capability:humidity",
914
+ "datatype" : "integer",
915
+ "unit" : "raw",
916
+ "default" : "0"
917
+ } ],
918
+ "id" : "urn:wisebed:uzl1:0x2230"
919
+ }, {
920
+ "position" : {
921
+ "x" : 28.5,
922
+ "y" : 10.5,
923
+ "z" : 2.0,
924
+ "phi" : null,
925
+ "theta" : null
926
+ },
927
+ "gateway" : true,
928
+ "programDetails" : null,
929
+ "nodeType" : "isense39",
930
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
931
+ "capability" : [ {
932
+ "name" : "urn:wisebed:node:capability:pir",
933
+ "datatype" : "integer",
934
+ "unit" : "raw",
935
+ "default" : "0"
936
+ }, {
937
+ "name" : "urn:wisebed:node:capability:acc",
938
+ "datatype" : "integer",
939
+ "unit" : "raw",
940
+ "default" : "[0,0,0]"
941
+ } ],
942
+ "id" : "urn:wisebed:uzl1:0x2030"
943
+ }, {
944
+ "position" : {
945
+ "x" : 28.5,
946
+ "y" : 14.0,
947
+ "z" : 1.0,
948
+ "phi" : null,
949
+ "theta" : null
950
+ },
951
+ "gateway" : true,
952
+ "programDetails" : null,
953
+ "nodeType" : "telosb",
954
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
955
+ "capability" : [ {
956
+ "name" : "urn:wisebed:node:capability:temperature",
957
+ "datatype" : "integer",
958
+ "unit" : "degrees",
959
+ "default" : "0"
960
+ }, {
961
+ "name" : "urn:wisebed:node:capability:light",
962
+ "datatype" : "integer",
963
+ "unit" : "lux",
964
+ "default" : "0"
965
+ }, {
966
+ "name" : "urn:wisebed:node:capability:ir",
967
+ "datatype" : "integer",
968
+ "unit" : "lux",
969
+ "default" : "0"
970
+ }, {
971
+ "name" : "urn:wisebed:node:capability:humidity",
972
+ "datatype" : "integer",
973
+ "unit" : "raw",
974
+ "default" : "0"
975
+ } ],
976
+ "id" : "urn:wisebed:uzl1:0x2231"
977
+ }, {
978
+ "position" : {
979
+ "x" : 28.5,
980
+ "y" : 14.0,
981
+ "z" : 1.0,
982
+ "phi" : null,
983
+ "theta" : null
984
+ },
985
+ "gateway" : true,
986
+ "programDetails" : null,
987
+ "nodeType" : "isense39",
988
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
989
+ "capability" : [ {
990
+ "name" : "urn:wisebed:node:capability:temperature",
991
+ "datatype" : "integer",
992
+ "unit" : "degrees",
993
+ "default" : "0"
994
+ }, {
995
+ "name" : "urn:wisebed:node:capability:light",
996
+ "datatype" : "integer",
997
+ "unit" : "lux",
998
+ "default" : "0"
999
+ } ],
1000
+ "id" : "urn:wisebed:uzl1:0x2031"
1001
+ }, {
1002
+ "position" : {
1003
+ "x" : 8.5,
1004
+ "y" : 7.0,
1005
+ "z" : 2.0,
1006
+ "phi" : null,
1007
+ "theta" : null
1008
+ },
1009
+ "gateway" : true,
1010
+ "programDetails" : null,
1011
+ "nodeType" : "telosb",
1012
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
1013
+ "capability" : [ {
1014
+ "name" : "urn:wisebed:node:capability:temperature",
1015
+ "datatype" : "integer",
1016
+ "unit" : "degrees",
1017
+ "default" : "0"
1018
+ }, {
1019
+ "name" : "urn:wisebed:node:capability:light",
1020
+ "datatype" : "integer",
1021
+ "unit" : "lux",
1022
+ "default" : "0"
1023
+ }, {
1024
+ "name" : "urn:wisebed:node:capability:ir",
1025
+ "datatype" : "integer",
1026
+ "unit" : "lux",
1027
+ "default" : "0"
1028
+ }, {
1029
+ "name" : "urn:wisebed:node:capability:humidity",
1030
+ "datatype" : "integer",
1031
+ "unit" : "raw",
1032
+ "default" : "0"
1033
+ } ],
1034
+ "id" : "urn:wisebed:uzl1:0x2218"
1035
+ }, {
1036
+ "position" : {
1037
+ "x" : 8.5,
1038
+ "y" : 7.0,
1039
+ "z" : 2.0,
1040
+ "phi" : null,
1041
+ "theta" : null
1042
+ },
1043
+ "gateway" : true,
1044
+ "programDetails" : null,
1045
+ "nodeType" : "isense39",
1046
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
1047
+ "capability" : [ {
1048
+ "name" : "urn:wisebed:node:capability:pir",
1049
+ "datatype" : "integer",
1050
+ "unit" : "raw",
1051
+ "default" : "0"
1052
+ }, {
1053
+ "name" : "urn:wisebed:node:capability:acc",
1054
+ "datatype" : "integer",
1055
+ "unit" : "raw",
1056
+ "default" : "[0,0,0]"
1057
+ } ],
1058
+ "id" : "urn:wisebed:uzl1:0x2018"
1059
+ }, {
1060
+ "position" : {
1061
+ "x" : 25.5,
1062
+ "y" : 12.0,
1063
+ "z" : 2.0,
1064
+ "phi" : null,
1065
+ "theta" : null
1066
+ },
1067
+ "gateway" : true,
1068
+ "programDetails" : null,
1069
+ "nodeType" : "telosb",
1070
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
1071
+ "capability" : [ {
1072
+ "name" : "urn:wisebed:node:capability:temperature",
1073
+ "datatype" : "integer",
1074
+ "unit" : "degrees",
1075
+ "default" : "0"
1076
+ }, {
1077
+ "name" : "urn:wisebed:node:capability:light",
1078
+ "datatype" : "integer",
1079
+ "unit" : "lux",
1080
+ "default" : "0"
1081
+ }, {
1082
+ "name" : "urn:wisebed:node:capability:ir",
1083
+ "datatype" : "integer",
1084
+ "unit" : "lux",
1085
+ "default" : "0"
1086
+ }, {
1087
+ "name" : "urn:wisebed:node:capability:humidity",
1088
+ "datatype" : "integer",
1089
+ "unit" : "raw",
1090
+ "default" : "0"
1091
+ } ],
1092
+ "id" : "urn:wisebed:uzl1:0x2235"
1093
+ }, {
1094
+ "position" : {
1095
+ "x" : 25.5,
1096
+ "y" : 12.0,
1097
+ "z" : 2.0,
1098
+ "phi" : null,
1099
+ "theta" : null
1100
+ },
1101
+ "gateway" : true,
1102
+ "programDetails" : null,
1103
+ "nodeType" : "isense39",
1104
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
1105
+ "capability" : [ {
1106
+ "name" : "urn:wisebed:node:capability:temperature",
1107
+ "datatype" : "integer",
1108
+ "unit" : "degrees",
1109
+ "default" : "0"
1110
+ }, {
1111
+ "name" : "urn:wisebed:node:capability:light",
1112
+ "datatype" : "integer",
1113
+ "unit" : "lux",
1114
+ "default" : "0"
1115
+ } ],
1116
+ "id" : "urn:wisebed:uzl1:0x2035"
1117
+ }, {
1118
+ "position" : {
1119
+ "x" : 31.5,
1120
+ "y" : 10.5,
1121
+ "z" : 2.0,
1122
+ "phi" : null,
1123
+ "theta" : null
1124
+ },
1125
+ "gateway" : true,
1126
+ "programDetails" : null,
1127
+ "nodeType" : "telosb",
1128
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
1129
+ "capability" : [ {
1130
+ "name" : "urn:wisebed:node:capability:temperature",
1131
+ "datatype" : "integer",
1132
+ "unit" : "degrees",
1133
+ "default" : "0"
1134
+ }, {
1135
+ "name" : "urn:wisebed:node:capability:light",
1136
+ "datatype" : "integer",
1137
+ "unit" : "lux",
1138
+ "default" : "0"
1139
+ }, {
1140
+ "name" : "urn:wisebed:node:capability:ir",
1141
+ "datatype" : "integer",
1142
+ "unit" : "lux",
1143
+ "default" : "0"
1144
+ }, {
1145
+ "name" : "urn:wisebed:node:capability:humidity",
1146
+ "datatype" : "integer",
1147
+ "unit" : "raw",
1148
+ "default" : "0"
1149
+ } ],
1150
+ "id" : "urn:wisebed:uzl1:0x2236"
1151
+ }, {
1152
+ "position" : {
1153
+ "x" : 31.5,
1154
+ "y" : 10.5,
1155
+ "z" : 2.0,
1156
+ "phi" : null,
1157
+ "theta" : null
1158
+ },
1159
+ "gateway" : true,
1160
+ "programDetails" : null,
1161
+ "nodeType" : "isense48",
1162
+ "description" : "Processor: Jennic JN5148 (128kB RAM, 512kB Flash, 32 Bit RISC Controller, 4-32MHz) Radio: IEEE 802.15.4 compliant radio, 250kbit/s, hardware AES encryption, ToF ranging engine)",
1163
+ "capability" : [ {
1164
+ "name" : "urn:wisebed:node:capability:temperature",
1165
+ "datatype" : "integer",
1166
+ "unit" : "degrees",
1167
+ "default" : "0"
1168
+ }, {
1169
+ "name" : "urn:wisebed:node:capability:light",
1170
+ "datatype" : "integer",
1171
+ "unit" : "lux",
1172
+ "default" : "0"
1173
+ } ],
1174
+ "id" : "urn:wisebed:uzl1:0x2134"
1175
+ }, {
1176
+ "position" : {
1177
+ "x" : 7.5,
1178
+ "y" : 7.0,
1179
+ "z" : 2.0,
1180
+ "phi" : null,
1181
+ "theta" : null
1182
+ },
1183
+ "gateway" : true,
1184
+ "programDetails" : null,
1185
+ "nodeType" : "telosb",
1186
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
1187
+ "capability" : [ {
1188
+ "name" : "urn:wisebed:node:capability:temperature",
1189
+ "datatype" : "integer",
1190
+ "unit" : "degrees",
1191
+ "default" : "0"
1192
+ }, {
1193
+ "name" : "urn:wisebed:node:capability:light",
1194
+ "datatype" : "integer",
1195
+ "unit" : "lux",
1196
+ "default" : "0"
1197
+ }, {
1198
+ "name" : "urn:wisebed:node:capability:ir",
1199
+ "datatype" : "integer",
1200
+ "unit" : "lux",
1201
+ "default" : "0"
1202
+ }, {
1203
+ "name" : "urn:wisebed:node:capability:humidity",
1204
+ "datatype" : "integer",
1205
+ "unit" : "raw",
1206
+ "default" : "0"
1207
+ } ],
1208
+ "id" : "urn:wisebed:uzl1:0x2219"
1209
+ }, {
1210
+ "position" : {
1211
+ "x" : 7.5,
1212
+ "y" : 7.0,
1213
+ "z" : 2.0,
1214
+ "phi" : null,
1215
+ "theta" : null
1216
+ },
1217
+ "gateway" : true,
1218
+ "programDetails" : null,
1219
+ "nodeType" : "isense39",
1220
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
1221
+ "capability" : [ {
1222
+ "name" : "urn:wisebed:node:capability:temperature",
1223
+ "datatype" : "integer",
1224
+ "unit" : "degrees",
1225
+ "default" : "0"
1226
+ }, {
1227
+ "name" : "urn:wisebed:node:capability:light",
1228
+ "datatype" : "integer",
1229
+ "unit" : "lux",
1230
+ "default" : "0"
1231
+ } ],
1232
+ "id" : "urn:wisebed:uzl1:0x2019"
1233
+ }, {
1234
+ "position" : {
1235
+ "x" : 28.5,
1236
+ "y" : 1.0,
1237
+ "z" : 1.0,
1238
+ "phi" : null,
1239
+ "theta" : null
1240
+ },
1241
+ "gateway" : true,
1242
+ "programDetails" : null,
1243
+ "nodeType" : "telosb",
1244
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
1245
+ "capability" : [ {
1246
+ "name" : "urn:wisebed:node:capability:temperature",
1247
+ "datatype" : "integer",
1248
+ "unit" : "degrees",
1249
+ "default" : "0"
1250
+ }, {
1251
+ "name" : "urn:wisebed:node:capability:light",
1252
+ "datatype" : "integer",
1253
+ "unit" : "lux",
1254
+ "default" : "0"
1255
+ }, {
1256
+ "name" : "urn:wisebed:node:capability:ir",
1257
+ "datatype" : "integer",
1258
+ "unit" : "lux",
1259
+ "default" : "0"
1260
+ }, {
1261
+ "name" : "urn:wisebed:node:capability:humidity",
1262
+ "datatype" : "integer",
1263
+ "unit" : "raw",
1264
+ "default" : "0"
1265
+ } ],
1266
+ "id" : "urn:wisebed:uzl1:0x221a"
1267
+ }, {
1268
+ "position" : {
1269
+ "x" : 28.5,
1270
+ "y" : 1.0,
1271
+ "z" : 1.0,
1272
+ "phi" : null,
1273
+ "theta" : null
1274
+ },
1275
+ "gateway" : true,
1276
+ "programDetails" : null,
1277
+ "nodeType" : "isense48",
1278
+ "description" : "Processor: Jennic JN5148 (128kB RAM, 512kB Flash, 32 Bit RISC Controller, 4-32MHz) Radio: IEEE 802.15.4 compliant radio, 250kbit/s, hardware AES encryption, ToF ranging engine)",
1279
+ "capability" : [ {
1280
+ "name" : "urn:wisebed:node:capability:pir",
1281
+ "datatype" : "integer",
1282
+ "unit" : "raw",
1283
+ "default" : "0"
1284
+ }, {
1285
+ "name" : "urn:wisebed:node:capability:acc",
1286
+ "datatype" : "integer",
1287
+ "unit" : "raw",
1288
+ "default" : "[0,0,0]"
1289
+ } ],
1290
+ "id" : "urn:wisebed:uzl1:0x2118"
1291
+ }, {
1292
+ "position" : {
1293
+ "x" : 25.5,
1294
+ "y" : 14.0,
1295
+ "z" : 2.0,
1296
+ "phi" : null,
1297
+ "theta" : null
1298
+ },
1299
+ "gateway" : true,
1300
+ "programDetails" : null,
1301
+ "nodeType" : "telosb",
1302
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
1303
+ "capability" : [ {
1304
+ "name" : "urn:wisebed:node:capability:temperature",
1305
+ "datatype" : "integer",
1306
+ "unit" : "degrees",
1307
+ "default" : "0"
1308
+ }, {
1309
+ "name" : "urn:wisebed:node:capability:light",
1310
+ "datatype" : "integer",
1311
+ "unit" : "lux",
1312
+ "default" : "0"
1313
+ }, {
1314
+ "name" : "urn:wisebed:node:capability:ir",
1315
+ "datatype" : "integer",
1316
+ "unit" : "lux",
1317
+ "default" : "0"
1318
+ }, {
1319
+ "name" : "urn:wisebed:node:capability:humidity",
1320
+ "datatype" : "integer",
1321
+ "unit" : "raw",
1322
+ "default" : "0"
1323
+ } ],
1324
+ "id" : "urn:wisebed:uzl1:0x2234"
1325
+ }, {
1326
+ "position" : {
1327
+ "x" : 25.5,
1328
+ "y" : 14.0,
1329
+ "z" : 2.0,
1330
+ "phi" : null,
1331
+ "theta" : null
1332
+ },
1333
+ "gateway" : true,
1334
+ "programDetails" : null,
1335
+ "nodeType" : "isense39",
1336
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
1337
+ "capability" : [ {
1338
+ "name" : "urn:wisebed:node:capability:pir",
1339
+ "datatype" : "integer",
1340
+ "unit" : "raw",
1341
+ "default" : "0"
1342
+ }, {
1343
+ "name" : "urn:wisebed:node:capability:acc",
1344
+ "datatype" : "integer",
1345
+ "unit" : "raw",
1346
+ "default" : "[0,0,0]"
1347
+ } ],
1348
+ "id" : "urn:wisebed:uzl1:0x2034"
1349
+ }, {
1350
+ "position" : {
1351
+ "x" : 34.5,
1352
+ "y" : 10.5,
1353
+ "z" : 2.0,
1354
+ "phi" : null,
1355
+ "theta" : null
1356
+ },
1357
+ "gateway" : true,
1358
+ "programDetails" : null,
1359
+ "nodeType" : "telosb",
1360
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
1361
+ "capability" : [ {
1362
+ "name" : "urn:wisebed:node:capability:temperature",
1363
+ "datatype" : "integer",
1364
+ "unit" : "degrees",
1365
+ "default" : "0"
1366
+ }, {
1367
+ "name" : "urn:wisebed:node:capability:light",
1368
+ "datatype" : "integer",
1369
+ "unit" : "lux",
1370
+ "default" : "0"
1371
+ }, {
1372
+ "name" : "urn:wisebed:node:capability:ir",
1373
+ "datatype" : "integer",
1374
+ "unit" : "lux",
1375
+ "default" : "0"
1376
+ }, {
1377
+ "name" : "urn:wisebed:node:capability:humidity",
1378
+ "datatype" : "integer",
1379
+ "unit" : "raw",
1380
+ "default" : "0"
1381
+ } ],
1382
+ "id" : "urn:wisebed:uzl1:0x2232"
1383
+ }, {
1384
+ "position" : {
1385
+ "x" : 34.5,
1386
+ "y" : 10.5,
1387
+ "z" : 2.0,
1388
+ "phi" : null,
1389
+ "theta" : null
1390
+ },
1391
+ "gateway" : true,
1392
+ "programDetails" : null,
1393
+ "nodeType" : "isense48",
1394
+ "description" : "Processor: Jennic JN5148 (128kB RAM, 512kB Flash, 32 Bit RISC Controller, 4-32MHz) Radio: IEEE 802.15.4 compliant radio, 250kbit/s, hardware AES encryption, ToF ranging engine)",
1395
+ "capability" : [ {
1396
+ "name" : "urn:wisebed:node:capability:temperature",
1397
+ "datatype" : "integer",
1398
+ "unit" : "degrees",
1399
+ "default" : "0"
1400
+ }, {
1401
+ "name" : "urn:wisebed:node:capability:light",
1402
+ "datatype" : "integer",
1403
+ "unit" : "lux",
1404
+ "default" : "0"
1405
+ } ],
1406
+ "id" : "urn:wisebed:uzl1:0x2130"
1407
+ }, {
1408
+ "position" : {
1409
+ "x" : 17.0,
1410
+ "y" : 16.5,
1411
+ "z" : 1.0,
1412
+ "phi" : null,
1413
+ "theta" : null
1414
+ },
1415
+ "gateway" : true,
1416
+ "programDetails" : null,
1417
+ "nodeType" : "telosb",
1418
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
1419
+ "capability" : [ {
1420
+ "name" : "urn:wisebed:node:capability:temperature",
1421
+ "datatype" : "integer",
1422
+ "unit" : "degrees",
1423
+ "default" : "0"
1424
+ }, {
1425
+ "name" : "urn:wisebed:node:capability:light",
1426
+ "datatype" : "integer",
1427
+ "unit" : "lux",
1428
+ "default" : "0"
1429
+ }, {
1430
+ "name" : "urn:wisebed:node:capability:ir",
1431
+ "datatype" : "integer",
1432
+ "unit" : "lux",
1433
+ "default" : "0"
1434
+ }, {
1435
+ "name" : "urn:wisebed:node:capability:humidity",
1436
+ "datatype" : "integer",
1437
+ "unit" : "raw",
1438
+ "default" : "0"
1439
+ } ],
1440
+ "id" : "urn:wisebed:uzl1:0x222e"
1441
+ }, {
1442
+ "position" : {
1443
+ "x" : 17.0,
1444
+ "y" : 16.5,
1445
+ "z" : 1.0,
1446
+ "phi" : null,
1447
+ "theta" : null
1448
+ },
1449
+ "gateway" : true,
1450
+ "programDetails" : null,
1451
+ "nodeType" : "isense48",
1452
+ "description" : "Processor: Jennic JN5148 (128kB RAM, 512kB Flash, 32 Bit RISC Controller, 4-32MHz) Radio: IEEE 802.15.4 compliant radio, 250kbit/s, hardware AES encryption, ToF ranging engine)",
1453
+ "capability" : [ {
1454
+ "name" : "urn:wisebed:node:capability:temperature",
1455
+ "datatype" : "integer",
1456
+ "unit" : "degrees",
1457
+ "default" : "0"
1458
+ }, {
1459
+ "name" : "urn:wisebed:node:capability:light",
1460
+ "datatype" : "integer",
1461
+ "unit" : "lux",
1462
+ "default" : "0"
1463
+ } ],
1464
+ "id" : "urn:wisebed:uzl1:0x212c"
1465
+ }, {
1466
+ "position" : {
1467
+ "x" : 31.5,
1468
+ "y" : 11.5,
1469
+ "z" : 2.0,
1470
+ "phi" : null,
1471
+ "theta" : null
1472
+ },
1473
+ "gateway" : true,
1474
+ "programDetails" : null,
1475
+ "nodeType" : "telosb",
1476
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
1477
+ "capability" : [ {
1478
+ "name" : "urn:wisebed:node:capability:temperature",
1479
+ "datatype" : "integer",
1480
+ "unit" : "degrees",
1481
+ "default" : "0"
1482
+ }, {
1483
+ "name" : "urn:wisebed:node:capability:light",
1484
+ "datatype" : "integer",
1485
+ "unit" : "lux",
1486
+ "default" : "0"
1487
+ }, {
1488
+ "name" : "urn:wisebed:node:capability:ir",
1489
+ "datatype" : "integer",
1490
+ "unit" : "lux",
1491
+ "default" : "0"
1492
+ }, {
1493
+ "name" : "urn:wisebed:node:capability:humidity",
1494
+ "datatype" : "integer",
1495
+ "unit" : "raw",
1496
+ "default" : "0"
1497
+ } ],
1498
+ "id" : "urn:wisebed:uzl1:0x222d"
1499
+ }, {
1500
+ "position" : {
1501
+ "x" : 31.5,
1502
+ "y" : 11.5,
1503
+ "z" : 2.0,
1504
+ "phi" : null,
1505
+ "theta" : null
1506
+ },
1507
+ "gateway" : true,
1508
+ "programDetails" : null,
1509
+ "nodeType" : "isense39",
1510
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
1511
+ "capability" : [ {
1512
+ "name" : "urn:wisebed:node:capability:temperature",
1513
+ "datatype" : "integer",
1514
+ "unit" : "degrees",
1515
+ "default" : "0"
1516
+ }, {
1517
+ "name" : "urn:wisebed:node:capability:light",
1518
+ "datatype" : "integer",
1519
+ "unit" : "lux",
1520
+ "default" : "0"
1521
+ } ],
1522
+ "id" : "urn:wisebed:uzl1:0x202d"
1523
+ }, {
1524
+ "position" : {
1525
+ "x" : 31.5,
1526
+ "y" : 12.0,
1527
+ "z" : 2.0,
1528
+ "phi" : null,
1529
+ "theta" : null
1530
+ },
1531
+ "gateway" : true,
1532
+ "programDetails" : null,
1533
+ "nodeType" : "telosb",
1534
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
1535
+ "capability" : [ {
1536
+ "name" : "urn:wisebed:node:capability:temperature",
1537
+ "datatype" : "integer",
1538
+ "unit" : "degrees",
1539
+ "default" : "0"
1540
+ }, {
1541
+ "name" : "urn:wisebed:node:capability:light",
1542
+ "datatype" : "integer",
1543
+ "unit" : "lux",
1544
+ "default" : "0"
1545
+ }, {
1546
+ "name" : "urn:wisebed:node:capability:ir",
1547
+ "datatype" : "integer",
1548
+ "unit" : "lux",
1549
+ "default" : "0"
1550
+ }, {
1551
+ "name" : "urn:wisebed:node:capability:humidity",
1552
+ "datatype" : "integer",
1553
+ "unit" : "raw",
1554
+ "default" : "0"
1555
+ } ],
1556
+ "id" : "urn:wisebed:uzl1:0x222c"
1557
+ }, {
1558
+ "position" : {
1559
+ "x" : 31.5,
1560
+ "y" : 12.0,
1561
+ "z" : 2.0,
1562
+ "phi" : null,
1563
+ "theta" : null
1564
+ },
1565
+ "gateway" : true,
1566
+ "programDetails" : null,
1567
+ "nodeType" : "isense39",
1568
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
1569
+ "capability" : [ {
1570
+ "name" : "urn:wisebed:node:capability:pir",
1571
+ "datatype" : "integer",
1572
+ "unit" : "raw",
1573
+ "default" : "0"
1574
+ }, {
1575
+ "name" : "urn:wisebed:node:capability:acc",
1576
+ "datatype" : "integer",
1577
+ "unit" : "raw",
1578
+ "default" : "[0,0,0]"
1579
+ } ],
1580
+ "id" : "urn:wisebed:uzl1:0x202c"
1581
+ }, {
1582
+ "position" : {
1583
+ "x" : 1.0,
1584
+ "y" : 14.0,
1585
+ "z" : 2.0,
1586
+ "phi" : null,
1587
+ "theta" : null
1588
+ },
1589
+ "gateway" : true,
1590
+ "programDetails" : null,
1591
+ "nodeType" : "telosb",
1592
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
1593
+ "capability" : [ {
1594
+ "name" : "urn:wisebed:node:capability:temperature",
1595
+ "datatype" : "integer",
1596
+ "unit" : "degrees",
1597
+ "default" : "0"
1598
+ }, {
1599
+ "name" : "urn:wisebed:node:capability:light",
1600
+ "datatype" : "integer",
1601
+ "unit" : "lux",
1602
+ "default" : "0"
1603
+ }, {
1604
+ "name" : "urn:wisebed:node:capability:ir",
1605
+ "datatype" : "integer",
1606
+ "unit" : "lux",
1607
+ "default" : "0"
1608
+ }, {
1609
+ "name" : "urn:wisebed:node:capability:humidity",
1610
+ "datatype" : "integer",
1611
+ "unit" : "raw",
1612
+ "default" : "0"
1613
+ } ],
1614
+ "id" : "urn:wisebed:uzl1:0x222a"
1615
+ }, {
1616
+ "position" : {
1617
+ "x" : 1.0,
1618
+ "y" : 14.0,
1619
+ "z" : 2.0,
1620
+ "phi" : null,
1621
+ "theta" : null
1622
+ },
1623
+ "gateway" : true,
1624
+ "programDetails" : null,
1625
+ "nodeType" : "isense48",
1626
+ "description" : "Processor: Jennic JN5148 (128kB RAM, 512kB Flash, 32 Bit RISC Controller, 4-32MHz) Radio: IEEE 802.15.4 compliant radio, 250kbit/s, hardware AES encryption, ToF ranging engine)",
1627
+ "capability" : [ {
1628
+ "name" : "urn:wisebed:node:capability:temperature",
1629
+ "datatype" : "integer",
1630
+ "unit" : "degrees",
1631
+ "default" : "0"
1632
+ }, {
1633
+ "name" : "urn:wisebed:node:capability:light",
1634
+ "datatype" : "integer",
1635
+ "unit" : "lux",
1636
+ "default" : "0"
1637
+ } ],
1638
+ "id" : "urn:wisebed:uzl1:0x2128"
1639
+ }, {
1640
+ "position" : {
1641
+ "x" : 34.5,
1642
+ "y" : 10.5,
1643
+ "z" : 2.0,
1644
+ "phi" : null,
1645
+ "theta" : null
1646
+ },
1647
+ "gateway" : true,
1648
+ "programDetails" : null,
1649
+ "nodeType" : "telosb",
1650
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
1651
+ "capability" : [ {
1652
+ "name" : "urn:wisebed:node:capability:temperature",
1653
+ "datatype" : "integer",
1654
+ "unit" : "degrees",
1655
+ "default" : "0"
1656
+ }, {
1657
+ "name" : "urn:wisebed:node:capability:light",
1658
+ "datatype" : "integer",
1659
+ "unit" : "lux",
1660
+ "default" : "0"
1661
+ }, {
1662
+ "name" : "urn:wisebed:node:capability:ir",
1663
+ "datatype" : "integer",
1664
+ "unit" : "lux",
1665
+ "default" : "0"
1666
+ }, {
1667
+ "name" : "urn:wisebed:node:capability:humidity",
1668
+ "datatype" : "integer",
1669
+ "unit" : "raw",
1670
+ "default" : "0"
1671
+ } ],
1672
+ "id" : "urn:wisebed:uzl1:0x2229"
1673
+ }, {
1674
+ "position" : {
1675
+ "x" : 34.5,
1676
+ "y" : 10.5,
1677
+ "z" : 2.0,
1678
+ "phi" : null,
1679
+ "theta" : null
1680
+ },
1681
+ "gateway" : true,
1682
+ "programDetails" : null,
1683
+ "nodeType" : "isense39",
1684
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
1685
+ "capability" : [ {
1686
+ "name" : "urn:wisebed:node:capability:temperature",
1687
+ "datatype" : "integer",
1688
+ "unit" : "degrees",
1689
+ "default" : "0"
1690
+ }, {
1691
+ "name" : "urn:wisebed:node:capability:light",
1692
+ "datatype" : "integer",
1693
+ "unit" : "lux",
1694
+ "default" : "0"
1695
+ } ],
1696
+ "id" : "urn:wisebed:uzl1:0x2029"
1697
+ }, {
1698
+ "position" : {
1699
+ "x" : 34.5,
1700
+ "y" : 11.5,
1701
+ "z" : 2.0,
1702
+ "phi" : null,
1703
+ "theta" : null
1704
+ },
1705
+ "gateway" : true,
1706
+ "programDetails" : null,
1707
+ "nodeType" : "telosb",
1708
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
1709
+ "capability" : [ {
1710
+ "name" : "urn:wisebed:node:capability:temperature",
1711
+ "datatype" : "integer",
1712
+ "unit" : "degrees",
1713
+ "default" : "0"
1714
+ }, {
1715
+ "name" : "urn:wisebed:node:capability:light",
1716
+ "datatype" : "integer",
1717
+ "unit" : "lux",
1718
+ "default" : "0"
1719
+ }, {
1720
+ "name" : "urn:wisebed:node:capability:ir",
1721
+ "datatype" : "integer",
1722
+ "unit" : "lux",
1723
+ "default" : "0"
1724
+ }, {
1725
+ "name" : "urn:wisebed:node:capability:humidity",
1726
+ "datatype" : "integer",
1727
+ "unit" : "raw",
1728
+ "default" : "0"
1729
+ } ],
1730
+ "id" : "urn:wisebed:uzl1:0x2228"
1731
+ }, {
1732
+ "position" : {
1733
+ "x" : 34.5,
1734
+ "y" : 11.5,
1735
+ "z" : 2.0,
1736
+ "phi" : null,
1737
+ "theta" : null
1738
+ },
1739
+ "gateway" : true,
1740
+ "programDetails" : null,
1741
+ "nodeType" : "isense39",
1742
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
1743
+ "capability" : [ {
1744
+ "name" : "urn:wisebed:node:capability:pir",
1745
+ "datatype" : "integer",
1746
+ "unit" : "raw",
1747
+ "default" : "0"
1748
+ }, {
1749
+ "name" : "urn:wisebed:node:capability:acc",
1750
+ "datatype" : "integer",
1751
+ "unit" : "raw",
1752
+ "default" : "[0,0,0]"
1753
+ } ],
1754
+ "id" : "urn:wisebed:uzl1:0x2028"
1755
+ }, {
1756
+ "position" : {
1757
+ "x" : 1.0,
1758
+ "y" : 11.0,
1759
+ "z" : 1.0,
1760
+ "phi" : null,
1761
+ "theta" : null
1762
+ },
1763
+ "gateway" : true,
1764
+ "programDetails" : null,
1765
+ "nodeType" : "telosb",
1766
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
1767
+ "capability" : [ {
1768
+ "name" : "urn:wisebed:node:capability:temperature",
1769
+ "datatype" : "integer",
1770
+ "unit" : "degrees",
1771
+ "default" : "0"
1772
+ }, {
1773
+ "name" : "urn:wisebed:node:capability:light",
1774
+ "datatype" : "integer",
1775
+ "unit" : "lux",
1776
+ "default" : "0"
1777
+ }, {
1778
+ "name" : "urn:wisebed:node:capability:ir",
1779
+ "datatype" : "integer",
1780
+ "unit" : "lux",
1781
+ "default" : "0"
1782
+ }, {
1783
+ "name" : "urn:wisebed:node:capability:humidity",
1784
+ "datatype" : "integer",
1785
+ "unit" : "raw",
1786
+ "default" : "0"
1787
+ } ],
1788
+ "id" : "urn:wisebed:uzl1:0x2222"
1789
+ }, {
1790
+ "position" : {
1791
+ "x" : 1.0,
1792
+ "y" : 11.0,
1793
+ "z" : 1.0,
1794
+ "phi" : null,
1795
+ "theta" : null
1796
+ },
1797
+ "gateway" : true,
1798
+ "programDetails" : null,
1799
+ "nodeType" : "isense48",
1800
+ "description" : "Processor: Jennic JN5148 (128kB RAM, 512kB Flash, 32 Bit RISC Controller, 4-32MHz) Radio: IEEE 802.15.4 compliant radio, 250kbit/s, hardware AES encryption, ToF ranging engine)",
1801
+ "capability" : [ {
1802
+ "name" : "urn:wisebed:node:capability:pir",
1803
+ "datatype" : "integer",
1804
+ "unit" : "raw",
1805
+ "default" : "0"
1806
+ }, {
1807
+ "name" : "urn:wisebed:node:capability:acc",
1808
+ "datatype" : "integer",
1809
+ "unit" : "raw",
1810
+ "default" : "[0,0,0]"
1811
+ } ],
1812
+ "id" : "urn:wisebed:uzl1:0x2120"
1813
+ }, {
1814
+ "position" : {
1815
+ "x" : 1.0,
1816
+ "y" : 6.0,
1817
+ "z" : 2.0,
1818
+ "phi" : null,
1819
+ "theta" : null
1820
+ },
1821
+ "gateway" : true,
1822
+ "programDetails" : null,
1823
+ "nodeType" : "telosb",
1824
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
1825
+ "capability" : [ {
1826
+ "name" : "urn:wisebed:node:capability:temperature",
1827
+ "datatype" : "integer",
1828
+ "unit" : "degrees",
1829
+ "default" : "0"
1830
+ }, {
1831
+ "name" : "urn:wisebed:node:capability:light",
1832
+ "datatype" : "integer",
1833
+ "unit" : "lux",
1834
+ "default" : "0"
1835
+ }, {
1836
+ "name" : "urn:wisebed:node:capability:ir",
1837
+ "datatype" : "integer",
1838
+ "unit" : "lux",
1839
+ "default" : "0"
1840
+ }, {
1841
+ "name" : "urn:wisebed:node:capability:humidity",
1842
+ "datatype" : "integer",
1843
+ "unit" : "raw",
1844
+ "default" : "0"
1845
+ } ],
1846
+ "id" : "urn:wisebed:uzl1:0x2221"
1847
+ }, {
1848
+ "position" : {
1849
+ "x" : 1.0,
1850
+ "y" : 6.0,
1851
+ "z" : 2.0,
1852
+ "phi" : null,
1853
+ "theta" : null
1854
+ },
1855
+ "gateway" : true,
1856
+ "programDetails" : null,
1857
+ "nodeType" : "isense39",
1858
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
1859
+ "capability" : [ {
1860
+ "name" : "urn:wisebed:node:capability:pir",
1861
+ "datatype" : "integer",
1862
+ "unit" : "raw",
1863
+ "default" : "0"
1864
+ }, {
1865
+ "name" : "urn:wisebed:node:capability:acc",
1866
+ "datatype" : "integer",
1867
+ "unit" : "raw",
1868
+ "default" : "[0,0,0]"
1869
+ } ],
1870
+ "id" : "urn:wisebed:uzl1:0x2021"
1871
+ }, {
1872
+ "position" : {
1873
+ "x" : 1.0,
1874
+ "y" : 6.0,
1875
+ "z" : 2.0,
1876
+ "phi" : null,
1877
+ "theta" : null
1878
+ },
1879
+ "gateway" : true,
1880
+ "programDetails" : null,
1881
+ "nodeType" : "telosb",
1882
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
1883
+ "capability" : [ {
1884
+ "name" : "urn:wisebed:node:capability:temperature",
1885
+ "datatype" : "integer",
1886
+ "unit" : "degrees",
1887
+ "default" : "0"
1888
+ }, {
1889
+ "name" : "urn:wisebed:node:capability:light",
1890
+ "datatype" : "integer",
1891
+ "unit" : "lux",
1892
+ "default" : "0"
1893
+ }, {
1894
+ "name" : "urn:wisebed:node:capability:ir",
1895
+ "datatype" : "integer",
1896
+ "unit" : "lux",
1897
+ "default" : "0"
1898
+ }, {
1899
+ "name" : "urn:wisebed:node:capability:humidity",
1900
+ "datatype" : "integer",
1901
+ "unit" : "raw",
1902
+ "default" : "0"
1903
+ } ],
1904
+ "id" : "urn:wisebed:uzl1:0x2220"
1905
+ }, {
1906
+ "position" : {
1907
+ "x" : 1.0,
1908
+ "y" : 6.0,
1909
+ "z" : 2.0,
1910
+ "phi" : null,
1911
+ "theta" : null
1912
+ },
1913
+ "gateway" : true,
1914
+ "programDetails" : null,
1915
+ "nodeType" : "isense39",
1916
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
1917
+ "capability" : [ {
1918
+ "name" : "urn:wisebed:node:capability:pir",
1919
+ "datatype" : "integer",
1920
+ "unit" : "raw",
1921
+ "default" : "0"
1922
+ }, {
1923
+ "name" : "urn:wisebed:node:capability:acc",
1924
+ "datatype" : "integer",
1925
+ "unit" : "raw",
1926
+ "default" : "[0,0,0]"
1927
+ } ],
1928
+ "id" : "urn:wisebed:uzl1:0x2020"
1929
+ }, {
1930
+ "position" : {
1931
+ "x" : 23.0,
1932
+ "y" : 10.0,
1933
+ "z" : 1.0,
1934
+ "phi" : null,
1935
+ "theta" : null
1936
+ },
1937
+ "gateway" : true,
1938
+ "programDetails" : null,
1939
+ "nodeType" : "telosb",
1940
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
1941
+ "capability" : [ {
1942
+ "name" : "urn:wisebed:node:capability:temperature",
1943
+ "datatype" : "integer",
1944
+ "unit" : "degrees",
1945
+ "default" : "0"
1946
+ }, {
1947
+ "name" : "urn:wisebed:node:capability:light",
1948
+ "datatype" : "integer",
1949
+ "unit" : "lux",
1950
+ "default" : "0"
1951
+ }, {
1952
+ "name" : "urn:wisebed:node:capability:ir",
1953
+ "datatype" : "integer",
1954
+ "unit" : "lux",
1955
+ "default" : "0"
1956
+ }, {
1957
+ "name" : "urn:wisebed:node:capability:humidity",
1958
+ "datatype" : "integer",
1959
+ "unit" : "raw",
1960
+ "default" : "0"
1961
+ } ],
1962
+ "id" : "urn:wisebed:uzl1:0x2238"
1963
+ }, {
1964
+ "position" : {
1965
+ "x" : 23.0,
1966
+ "y" : 10.0,
1967
+ "z" : 1.0,
1968
+ "phi" : null,
1969
+ "theta" : null
1970
+ },
1971
+ "gateway" : true,
1972
+ "programDetails" : null,
1973
+ "nodeType" : "isense39",
1974
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
1975
+ "capability" : [ {
1976
+ "name" : "urn:wisebed:node:capability:temperature",
1977
+ "datatype" : "integer",
1978
+ "unit" : "degrees",
1979
+ "default" : "0"
1980
+ }, {
1981
+ "name" : "urn:wisebed:node:capability:light",
1982
+ "datatype" : "integer",
1983
+ "unit" : "lux",
1984
+ "default" : "0"
1985
+ } ],
1986
+ "id" : "urn:wisebed:uzl1:0x2038"
1987
+ }, {
1988
+ "position" : {
1989
+ "x" : 23.0,
1990
+ "y" : 12.0,
1991
+ "z" : 1.0,
1992
+ "phi" : null,
1993
+ "theta" : null
1994
+ },
1995
+ "gateway" : true,
1996
+ "programDetails" : null,
1997
+ "nodeType" : "telosb",
1998
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
1999
+ "capability" : [ {
2000
+ "name" : "urn:wisebed:node:capability:temperature",
2001
+ "datatype" : "integer",
2002
+ "unit" : "degrees",
2003
+ "default" : "0"
2004
+ }, {
2005
+ "name" : "urn:wisebed:node:capability:light",
2006
+ "datatype" : "integer",
2007
+ "unit" : "lux",
2008
+ "default" : "0"
2009
+ }, {
2010
+ "name" : "urn:wisebed:node:capability:ir",
2011
+ "datatype" : "integer",
2012
+ "unit" : "lux",
2013
+ "default" : "0"
2014
+ }, {
2015
+ "name" : "urn:wisebed:node:capability:humidity",
2016
+ "datatype" : "integer",
2017
+ "unit" : "raw",
2018
+ "default" : "0"
2019
+ } ],
2020
+ "id" : "urn:wisebed:uzl1:0x2239"
2021
+ }, {
2022
+ "position" : {
2023
+ "x" : 23.0,
2024
+ "y" : 12.0,
2025
+ "z" : 1.0,
2026
+ "phi" : null,
2027
+ "theta" : null
2028
+ },
2029
+ "gateway" : true,
2030
+ "programDetails" : null,
2031
+ "nodeType" : "isense39",
2032
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
2033
+ "capability" : [ {
2034
+ "name" : "urn:wisebed:node:capability:pir",
2035
+ "datatype" : "integer",
2036
+ "unit" : "raw",
2037
+ "default" : "0"
2038
+ }, {
2039
+ "name" : "urn:wisebed:node:capability:acc",
2040
+ "datatype" : "integer",
2041
+ "unit" : "raw",
2042
+ "default" : "[0,0,0]"
2043
+ } ],
2044
+ "id" : "urn:wisebed:uzl1:0x2039"
2045
+ }, {
2046
+ "position" : {
2047
+ "x" : 14.0,
2048
+ "y" : 5.0,
2049
+ "z" : 1.0,
2050
+ "phi" : null,
2051
+ "theta" : null
2052
+ },
2053
+ "gateway" : true,
2054
+ "programDetails" : null,
2055
+ "nodeType" : "telosb",
2056
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
2057
+ "capability" : [ {
2058
+ "name" : "urn:wisebed:node:capability:temperature",
2059
+ "datatype" : "integer",
2060
+ "unit" : "degrees",
2061
+ "default" : "0"
2062
+ }, {
2063
+ "name" : "urn:wisebed:node:capability:light",
2064
+ "datatype" : "integer",
2065
+ "unit" : "lux",
2066
+ "default" : "0"
2067
+ }, {
2068
+ "name" : "urn:wisebed:node:capability:ir",
2069
+ "datatype" : "integer",
2070
+ "unit" : "lux",
2071
+ "default" : "0"
2072
+ }, {
2073
+ "name" : "urn:wisebed:node:capability:humidity",
2074
+ "datatype" : "integer",
2075
+ "unit" : "raw",
2076
+ "default" : "0"
2077
+ } ],
2078
+ "id" : "urn:wisebed:uzl1:0x223a"
2079
+ }, {
2080
+ "position" : {
2081
+ "x" : 14.0,
2082
+ "y" : 5.0,
2083
+ "z" : 1.0,
2084
+ "phi" : null,
2085
+ "theta" : null
2086
+ },
2087
+ "gateway" : true,
2088
+ "programDetails" : null,
2089
+ "nodeType" : "isense48",
2090
+ "description" : "Processor: Jennic JN5148 (128kB RAM, 512kB Flash, 32 Bit RISC Controller, 4-32MHz) Radio: IEEE 802.15.4 compliant radio, 250kbit/s, hardware AES encryption, ToF ranging engine)",
2091
+ "capability" : [ {
2092
+ "name" : "urn:wisebed:node:capability:temperature",
2093
+ "datatype" : "integer",
2094
+ "unit" : "degrees",
2095
+ "default" : "0"
2096
+ }, {
2097
+ "name" : "urn:wisebed:node:capability:light",
2098
+ "datatype" : "integer",
2099
+ "unit" : "lux",
2100
+ "default" : "0"
2101
+ } ],
2102
+ "id" : "urn:wisebed:uzl1:0x2138"
2103
+ }, {
2104
+ "position" : {
2105
+ "x" : 17.0,
2106
+ "y" : 13.5,
2107
+ "z" : 1.0,
2108
+ "phi" : null,
2109
+ "theta" : null
2110
+ },
2111
+ "gateway" : true,
2112
+ "programDetails" : null,
2113
+ "nodeType" : "telosb",
2114
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
2115
+ "capability" : [ {
2116
+ "name" : "urn:wisebed:node:capability:temperature",
2117
+ "datatype" : "integer",
2118
+ "unit" : "degrees",
2119
+ "default" : "0"
2120
+ }, {
2121
+ "name" : "urn:wisebed:node:capability:light",
2122
+ "datatype" : "integer",
2123
+ "unit" : "lux",
2124
+ "default" : "0"
2125
+ }, {
2126
+ "name" : "urn:wisebed:node:capability:ir",
2127
+ "datatype" : "integer",
2128
+ "unit" : "lux",
2129
+ "default" : "0"
2130
+ }, {
2131
+ "name" : "urn:wisebed:node:capability:humidity",
2132
+ "datatype" : "integer",
2133
+ "unit" : "raw",
2134
+ "default" : "0"
2135
+ } ],
2136
+ "id" : "urn:wisebed:uzl1:0x223c"
2137
+ }, {
2138
+ "position" : {
2139
+ "x" : 17.0,
2140
+ "y" : 13.5,
2141
+ "z" : 1.0,
2142
+ "phi" : null,
2143
+ "theta" : null
2144
+ },
2145
+ "gateway" : true,
2146
+ "programDetails" : null,
2147
+ "nodeType" : "isense39",
2148
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
2149
+ "capability" : [ {
2150
+ "name" : "urn:wisebed:node:capability:pir",
2151
+ "datatype" : "integer",
2152
+ "unit" : "raw",
2153
+ "default" : "0"
2154
+ }, {
2155
+ "name" : "urn:wisebed:node:capability:acc",
2156
+ "datatype" : "integer",
2157
+ "unit" : "raw",
2158
+ "default" : "[0,0,0]"
2159
+ } ],
2160
+ "id" : "urn:wisebed:uzl1:0x203c"
2161
+ }, {
2162
+ "position" : {
2163
+ "x" : 14.5,
2164
+ "y" : 13.5,
2165
+ "z" : 2.0,
2166
+ "phi" : null,
2167
+ "theta" : null
2168
+ },
2169
+ "gateway" : true,
2170
+ "programDetails" : null,
2171
+ "nodeType" : "telosb",
2172
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
2173
+ "capability" : [ {
2174
+ "name" : "urn:wisebed:node:capability:temperature",
2175
+ "datatype" : "integer",
2176
+ "unit" : "degrees",
2177
+ "default" : "0"
2178
+ }, {
2179
+ "name" : "urn:wisebed:node:capability:light",
2180
+ "datatype" : "integer",
2181
+ "unit" : "lux",
2182
+ "default" : "0"
2183
+ }, {
2184
+ "name" : "urn:wisebed:node:capability:ir",
2185
+ "datatype" : "integer",
2186
+ "unit" : "lux",
2187
+ "default" : "0"
2188
+ }, {
2189
+ "name" : "urn:wisebed:node:capability:humidity",
2190
+ "datatype" : "integer",
2191
+ "unit" : "raw",
2192
+ "default" : "0"
2193
+ } ],
2194
+ "id" : "urn:wisebed:uzl1:0x223d"
2195
+ }, {
2196
+ "position" : {
2197
+ "x" : 14.5,
2198
+ "y" : 13.5,
2199
+ "z" : 2.0,
2200
+ "phi" : null,
2201
+ "theta" : null
2202
+ },
2203
+ "gateway" : true,
2204
+ "programDetails" : null,
2205
+ "nodeType" : "isense39",
2206
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
2207
+ "capability" : [ {
2208
+ "name" : "urn:wisebed:node:capability:temperature",
2209
+ "datatype" : "integer",
2210
+ "unit" : "degrees",
2211
+ "default" : "0"
2212
+ }, {
2213
+ "name" : "urn:wisebed:node:capability:light",
2214
+ "datatype" : "integer",
2215
+ "unit" : "lux",
2216
+ "default" : "0"
2217
+ } ],
2218
+ "id" : "urn:wisebed:uzl1:0x203d"
2219
+ }, {
2220
+ "position" : {
2221
+ "x" : 25.0,
2222
+ "y" : 1.0,
2223
+ "z" : 2.0,
2224
+ "phi" : null,
2225
+ "theta" : null
2226
+ },
2227
+ "gateway" : true,
2228
+ "programDetails" : null,
2229
+ "nodeType" : "telosb",
2230
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
2231
+ "capability" : [ {
2232
+ "name" : "urn:wisebed:node:capability:temperature",
2233
+ "datatype" : "integer",
2234
+ "unit" : "degrees",
2235
+ "default" : "0"
2236
+ }, {
2237
+ "name" : "urn:wisebed:node:capability:light",
2238
+ "datatype" : "integer",
2239
+ "unit" : "lux",
2240
+ "default" : "0"
2241
+ }, {
2242
+ "name" : "urn:wisebed:node:capability:ir",
2243
+ "datatype" : "integer",
2244
+ "unit" : "lux",
2245
+ "default" : "0"
2246
+ }, {
2247
+ "name" : "urn:wisebed:node:capability:humidity",
2248
+ "datatype" : "integer",
2249
+ "unit" : "raw",
2250
+ "default" : "0"
2251
+ } ],
2252
+ "id" : "urn:wisebed:uzl1:0x223e"
2253
+ }, {
2254
+ "position" : {
2255
+ "x" : 25.0,
2256
+ "y" : 1.0,
2257
+ "z" : 2.0,
2258
+ "phi" : null,
2259
+ "theta" : null
2260
+ },
2261
+ "gateway" : true,
2262
+ "programDetails" : null,
2263
+ "nodeType" : "isense48",
2264
+ "description" : "Processor: Jennic JN5148 (128kB RAM, 512kB Flash, 32 Bit RISC Controller, 4-32MHz) Radio: IEEE 802.15.4 compliant radio, 250kbit/s, hardware AES encryption, ToF ranging engine)",
2265
+ "capability" : [ {
2266
+ "name" : "urn:wisebed:node:capability:temperature",
2267
+ "datatype" : "integer",
2268
+ "unit" : "degrees",
2269
+ "default" : "0"
2270
+ }, {
2271
+ "name" : "urn:wisebed:node:capability:light",
2272
+ "datatype" : "integer",
2273
+ "unit" : "lux",
2274
+ "default" : "0"
2275
+ } ],
2276
+ "id" : "urn:wisebed:uzl1:0x213c"
2277
+ }, {
2278
+ "position" : {
2279
+ "x" : 2.5,
2280
+ "y" : 14.0,
2281
+ "z" : 1.0,
2282
+ "phi" : null,
2283
+ "theta" : null
2284
+ },
2285
+ "gateway" : true,
2286
+ "programDetails" : null,
2287
+ "nodeType" : "telosb",
2288
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
2289
+ "capability" : [ {
2290
+ "name" : "urn:wisebed:node:capability:temperature",
2291
+ "datatype" : "integer",
2292
+ "unit" : "degrees",
2293
+ "default" : "0"
2294
+ }, {
2295
+ "name" : "urn:wisebed:node:capability:light",
2296
+ "datatype" : "integer",
2297
+ "unit" : "lux",
2298
+ "default" : "0"
2299
+ }, {
2300
+ "name" : "urn:wisebed:node:capability:ir",
2301
+ "datatype" : "integer",
2302
+ "unit" : "lux",
2303
+ "default" : "0"
2304
+ }, {
2305
+ "name" : "urn:wisebed:node:capability:humidity",
2306
+ "datatype" : "integer",
2307
+ "unit" : "raw",
2308
+ "default" : "0"
2309
+ } ],
2310
+ "id" : "urn:wisebed:uzl1:0x2244"
2311
+ }, {
2312
+ "position" : {
2313
+ "x" : 2.5,
2314
+ "y" : 14.0,
2315
+ "z" : 1.0,
2316
+ "phi" : null,
2317
+ "theta" : null
2318
+ },
2319
+ "gateway" : true,
2320
+ "programDetails" : null,
2321
+ "nodeType" : "isense39",
2322
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
2323
+ "capability" : [ {
2324
+ "name" : "urn:wisebed:node:capability:temperature",
2325
+ "datatype" : "integer",
2326
+ "unit" : "degrees",
2327
+ "default" : "0"
2328
+ }, {
2329
+ "name" : "urn:wisebed:node:capability:light",
2330
+ "datatype" : "integer",
2331
+ "unit" : "lux",
2332
+ "default" : "0"
2333
+ } ],
2334
+ "id" : "urn:wisebed:uzl1:0x2044"
2335
+ }, {
2336
+ "position" : {
2337
+ "x" : 10.5,
2338
+ "y" : 6.0,
2339
+ "z" : 1.0,
2340
+ "phi" : null,
2341
+ "theta" : null
2342
+ },
2343
+ "gateway" : true,
2344
+ "programDetails" : null,
2345
+ "nodeType" : "telosb",
2346
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
2347
+ "capability" : [ {
2348
+ "name" : "urn:wisebed:node:capability:temperature",
2349
+ "datatype" : "integer",
2350
+ "unit" : "degrees",
2351
+ "default" : "0"
2352
+ }, {
2353
+ "name" : "urn:wisebed:node:capability:light",
2354
+ "datatype" : "integer",
2355
+ "unit" : "lux",
2356
+ "default" : "0"
2357
+ }, {
2358
+ "name" : "urn:wisebed:node:capability:ir",
2359
+ "datatype" : "integer",
2360
+ "unit" : "lux",
2361
+ "default" : "0"
2362
+ }, {
2363
+ "name" : "urn:wisebed:node:capability:humidity",
2364
+ "datatype" : "integer",
2365
+ "unit" : "raw",
2366
+ "default" : "0"
2367
+ } ],
2368
+ "id" : "urn:wisebed:uzl1:0x2246"
2369
+ }, {
2370
+ "position" : {
2371
+ "x" : 10.5,
2372
+ "y" : 6.0,
2373
+ "z" : 1.0,
2374
+ "phi" : null,
2375
+ "theta" : null
2376
+ },
2377
+ "gateway" : true,
2378
+ "programDetails" : null,
2379
+ "nodeType" : "isense48",
2380
+ "description" : "Processor: Jennic JN5148 (128kB RAM, 512kB Flash, 32 Bit RISC Controller, 4-32MHz) Radio: IEEE 802.15.4 compliant radio, 250kbit/s, hardware AES encryption, ToF ranging engine)",
2381
+ "capability" : [ {
2382
+ "name" : "urn:wisebed:node:capability:pir",
2383
+ "datatype" : "integer",
2384
+ "unit" : "raw",
2385
+ "default" : "0"
2386
+ }, {
2387
+ "name" : "urn:wisebed:node:capability:acc",
2388
+ "datatype" : "integer",
2389
+ "unit" : "raw",
2390
+ "default" : "[0,0,0]"
2391
+ } ],
2392
+ "id" : "urn:wisebed:uzl1:0x2144"
2393
+ }, {
2394
+ "position" : {
2395
+ "x" : 1.0,
2396
+ "y" : 14.0,
2397
+ "z" : 1.0,
2398
+ "phi" : null,
2399
+ "theta" : null
2400
+ },
2401
+ "gateway" : true,
2402
+ "programDetails" : null,
2403
+ "nodeType" : "telosb",
2404
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
2405
+ "capability" : [ {
2406
+ "name" : "urn:wisebed:node:capability:temperature",
2407
+ "datatype" : "integer",
2408
+ "unit" : "degrees",
2409
+ "default" : "0"
2410
+ }, {
2411
+ "name" : "urn:wisebed:node:capability:light",
2412
+ "datatype" : "integer",
2413
+ "unit" : "lux",
2414
+ "default" : "0"
2415
+ }, {
2416
+ "name" : "urn:wisebed:node:capability:ir",
2417
+ "datatype" : "integer",
2418
+ "unit" : "lux",
2419
+ "default" : "0"
2420
+ }, {
2421
+ "name" : "urn:wisebed:node:capability:humidity",
2422
+ "datatype" : "integer",
2423
+ "unit" : "raw",
2424
+ "default" : "0"
2425
+ } ],
2426
+ "id" : "urn:wisebed:uzl1:0x2245"
2427
+ }, {
2428
+ "position" : {
2429
+ "x" : 1.0,
2430
+ "y" : 14.0,
2431
+ "z" : 1.0,
2432
+ "phi" : null,
2433
+ "theta" : null
2434
+ },
2435
+ "gateway" : true,
2436
+ "programDetails" : null,
2437
+ "nodeType" : "isense39",
2438
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
2439
+ "capability" : [ {
2440
+ "name" : "urn:wisebed:node:capability:temperature",
2441
+ "datatype" : "integer",
2442
+ "unit" : "degrees",
2443
+ "default" : "0"
2444
+ }, {
2445
+ "name" : "urn:wisebed:node:capability:light",
2446
+ "datatype" : "integer",
2447
+ "unit" : "lux",
2448
+ "default" : "0"
2449
+ } ],
2450
+ "id" : "urn:wisebed:uzl1:0x2045"
2451
+ }, {
2452
+ "position" : {
2453
+ "x" : 6.0,
2454
+ "y" : 7.0,
2455
+ "z" : 2.0,
2456
+ "phi" : null,
2457
+ "theta" : null
2458
+ },
2459
+ "gateway" : true,
2460
+ "programDetails" : null,
2461
+ "nodeType" : "telosb",
2462
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
2463
+ "capability" : [ {
2464
+ "name" : "urn:wisebed:node:capability:temperature",
2465
+ "datatype" : "integer",
2466
+ "unit" : "degrees",
2467
+ "default" : "0"
2468
+ }, {
2469
+ "name" : "urn:wisebed:node:capability:light",
2470
+ "datatype" : "integer",
2471
+ "unit" : "lux",
2472
+ "default" : "0"
2473
+ }, {
2474
+ "name" : "urn:wisebed:node:capability:ir",
2475
+ "datatype" : "integer",
2476
+ "unit" : "lux",
2477
+ "default" : "0"
2478
+ }, {
2479
+ "name" : "urn:wisebed:node:capability:humidity",
2480
+ "datatype" : "integer",
2481
+ "unit" : "raw",
2482
+ "default" : "0"
2483
+ } ],
2484
+ "id" : "urn:wisebed:uzl1:0x2242"
2485
+ }, {
2486
+ "position" : {
2487
+ "x" : 6.0,
2488
+ "y" : 7.0,
2489
+ "z" : 2.0,
2490
+ "phi" : null,
2491
+ "theta" : null
2492
+ },
2493
+ "gateway" : true,
2494
+ "programDetails" : null,
2495
+ "nodeType" : "isense48",
2496
+ "description" : "Processor: Jennic JN5148 (128kB RAM, 512kB Flash, 32 Bit RISC Controller, 4-32MHz) Radio: IEEE 802.15.4 compliant radio, 250kbit/s, hardware AES encryption, ToF ranging engine)",
2497
+ "capability" : [ {
2498
+ "name" : "urn:wisebed:node:capability:pir",
2499
+ "datatype" : "integer",
2500
+ "unit" : "raw",
2501
+ "default" : "0"
2502
+ }, {
2503
+ "name" : "urn:wisebed:node:capability:acc",
2504
+ "datatype" : "integer",
2505
+ "unit" : "raw",
2506
+ "default" : "[0,0,0]"
2507
+ } ],
2508
+ "id" : "urn:wisebed:uzl1:0x2140"
2509
+ }, {
2510
+ "position" : {
2511
+ "x" : 1.0,
2512
+ "y" : 12.5,
2513
+ "z" : 2.0,
2514
+ "phi" : null,
2515
+ "theta" : null
2516
+ },
2517
+ "gateway" : true,
2518
+ "programDetails" : null,
2519
+ "nodeType" : "telosb",
2520
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
2521
+ "capability" : [ {
2522
+ "name" : "urn:wisebed:node:capability:temperature",
2523
+ "datatype" : "integer",
2524
+ "unit" : "degrees",
2525
+ "default" : "0"
2526
+ }, {
2527
+ "name" : "urn:wisebed:node:capability:light",
2528
+ "datatype" : "integer",
2529
+ "unit" : "lux",
2530
+ "default" : "0"
2531
+ }, {
2532
+ "name" : "urn:wisebed:node:capability:ir",
2533
+ "datatype" : "integer",
2534
+ "unit" : "lux",
2535
+ "default" : "0"
2536
+ }, {
2537
+ "name" : "urn:wisebed:node:capability:humidity",
2538
+ "datatype" : "integer",
2539
+ "unit" : "raw",
2540
+ "default" : "0"
2541
+ } ],
2542
+ "id" : "urn:wisebed:uzl1:0x2241"
2543
+ }, {
2544
+ "position" : {
2545
+ "x" : 1.0,
2546
+ "y" : 12.5,
2547
+ "z" : 2.0,
2548
+ "phi" : null,
2549
+ "theta" : null
2550
+ },
2551
+ "gateway" : true,
2552
+ "programDetails" : null,
2553
+ "nodeType" : "isense39",
2554
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
2555
+ "capability" : [ {
2556
+ "name" : "urn:wisebed:node:capability:pir",
2557
+ "datatype" : "integer",
2558
+ "unit" : "raw",
2559
+ "default" : "0"
2560
+ }, {
2561
+ "name" : "urn:wisebed:node:capability:acc",
2562
+ "datatype" : "integer",
2563
+ "unit" : "raw",
2564
+ "default" : "[0,0,0]"
2565
+ } ],
2566
+ "id" : "urn:wisebed:uzl1:0x2041"
2567
+ }, {
2568
+ "position" : {
2569
+ "x" : 1.0,
2570
+ "y" : 11.0,
2571
+ "z" : 2.0,
2572
+ "phi" : null,
2573
+ "theta" : null
2574
+ },
2575
+ "gateway" : true,
2576
+ "programDetails" : null,
2577
+ "nodeType" : "telosb",
2578
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
2579
+ "capability" : [ {
2580
+ "name" : "urn:wisebed:node:capability:temperature",
2581
+ "datatype" : "integer",
2582
+ "unit" : "degrees",
2583
+ "default" : "0"
2584
+ }, {
2585
+ "name" : "urn:wisebed:node:capability:light",
2586
+ "datatype" : "integer",
2587
+ "unit" : "lux",
2588
+ "default" : "0"
2589
+ }, {
2590
+ "name" : "urn:wisebed:node:capability:ir",
2591
+ "datatype" : "integer",
2592
+ "unit" : "lux",
2593
+ "default" : "0"
2594
+ }, {
2595
+ "name" : "urn:wisebed:node:capability:humidity",
2596
+ "datatype" : "integer",
2597
+ "unit" : "raw",
2598
+ "default" : "0"
2599
+ } ],
2600
+ "id" : "urn:wisebed:uzl1:0x2240"
2601
+ }, {
2602
+ "position" : {
2603
+ "x" : 1.0,
2604
+ "y" : 11.0,
2605
+ "z" : 2.0,
2606
+ "phi" : null,
2607
+ "theta" : null
2608
+ },
2609
+ "gateway" : true,
2610
+ "programDetails" : null,
2611
+ "nodeType" : "isense39",
2612
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
2613
+ "capability" : [ {
2614
+ "name" : "urn:wisebed:node:capability:temperature",
2615
+ "datatype" : "integer",
2616
+ "unit" : "degrees",
2617
+ "default" : "0"
2618
+ }, {
2619
+ "name" : "urn:wisebed:node:capability:light",
2620
+ "datatype" : "integer",
2621
+ "unit" : "lux",
2622
+ "default" : "0"
2623
+ } ],
2624
+ "id" : "urn:wisebed:uzl1:0x2040"
2625
+ }, {
2626
+ "position" : {
2627
+ "x" : 14.0,
2628
+ "y" : 4.0,
2629
+ "z" : 1.0,
2630
+ "phi" : null,
2631
+ "theta" : null
2632
+ },
2633
+ "gateway" : true,
2634
+ "programDetails" : null,
2635
+ "nodeType" : "telosb",
2636
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
2637
+ "capability" : [ {
2638
+ "name" : "urn:wisebed:node:capability:temperature",
2639
+ "datatype" : "integer",
2640
+ "unit" : "degrees",
2641
+ "default" : "0"
2642
+ }, {
2643
+ "name" : "urn:wisebed:node:capability:light",
2644
+ "datatype" : "integer",
2645
+ "unit" : "lux",
2646
+ "default" : "0"
2647
+ }, {
2648
+ "name" : "urn:wisebed:node:capability:ir",
2649
+ "datatype" : "integer",
2650
+ "unit" : "lux",
2651
+ "default" : "0"
2652
+ }, {
2653
+ "name" : "urn:wisebed:node:capability:humidity",
2654
+ "datatype" : "integer",
2655
+ "unit" : "raw",
2656
+ "default" : "0"
2657
+ } ],
2658
+ "id" : "urn:wisebed:uzl1:0x2211"
2659
+ }, {
2660
+ "position" : {
2661
+ "x" : 14.0,
2662
+ "y" : 4.0,
2663
+ "z" : 1.0,
2664
+ "phi" : null,
2665
+ "theta" : null
2666
+ },
2667
+ "gateway" : true,
2668
+ "programDetails" : null,
2669
+ "nodeType" : "isense39",
2670
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
2671
+ "capability" : [ {
2672
+ "name" : "urn:wisebed:node:capability:pir",
2673
+ "datatype" : "integer",
2674
+ "unit" : "raw",
2675
+ "default" : "0"
2676
+ }, {
2677
+ "name" : "urn:wisebed:node:capability:acc",
2678
+ "datatype" : "integer",
2679
+ "unit" : "raw",
2680
+ "default" : "[0,0,0]"
2681
+ } ],
2682
+ "id" : "urn:wisebed:uzl1:0x2011"
2683
+ }, {
2684
+ "position" : {
2685
+ "x" : 14.5,
2686
+ "y" : 12.0,
2687
+ "z" : 2.0,
2688
+ "phi" : null,
2689
+ "theta" : null
2690
+ },
2691
+ "gateway" : true,
2692
+ "programDetails" : null,
2693
+ "nodeType" : "telosb",
2694
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
2695
+ "capability" : [ {
2696
+ "name" : "urn:wisebed:node:capability:temperature",
2697
+ "datatype" : "integer",
2698
+ "unit" : "degrees",
2699
+ "default" : "0"
2700
+ }, {
2701
+ "name" : "urn:wisebed:node:capability:light",
2702
+ "datatype" : "integer",
2703
+ "unit" : "lux",
2704
+ "default" : "0"
2705
+ }, {
2706
+ "name" : "urn:wisebed:node:capability:ir",
2707
+ "datatype" : "integer",
2708
+ "unit" : "lux",
2709
+ "default" : "0"
2710
+ }, {
2711
+ "name" : "urn:wisebed:node:capability:humidity",
2712
+ "datatype" : "integer",
2713
+ "unit" : "raw",
2714
+ "default" : "0"
2715
+ } ],
2716
+ "id" : "urn:wisebed:uzl1:0x2212"
2717
+ }, {
2718
+ "position" : {
2719
+ "x" : 14.5,
2720
+ "y" : 12.0,
2721
+ "z" : 2.0,
2722
+ "phi" : null,
2723
+ "theta" : null
2724
+ },
2725
+ "gateway" : true,
2726
+ "programDetails" : null,
2727
+ "nodeType" : "isense48",
2728
+ "description" : "Processor: Jennic JN5148 (128kB RAM, 512kB Flash, 32 Bit RISC Controller, 4-32MHz) Radio: IEEE 802.15.4 compliant radio, 250kbit/s, hardware AES encryption, ToF ranging engine)",
2729
+ "capability" : [ {
2730
+ "name" : "urn:wisebed:node:capability:temperature",
2731
+ "datatype" : "integer",
2732
+ "unit" : "degrees",
2733
+ "default" : "0"
2734
+ }, {
2735
+ "name" : "urn:wisebed:node:capability:light",
2736
+ "datatype" : "integer",
2737
+ "unit" : "lux",
2738
+ "default" : "0"
2739
+ } ],
2740
+ "id" : "urn:wisebed:uzl1:0x2110"
2741
+ }, {
2742
+ "position" : {
2743
+ "x" : 14.0,
2744
+ "y" : 1.0,
2745
+ "z" : 1.0,
2746
+ "phi" : null,
2747
+ "theta" : null
2748
+ },
2749
+ "gateway" : true,
2750
+ "programDetails" : null,
2751
+ "nodeType" : "telosb",
2752
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
2753
+ "capability" : [ {
2754
+ "name" : "urn:wisebed:node:capability:temperature",
2755
+ "datatype" : "integer",
2756
+ "unit" : "degrees",
2757
+ "default" : "0"
2758
+ }, {
2759
+ "name" : "urn:wisebed:node:capability:light",
2760
+ "datatype" : "integer",
2761
+ "unit" : "lux",
2762
+ "default" : "0"
2763
+ }, {
2764
+ "name" : "urn:wisebed:node:capability:ir",
2765
+ "datatype" : "integer",
2766
+ "unit" : "lux",
2767
+ "default" : "0"
2768
+ }, {
2769
+ "name" : "urn:wisebed:node:capability:humidity",
2770
+ "datatype" : "integer",
2771
+ "unit" : "raw",
2772
+ "default" : "0"
2773
+ } ],
2774
+ "id" : "urn:wisebed:uzl1:0x2210"
2775
+ }, {
2776
+ "position" : {
2777
+ "x" : 14.0,
2778
+ "y" : 1.0,
2779
+ "z" : 1.0,
2780
+ "phi" : null,
2781
+ "theta" : null
2782
+ },
2783
+ "gateway" : true,
2784
+ "programDetails" : null,
2785
+ "nodeType" : "isense39",
2786
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
2787
+ "capability" : [ {
2788
+ "name" : "urn:wisebed:node:capability:temperature",
2789
+ "datatype" : "integer",
2790
+ "unit" : "degrees",
2791
+ "default" : "0"
2792
+ }, {
2793
+ "name" : "urn:wisebed:node:capability:light",
2794
+ "datatype" : "integer",
2795
+ "unit" : "lux",
2796
+ "default" : "0"
2797
+ } ],
2798
+ "id" : "urn:wisebed:uzl1:0x2010"
2799
+ }, {
2800
+ "position" : {
2801
+ "x" : 17.0,
2802
+ "y" : 2.5,
2803
+ "z" : 0.0,
2804
+ "phi" : null,
2805
+ "theta" : null
2806
+ },
2807
+ "gateway" : true,
2808
+ "programDetails" : null,
2809
+ "nodeType" : "telosb",
2810
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
2811
+ "capability" : [ {
2812
+ "name" : "urn:wisebed:node:capability:temperature",
2813
+ "datatype" : "integer",
2814
+ "unit" : "degrees",
2815
+ "default" : "0"
2816
+ }, {
2817
+ "name" : "urn:wisebed:node:capability:light",
2818
+ "datatype" : "integer",
2819
+ "unit" : "lux",
2820
+ "default" : "0"
2821
+ }, {
2822
+ "name" : "urn:wisebed:node:capability:ir",
2823
+ "datatype" : "integer",
2824
+ "unit" : "lux",
2825
+ "default" : "0"
2826
+ }, {
2827
+ "name" : "urn:wisebed:node:capability:humidity",
2828
+ "datatype" : "integer",
2829
+ "unit" : "raw",
2830
+ "default" : "0"
2831
+ } ],
2832
+ "id" : "urn:wisebed:uzl1:0x220a"
2833
+ }, {
2834
+ "position" : {
2835
+ "x" : 17.0,
2836
+ "y" : 2.5,
2837
+ "z" : 0.0,
2838
+ "phi" : null,
2839
+ "theta" : null
2840
+ },
2841
+ "gateway" : true,
2842
+ "programDetails" : null,
2843
+ "nodeType" : "isense48",
2844
+ "description" : "Processor: Jennic JN5148 (128kB RAM, 512kB Flash, 32 Bit RISC Controller, 4-32MHz) Radio: IEEE 802.15.4 compliant radio, 250kbit/s, hardware AES encryption, ToF ranging engine)",
2845
+ "capability" : [ {
2846
+ "name" : "urn:wisebed:node:capability:pir",
2847
+ "datatype" : "integer",
2848
+ "unit" : "raw",
2849
+ "default" : "0"
2850
+ }, {
2851
+ "name" : "urn:wisebed:node:capability:acc",
2852
+ "datatype" : "integer",
2853
+ "unit" : "raw",
2854
+ "default" : "[0,0,0]"
2855
+ } ],
2856
+ "id" : "urn:wisebed:uzl1:0x2108"
2857
+ }, {
2858
+ "position" : {
2859
+ "x" : 25.0,
2860
+ "y" : 2.0,
2861
+ "z" : 1.0,
2862
+ "phi" : null,
2863
+ "theta" : null
2864
+ },
2865
+ "gateway" : true,
2866
+ "programDetails" : null,
2867
+ "nodeType" : "telosb",
2868
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
2869
+ "capability" : [ {
2870
+ "name" : "urn:wisebed:node:capability:temperature",
2871
+ "datatype" : "integer",
2872
+ "unit" : "degrees",
2873
+ "default" : "0"
2874
+ }, {
2875
+ "name" : "urn:wisebed:node:capability:light",
2876
+ "datatype" : "integer",
2877
+ "unit" : "lux",
2878
+ "default" : "0"
2879
+ }, {
2880
+ "name" : "urn:wisebed:node:capability:ir",
2881
+ "datatype" : "integer",
2882
+ "unit" : "lux",
2883
+ "default" : "0"
2884
+ }, {
2885
+ "name" : "urn:wisebed:node:capability:humidity",
2886
+ "datatype" : "integer",
2887
+ "unit" : "raw",
2888
+ "default" : "0"
2889
+ } ],
2890
+ "id" : "urn:wisebed:uzl1:0x2209"
2891
+ }, {
2892
+ "position" : {
2893
+ "x" : 25.0,
2894
+ "y" : 2.0,
2895
+ "z" : 1.0,
2896
+ "phi" : null,
2897
+ "theta" : null
2898
+ },
2899
+ "gateway" : true,
2900
+ "programDetails" : null,
2901
+ "nodeType" : "isense39",
2902
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
2903
+ "capability" : [ {
2904
+ "name" : "urn:wisebed:node:capability:pir",
2905
+ "datatype" : "integer",
2906
+ "unit" : "raw",
2907
+ "default" : "0"
2908
+ }, {
2909
+ "name" : "urn:wisebed:node:capability:acc",
2910
+ "datatype" : "integer",
2911
+ "unit" : "raw",
2912
+ "default" : "[0,0,0]"
2913
+ } ],
2914
+ "id" : "urn:wisebed:uzl1:0x2009"
2915
+ }, {
2916
+ "position" : {
2917
+ "x" : 25.0,
2918
+ "y" : 3.0,
2919
+ "z" : 1.0,
2920
+ "phi" : null,
2921
+ "theta" : null
2922
+ },
2923
+ "gateway" : true,
2924
+ "programDetails" : null,
2925
+ "nodeType" : "telosb",
2926
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
2927
+ "capability" : [ {
2928
+ "name" : "urn:wisebed:node:capability:temperature",
2929
+ "datatype" : "integer",
2930
+ "unit" : "degrees",
2931
+ "default" : "0"
2932
+ }, {
2933
+ "name" : "urn:wisebed:node:capability:light",
2934
+ "datatype" : "integer",
2935
+ "unit" : "lux",
2936
+ "default" : "0"
2937
+ }, {
2938
+ "name" : "urn:wisebed:node:capability:ir",
2939
+ "datatype" : "integer",
2940
+ "unit" : "lux",
2941
+ "default" : "0"
2942
+ }, {
2943
+ "name" : "urn:wisebed:node:capability:humidity",
2944
+ "datatype" : "integer",
2945
+ "unit" : "raw",
2946
+ "default" : "0"
2947
+ } ],
2948
+ "id" : "urn:wisebed:uzl1:0x2208"
2949
+ }, {
2950
+ "position" : {
2951
+ "x" : 25.0,
2952
+ "y" : 3.0,
2953
+ "z" : 1.0,
2954
+ "phi" : null,
2955
+ "theta" : null
2956
+ },
2957
+ "gateway" : true,
2958
+ "programDetails" : null,
2959
+ "nodeType" : "isense39",
2960
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
2961
+ "capability" : [ {
2962
+ "name" : "urn:wisebed:node:capability:temperature",
2963
+ "datatype" : "integer",
2964
+ "unit" : "degrees",
2965
+ "default" : "0"
2966
+ }, {
2967
+ "name" : "urn:wisebed:node:capability:light",
2968
+ "datatype" : "integer",
2969
+ "unit" : "lux",
2970
+ "default" : "0"
2971
+ } ],
2972
+ "id" : "urn:wisebed:uzl1:0x2008"
2973
+ }, {
2974
+ "position" : {
2975
+ "x" : 31.0,
2976
+ "y" : 6.0,
2977
+ "z" : 1.0,
2978
+ "phi" : null,
2979
+ "theta" : null
2980
+ },
2981
+ "gateway" : true,
2982
+ "programDetails" : null,
2983
+ "nodeType" : "telosb",
2984
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
2985
+ "capability" : [ {
2986
+ "name" : "urn:wisebed:node:capability:temperature",
2987
+ "datatype" : "integer",
2988
+ "unit" : "degrees",
2989
+ "default" : "0"
2990
+ }, {
2991
+ "name" : "urn:wisebed:node:capability:light",
2992
+ "datatype" : "integer",
2993
+ "unit" : "lux",
2994
+ "default" : "0"
2995
+ }, {
2996
+ "name" : "urn:wisebed:node:capability:ir",
2997
+ "datatype" : "integer",
2998
+ "unit" : "lux",
2999
+ "default" : "0"
3000
+ }, {
3001
+ "name" : "urn:wisebed:node:capability:humidity",
3002
+ "datatype" : "integer",
3003
+ "unit" : "raw",
3004
+ "default" : "0"
3005
+ } ],
3006
+ "id" : "urn:wisebed:uzl1:0x2200"
3007
+ }, {
3008
+ "position" : {
3009
+ "x" : 31.0,
3010
+ "y" : 6.0,
3011
+ "z" : 1.0,
3012
+ "phi" : null,
3013
+ "theta" : null
3014
+ },
3015
+ "gateway" : true,
3016
+ "programDetails" : null,
3017
+ "nodeType" : "isense39",
3018
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
3019
+ "capability" : [ {
3020
+ "name" : "urn:wisebed:node:capability:pir",
3021
+ "datatype" : "integer",
3022
+ "unit" : "raw",
3023
+ "default" : "0"
3024
+ }, {
3025
+ "name" : "urn:wisebed:node:capability:acc",
3026
+ "datatype" : "integer",
3027
+ "unit" : "raw",
3028
+ "default" : "[0,0,0]"
3029
+ } ],
3030
+ "id" : "urn:wisebed:uzl1:0x2000"
3031
+ }, {
3032
+ "position" : {
3033
+ "x" : 2.0,
3034
+ "y" : 1.0,
3035
+ "z" : 1.0,
3036
+ "phi" : null,
3037
+ "theta" : null
3038
+ },
3039
+ "gateway" : true,
3040
+ "programDetails" : null,
3041
+ "nodeType" : "telosb",
3042
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
3043
+ "capability" : [ {
3044
+ "name" : "urn:wisebed:node:capability:temperature",
3045
+ "datatype" : "integer",
3046
+ "unit" : "degrees",
3047
+ "default" : "0"
3048
+ }, {
3049
+ "name" : "urn:wisebed:node:capability:light",
3050
+ "datatype" : "integer",
3051
+ "unit" : "lux",
3052
+ "default" : "0"
3053
+ }, {
3054
+ "name" : "urn:wisebed:node:capability:ir",
3055
+ "datatype" : "integer",
3056
+ "unit" : "lux",
3057
+ "default" : "0"
3058
+ }, {
3059
+ "name" : "urn:wisebed:node:capability:humidity",
3060
+ "datatype" : "integer",
3061
+ "unit" : "raw",
3062
+ "default" : "0"
3063
+ } ],
3064
+ "id" : "urn:wisebed:uzl1:0x2202"
3065
+ }, {
3066
+ "position" : {
3067
+ "x" : 2.0,
3068
+ "y" : 1.0,
3069
+ "z" : 1.0,
3070
+ "phi" : null,
3071
+ "theta" : null
3072
+ },
3073
+ "gateway" : true,
3074
+ "programDetails" : null,
3075
+ "nodeType" : "isense48",
3076
+ "description" : "Processor: Jennic JN5148 (128kB RAM, 512kB Flash, 32 Bit RISC Controller, 4-32MHz) Radio: IEEE 802.15.4 compliant radio, 250kbit/s, hardware AES encryption, ToF ranging engine)",
3077
+ "capability" : [ {
3078
+ "name" : "urn:wisebed:node:capability:pir",
3079
+ "datatype" : "integer",
3080
+ "unit" : "raw",
3081
+ "default" : "0"
3082
+ }, {
3083
+ "name" : "urn:wisebed:node:capability:acc",
3084
+ "datatype" : "integer",
3085
+ "unit" : "raw",
3086
+ "default" : "[0,0,0]"
3087
+ } ],
3088
+ "id" : "urn:wisebed:uzl1:0x2100"
3089
+ }, {
3090
+ "position" : {
3091
+ "x" : 31.0,
3092
+ "y" : 3.0,
3093
+ "z" : 1.0,
3094
+ "phi" : null,
3095
+ "theta" : null
3096
+ },
3097
+ "gateway" : true,
3098
+ "programDetails" : null,
3099
+ "nodeType" : "telosb",
3100
+ "description" : "Processor: MSP 430F1611 (Ram 10kB, Flash 48kB, op/sleep 22mA, 5myA) Radio: TI CC2420 IEEE 802.15.4(2,4 GHz)",
3101
+ "capability" : [ {
3102
+ "name" : "urn:wisebed:node:capability:temperature",
3103
+ "datatype" : "integer",
3104
+ "unit" : "degrees",
3105
+ "default" : "0"
3106
+ }, {
3107
+ "name" : "urn:wisebed:node:capability:light",
3108
+ "datatype" : "integer",
3109
+ "unit" : "lux",
3110
+ "default" : "0"
3111
+ }, {
3112
+ "name" : "urn:wisebed:node:capability:ir",
3113
+ "datatype" : "integer",
3114
+ "unit" : "lux",
3115
+ "default" : "0"
3116
+ }, {
3117
+ "name" : "urn:wisebed:node:capability:humidity",
3118
+ "datatype" : "integer",
3119
+ "unit" : "raw",
3120
+ "default" : "0"
3121
+ } ],
3122
+ "id" : "urn:wisebed:uzl1:0x2201"
3123
+ }, {
3124
+ "position" : {
3125
+ "x" : 31.0,
3126
+ "y" : 3.0,
3127
+ "z" : 1.0,
3128
+ "phi" : null,
3129
+ "theta" : null
3130
+ },
3131
+ "gateway" : true,
3132
+ "programDetails" : null,
3133
+ "nodeType" : "isense39",
3134
+ "description" : "Processor: Jennic JN5139R1 (Ram 96kB, Flash 128kB, op/sleep 39mA,10myA) Radio: IEEE 802.15.4(2,4 GHz)",
3135
+ "capability" : [ {
3136
+ "name" : "urn:wisebed:node:capability:pir",
3137
+ "datatype" : "integer",
3138
+ "unit" : "raw",
3139
+ "default" : "0"
3140
+ }, {
3141
+ "name" : "urn:wisebed:node:capability:acc",
3142
+ "datatype" : "integer",
3143
+ "unit" : "raw",
3144
+ "default" : "[0,0,0]"
3145
+ } ],
3146
+ "id" : "urn:wisebed:uzl1:0x2001"
3147
+ } ],
3148
+ "link" : null
3149
+ },
3150
+ "scenario" : null,
3151
+ "trace" : null,
3152
+ "version" : "1.0"
3153
+ }