@bitpoolos/edge-bacnet 1.0.6 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (181) hide show
  1. package/bacnet_client.js +650 -233
  2. package/bacnet_device.js +65 -16
  3. package/bacnet_gateway.html +242 -99
  4. package/bacnet_gateway.js +211 -27
  5. package/bacnet_object.js +1 -1
  6. package/bacnet_read.html +211 -133
  7. package/bacnet_read.js +24 -24
  8. package/bacnet_server.js +321 -0
  9. package/bacnet_write.html +24 -15
  10. package/bacnet_write.js +0 -2
  11. package/common.js +95 -9
  12. package/edge-bacnet-datastore.cfg +0 -0
  13. package/package.json +6 -4
  14. package/resources/confirmationservice.min.js +1 -0
  15. package/resources/confirmdialog.min.js +1 -0
  16. package/resources/fonts/primeicons.woff2 +0 -0
  17. package/resources/node-bacnet/CHANGELOG.md +481 -0
  18. package/resources/{bacstack → node-bacnet}/LICENSE.md +3 -1
  19. package/resources/node-bacnet/README.md +91 -0
  20. package/resources/node-bacnet/docs/Client.html +4422 -0
  21. package/resources/node-bacnet/docs/bacnet-icon-quad.png +0 -0
  22. package/resources/node-bacnet/docs/bacnet-icon-quad128.png +0 -0
  23. package/resources/node-bacnet/docs/bacnet-icon-quad64.png +0 -0
  24. package/resources/node-bacnet/docs/bacnet-icon-small.xcf +0 -0
  25. package/resources/node-bacnet/docs/bacnet-icon.xcf +0 -0
  26. package/resources/node-bacnet/docs/bacnet.html +7032 -0
  27. package/resources/node-bacnet/docs/client.js.html +1759 -0
  28. package/resources/node-bacnet/docs/enum.js.html +2530 -0
  29. package/resources/node-bacnet/docs/global.html +2068 -0
  30. package/resources/node-bacnet/docs/images/mocha-logo.svg +65 -0
  31. package/resources/node-bacnet/docs/index.html +283 -0
  32. package/resources/node-bacnet/docs/scripts/collapse.js +11 -0
  33. package/resources/node-bacnet/docs/scripts/jquery-3.1.1.min.js +4 -0
  34. package/resources/node-bacnet/docs/scripts/linenumber.js +26 -0
  35. package/resources/node-bacnet/docs/scripts/prettify/Apache-License-2.0.txt +202 -0
  36. package/resources/node-bacnet/docs/scripts/prettify/lang-css.js +2 -0
  37. package/resources/node-bacnet/docs/scripts/prettify/prettify.js +28 -0
  38. package/resources/node-bacnet/docs/scripts/search.js +47 -0
  39. package/resources/node-bacnet/docs/services_i-am.js.html +157 -0
  40. package/resources/node-bacnet/docs/services_time-sync.js.html +118 -0
  41. package/resources/node-bacnet/docs/services_who-is.js.html +138 -0
  42. package/resources/node-bacnet/docs/styles/jsdoc.css +683 -0
  43. package/resources/node-bacnet/docs/styles/prettify.css +82 -0
  44. package/resources/node-bacnet/examples/discover-devices.js +66 -0
  45. package/resources/node-bacnet/examples/read-device.js +510 -0
  46. package/resources/node-bacnet/examples/subscribe-cov.js +75 -0
  47. package/resources/{bacstack → node-bacnet}/index.js +3 -0
  48. package/resources/{bacstack → node-bacnet}/lib/apdu.js +56 -39
  49. package/resources/{bacstack → node-bacnet}/lib/asn1.js +550 -532
  50. package/resources/node-bacnet/lib/bvlc.js +90 -0
  51. package/resources/node-bacnet/lib/client.js +1695 -0
  52. package/resources/node-bacnet/lib/enum.js +2463 -0
  53. package/resources/node-bacnet/lib/npdu.js +123 -0
  54. package/resources/{bacstack → node-bacnet}/lib/services/add-list-element.js +12 -6
  55. package/resources/{bacstack → node-bacnet}/lib/services/alarm-acknowledge.js +3 -3
  56. package/resources/{bacstack → node-bacnet}/lib/services/alarm-summary.js +5 -4
  57. package/resources/{bacstack → node-bacnet}/lib/services/atomic-read-file.js +49 -26
  58. package/resources/{bacstack → node-bacnet}/lib/services/atomic-write-file.js +40 -23
  59. package/resources/{bacstack → node-bacnet}/lib/services/cov-notify.js +33 -17
  60. package/resources/{bacstack → node-bacnet}/lib/services/create-object.js +23 -13
  61. package/resources/{bacstack → node-bacnet}/lib/services/delete-object.js +7 -2
  62. package/resources/{bacstack → node-bacnet}/lib/services/device-communication-control.js +8 -3
  63. package/resources/{bacstack → node-bacnet}/lib/services/error.js +7 -0
  64. package/resources/{bacstack → node-bacnet}/lib/services/event-information.js +10 -9
  65. package/resources/{bacstack → node-bacnet}/lib/services/event-notify-data.js +38 -16
  66. package/resources/{bacstack → node-bacnet}/lib/services/get-enrollment-summary.js +24 -11
  67. package/resources/{bacstack → node-bacnet}/lib/services/get-event-information.js +28 -13
  68. package/resources/node-bacnet/lib/services/i-am.js +90 -0
  69. package/resources/{bacstack/lib/services/i-have-broadcast.js → node-bacnet/lib/services/i-have.js} +3 -2
  70. package/resources/{bacstack → node-bacnet}/lib/services/index.js +7 -4
  71. package/resources/{bacstack → node-bacnet}/lib/services/life-safety-operation.js +3 -2
  72. package/resources/{bacstack → node-bacnet}/lib/services/private-transfer.js +3 -2
  73. package/resources/{bacstack → node-bacnet}/lib/services/read-property-multiple.js +11 -6
  74. package/resources/{bacstack → node-bacnet}/lib/services/read-property.js +42 -24
  75. package/resources/{bacstack → node-bacnet}/lib/services/read-range.js +37 -27
  76. package/resources/node-bacnet/lib/services/register-foreign-device.js +18 -0
  77. package/resources/{bacstack → node-bacnet}/lib/services/reinitialize-device.js +9 -4
  78. package/resources/{bacstack → node-bacnet}/lib/services/subscribe-cov.js +9 -4
  79. package/resources/{bacstack → node-bacnet}/lib/services/subscribe-property.js +18 -8
  80. package/resources/{bacstack → node-bacnet}/lib/services/time-sync.js +28 -5
  81. package/resources/{bacstack → node-bacnet}/lib/services/who-has.js +3 -3
  82. package/resources/{bacstack → node-bacnet}/lib/services/who-is.js +42 -9
  83. package/resources/{bacstack → node-bacnet}/lib/services/write-property-multiple.js +33 -16
  84. package/resources/{bacstack → node-bacnet}/lib/services/write-property.js +23 -13
  85. package/resources/node-bacnet/lib/transport.js +82 -0
  86. package/resources/node-bacnet/package.json +92 -0
  87. package/resources/primeicons.css +90 -2
  88. package/resources/bacstack/.codeclimate.yml +0 -15
  89. package/resources/bacstack/.dockerignore +0 -5
  90. package/resources/bacstack/.editorconfig +0 -13
  91. package/resources/bacstack/.eslintrc.yml +0 -13
  92. package/resources/bacstack/.github/ISSUE_TEMPLATE.md +0 -26
  93. package/resources/bacstack/.github/PULL_REQUEST_TEMPLATE.md +0 -14
  94. package/resources/bacstack/.github/workflows/ci.yml +0 -39
  95. package/resources/bacstack/.jscsrc +0 -8
  96. package/resources/bacstack/.jshintrc +0 -50
  97. package/resources/bacstack/.travis.yml +0 -27
  98. package/resources/bacstack/CHANGELOG.md +0 -232
  99. package/resources/bacstack/CODE_OF_CONDUCT.md +0 -74
  100. package/resources/bacstack/CONTRIBUTING.md +0 -77
  101. package/resources/bacstack/Dockerfile +0 -15
  102. package/resources/bacstack/FAQ.md +0 -64
  103. package/resources/bacstack/README.md +0 -157
  104. package/resources/bacstack/docker-compose.yml +0 -9
  105. package/resources/bacstack/lib/adpu.js +0 -190
  106. package/resources/bacstack/lib/bvlc.js +0 -43
  107. package/resources/bacstack/lib/client.js +0 -1028
  108. package/resources/bacstack/lib/enum.js +0 -1314
  109. package/resources/bacstack/lib/npdu.js +0 -119
  110. package/resources/bacstack/lib/services/i-am-broadcast.js +0 -51
  111. package/resources/bacstack/lib/services.js +0 -1963
  112. package/resources/bacstack/lib/transport.js +0 -52
  113. package/resources/bacstack/package-lock.json +0 -7974
  114. package/resources/bacstack/package.json +0 -84
  115. package/resources/bacstack/test/compliance/who-is.spec.js +0 -37
  116. package/resources/bacstack/test/integration/acknowledge-alarm.spec.js +0 -14
  117. package/resources/bacstack/test/integration/add-list-element.spec.js +0 -16
  118. package/resources/bacstack/test/integration/confirmed-event-notification.spec.js +0 -30
  119. package/resources/bacstack/test/integration/confirmed-private-transfer.spec.js +0 -15
  120. package/resources/bacstack/test/integration/create-object.spec.js +0 -16
  121. package/resources/bacstack/test/integration/delete-object.spec.js +0 -14
  122. package/resources/bacstack/test/integration/device-communication-control.spec.js +0 -14
  123. package/resources/bacstack/test/integration/get-alarm-summary.spec.js +0 -14
  124. package/resources/bacstack/test/integration/get-enrollment-summary.spec.js +0 -15
  125. package/resources/bacstack/test/integration/get-event-information.spec.js +0 -14
  126. package/resources/bacstack/test/integration/read-file.spec.js +0 -14
  127. package/resources/bacstack/test/integration/read-property-multiple.spec.js +0 -110
  128. package/resources/bacstack/test/integration/read-property.spec.js +0 -14
  129. package/resources/bacstack/test/integration/read-range.spec.js +0 -14
  130. package/resources/bacstack/test/integration/reinitialize-sevice.spec.js +0 -14
  131. package/resources/bacstack/test/integration/remove-list-element.spec.js +0 -16
  132. package/resources/bacstack/test/integration/subscribe-cov.spec.js +0 -14
  133. package/resources/bacstack/test/integration/subscribe-property.spec.js +0 -14
  134. package/resources/bacstack/test/integration/time-sync-utc.spec.js +0 -10
  135. package/resources/bacstack/test/integration/time-sync.spec.js +0 -10
  136. package/resources/bacstack/test/integration/unconfirmed-event-notification.spec.js +0 -28
  137. package/resources/bacstack/test/integration/unconfirmed-private-transfer.spec.js +0 -11
  138. package/resources/bacstack/test/integration/utils.js +0 -30
  139. package/resources/bacstack/test/integration/who-is.spec.js +0 -17
  140. package/resources/bacstack/test/integration/write-file.spec.js +0 -14
  141. package/resources/bacstack/test/integration/write-property-multiple.spec.js +0 -19
  142. package/resources/bacstack/test/integration/write-property.spec.js +0 -14
  143. package/resources/bacstack/test/unit/apdu.spec.js +0 -162
  144. package/resources/bacstack/test/unit/asn1.spec.js +0 -39
  145. package/resources/bacstack/test/unit/bacnet-apdu.spec.js +0 -161
  146. package/resources/bacstack/test/unit/bacnet-asn1.spec.js +0 -32
  147. package/resources/bacstack/test/unit/bacnet-bvlc.spec.js +0 -57
  148. package/resources/bacstack/test/unit/bacnet-npdu.spec.js +0 -118
  149. package/resources/bacstack/test/unit/bacnet-services.spec.js +0 -2052
  150. package/resources/bacstack/test/unit/bvlc.spec.js +0 -58
  151. package/resources/bacstack/test/unit/npdu.spec.js +0 -119
  152. package/resources/bacstack/test/unit/service-add-list-element.spec.js +0 -24
  153. package/resources/bacstack/test/unit/service-alarm-acknowledge.spec.js +0 -71
  154. package/resources/bacstack/test/unit/service-alarm-summary.spec.js +0 -22
  155. package/resources/bacstack/test/unit/service-atomic-read-file.spec.js +0 -54
  156. package/resources/bacstack/test/unit/service-atomic-write-file.spec.js +0 -56
  157. package/resources/bacstack/test/unit/service-cov-notify.spec.js +0 -98
  158. package/resources/bacstack/test/unit/service-create-object.spec.js +0 -90
  159. package/resources/bacstack/test/unit/service-delete-object.spec.js +0 -17
  160. package/resources/bacstack/test/unit/service-device-communication-control.spec.js +0 -29
  161. package/resources/bacstack/test/unit/service-error.spec.js +0 -17
  162. package/resources/bacstack/test/unit/service-event-information.spec.js +0 -48
  163. package/resources/bacstack/test/unit/service-event-notify-data.spec.js +0 -310
  164. package/resources/bacstack/test/unit/service-get-enrollment-summary.spec.js +0 -45
  165. package/resources/bacstack/test/unit/service-get-event-information.spec.js +0 -62
  166. package/resources/bacstack/test/unit/service-i-am.spec.js +0 -19
  167. package/resources/bacstack/test/unit/service-i-have-broadcast.spec.js +0 -18
  168. package/resources/bacstack/test/unit/service-life-safety-operation.spec.js +0 -19
  169. package/resources/bacstack/test/unit/service-private-transfer.spec.js +0 -18
  170. package/resources/bacstack/test/unit/service-read-property-multiple.spec.js +0 -131
  171. package/resources/bacstack/test/unit/service-read-property.spec.js +0 -541
  172. package/resources/bacstack/test/unit/service-read-range.spec.js +0 -97
  173. package/resources/bacstack/test/unit/service-reinitialize-device.spec.js +0 -27
  174. package/resources/bacstack/test/unit/service-subscribe-cov.spec.js +0 -32
  175. package/resources/bacstack/test/unit/service-subscribe-property.spec.js +0 -50
  176. package/resources/bacstack/test/unit/service-time-sync.spec.js +0 -18
  177. package/resources/bacstack/test/unit/service-who-has.spec.js +0 -33
  178. package/resources/bacstack/test/unit/service-who-is.spec.js +0 -17
  179. package/resources/bacstack/test/unit/service-write-property-multiple.spec.js +0 -143
  180. package/resources/bacstack/test/unit/service-write-property.spec.js +0 -198
  181. package/resources/bacstack/test/unit/utils.js +0 -6
@@ -0,0 +1,2068 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+
5
+ <meta charset="utf-8">
6
+ <title>Global - Documentation</title>
7
+
8
+
9
+ <script src="scripts/prettify/prettify.js"></script>
10
+ <script src="scripts/prettify/lang-css.js"></script>
11
+
12
+ <link type="text/css" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:400,700">
13
+ <link type="text/css" rel="stylesheet" href="styles/prettify.css">
14
+ <link type="text/css" rel="stylesheet" href="styles/jsdoc.css">
15
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
16
+ </head>
17
+ <body>
18
+
19
+ <input type="checkbox" id="nav-trigger" class="nav-trigger" />
20
+ <label for="nav-trigger" class="navicon-button x">
21
+ <div class="navicon"></div>
22
+ </label>
23
+
24
+ <label for="nav-trigger" class="overlay"></label>
25
+
26
+ <nav >
27
+
28
+ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="bacnet.html">bacnet</a><ul class='methods'><li data-type='method'><a href="bacnet.html#.close">close</a></li><li data-type='method'><a href="bacnet.html#.confirmedCOVNotification">confirmedCOVNotification</a></li><li data-type='method'><a href="bacnet.html#.deviceCommunicationControl">deviceCommunicationControl</a></li><li data-type='method'><a href="bacnet.html#.iAmResponse">iAmResponse</a></li><li data-type='method'><a href="bacnet.html#.readProperty">readProperty</a></li><li data-type='method'><a href="bacnet.html#.readPropertyMultiple">readPropertyMultiple</a></li><li data-type='method'><a href="bacnet.html#.readPropertyResponse">readPropertyResponse</a></li><li data-type='method'><a href="bacnet.html#.reinitializeDevice">reinitializeDevice</a></li><li data-type='method'><a href="bacnet.html#.resultResponse">resultResponse</a></li><li data-type='method'><a href="bacnet.html#.timeSync">timeSync</a></li><li data-type='method'><a href="bacnet.html#.timeSyncUTC">timeSyncUTC</a></li><li data-type='method'><a href="bacnet.html#.unconfirmedCOVNotification">unconfirmedCOVNotification</a></li><li data-type='method'><a href="bacnet.html#.whoIs">whoIs</a></li><li data-type='method'><a href="bacnet.html#.writeProperty">writeProperty</a></li><li data-type='method'><a href="bacnet.html#.writePropertyMultiple">writePropertyMultiple</a></li></ul></li><li><a href="Client.html">Client</a><ul class='methods'><li data-type='method'><a href="Client.html#.createBitstring">createBitstring</a></li><li data-type='method'><a href="Client.html#acknowledgeAlarm">acknowledgeAlarm</a></li><li data-type='method'><a href="Client.html#addListElement">addListElement</a></li><li data-type='method'><a href="Client.html#confirmedEventNotification">confirmedEventNotification</a></li><li data-type='method'><a href="Client.html#confirmedPrivateTransfer">confirmedPrivateTransfer</a></li><li data-type='method'><a href="Client.html#createObject">createObject</a></li><li data-type='method'><a href="Client.html#deleteObject">deleteObject</a></li><li data-type='method'><a href="Client.html#errorResponse">errorResponse</a></li><li data-type='method'><a href="Client.html#getAlarmSummary">getAlarmSummary</a></li><li data-type='method'><a href="Client.html#getEnrollmentSummary">getEnrollmentSummary</a></li><li data-type='method'><a href="Client.html#getEventInformation">getEventInformation</a></li><li data-type='method'><a href="Client.html#iHaveResponse">iHaveResponse</a></li><li data-type='method'><a href="Client.html#readFile">readFile</a></li><li data-type='method'><a href="Client.html#readRange">readRange</a></li><li data-type='method'><a href="Client.html#removeListElement">removeListElement</a></li><li data-type='method'><a href="Client.html#sendBvlc">sendBvlc</a></li><li data-type='method'><a href="Client.html#simpleAckResponse">simpleAckResponse</a></li><li data-type='method'><a href="Client.html#subscribeCov">subscribeCov</a></li><li data-type='method'><a href="Client.html#subscribeProperty">subscribeProperty</a></li><li data-type='method'><a href="Client.html#unconfirmedEventNotification">unconfirmedEventNotification</a></li><li data-type='method'><a href="Client.html#unconfirmedPrivateTransfer">unconfirmedPrivateTransfer</a></li><li data-type='method'><a href="Client.html#writeFile">writeFile</a></li></ul></li></ul><h3>Events</h3><ul><li><a href="bacnet.html#.event:error">error</a></li><li><a href="bacnet.html#.event:iAm">iAm</a></li><li><a href="bacnet.html#.event:timeSync">timeSync</a></li><li><a href="bacnet.html#.event:whoIs">whoIs</a></li></ul><h3>Global</h3><ul><li><a href="global.html#ApplicationTag">ApplicationTag</a></li><li><a href="global.html#EnableDisable">EnableDisable</a></li><li><a href="global.html#MaxApduLengthAccepted">MaxApduLengthAccepted</a></li><li><a href="global.html#MaxSegmentsAccepted">MaxSegmentsAccepted</a></li><li><a href="global.html#ReinitializedState">ReinitializedState</a></li><li><a href="global.html#usc">usc</a></li></ul>
29
+ </nav>
30
+
31
+ <div id="main">
32
+
33
+ <h1 class="page-title">Global</h1>
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+ <section>
42
+
43
+ <header>
44
+
45
+ <h2>
46
+
47
+ </h2>
48
+
49
+
50
+ </header>
51
+
52
+ <article>
53
+
54
+ <div class="container-overview">
55
+
56
+
57
+
58
+ <dl class="details">
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+ </dl>
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+ </div>
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+
112
+
113
+
114
+ <h3 class="subsection-title">Members</h3>
115
+
116
+
117
+
118
+ <h4 class="name" id="ApplicationTag"><span class="type-signature">(readonly) </span>ApplicationTag<span class="type-signature"> :<a href="global.html#ApplicationTag">ApplicationTag</a></span></h4>
119
+
120
+
121
+
122
+
123
+
124
+ <dl class="details">
125
+
126
+
127
+ <dt class="tag-source">Source:</dt>
128
+ <dd class="tag-source"><ul class="dummy"><li>
129
+ <a href="enum.js.html">enum.js</a>, <a href="enum.js.html#line2149">line 2149</a>
130
+ </li></ul></dd>
131
+
132
+
133
+
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+
152
+
153
+
154
+
155
+
156
+
157
+
158
+
159
+
160
+
161
+
162
+ </dl>
163
+
164
+
165
+
166
+ <h5 class="subsection-title">Properties:</h5>
167
+
168
+
169
+
170
+ <table class="props">
171
+ <thead>
172
+ <tr>
173
+
174
+ <th>Name</th>
175
+
176
+
177
+ <th>Type</th>
178
+
179
+
180
+
181
+
182
+
183
+ <th class="last">Description</th>
184
+ </tr>
185
+ </thead>
186
+
187
+ <tbody>
188
+
189
+
190
+ <tr>
191
+
192
+ <td class="name"><code>NULL</code></td>
193
+
194
+
195
+ <td class="type">
196
+
197
+
198
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
199
+
200
+
201
+
202
+ </td>
203
+
204
+
205
+
206
+
207
+
208
+ <td class="description last"></td>
209
+ </tr>
210
+
211
+
212
+
213
+ <tr>
214
+
215
+ <td class="name"><code>BOOLEAN</code></td>
216
+
217
+
218
+ <td class="type">
219
+
220
+
221
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
222
+
223
+
224
+
225
+ </td>
226
+
227
+
228
+
229
+
230
+
231
+ <td class="description last"></td>
232
+ </tr>
233
+
234
+
235
+
236
+ <tr>
237
+
238
+ <td class="name"><code>UNSIGNED_INTEGER</code></td>
239
+
240
+
241
+ <td class="type">
242
+
243
+
244
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
245
+
246
+
247
+
248
+ </td>
249
+
250
+
251
+
252
+
253
+
254
+ <td class="description last"></td>
255
+ </tr>
256
+
257
+
258
+
259
+ <tr>
260
+
261
+ <td class="name"><code>SIGNED_INTEGER</code></td>
262
+
263
+
264
+ <td class="type">
265
+
266
+
267
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
268
+
269
+
270
+
271
+ </td>
272
+
273
+
274
+
275
+
276
+
277
+ <td class="description last"></td>
278
+ </tr>
279
+
280
+
281
+
282
+ <tr>
283
+
284
+ <td class="name"><code>REAL</code></td>
285
+
286
+
287
+ <td class="type">
288
+
289
+
290
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
291
+
292
+
293
+
294
+ </td>
295
+
296
+
297
+
298
+
299
+
300
+ <td class="description last"></td>
301
+ </tr>
302
+
303
+
304
+
305
+ <tr>
306
+
307
+ <td class="name"><code>DOUBLE</code></td>
308
+
309
+
310
+ <td class="type">
311
+
312
+
313
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
314
+
315
+
316
+
317
+ </td>
318
+
319
+
320
+
321
+
322
+
323
+ <td class="description last"></td>
324
+ </tr>
325
+
326
+
327
+
328
+ <tr>
329
+
330
+ <td class="name"><code>OCTET_STRING</code></td>
331
+
332
+
333
+ <td class="type">
334
+
335
+
336
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
337
+
338
+
339
+
340
+ </td>
341
+
342
+
343
+
344
+
345
+
346
+ <td class="description last"></td>
347
+ </tr>
348
+
349
+
350
+
351
+ <tr>
352
+
353
+ <td class="name"><code>CHARACTER_STRING</code></td>
354
+
355
+
356
+ <td class="type">
357
+
358
+
359
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
360
+
361
+
362
+
363
+ </td>
364
+
365
+
366
+
367
+
368
+
369
+ <td class="description last"></td>
370
+ </tr>
371
+
372
+
373
+
374
+ <tr>
375
+
376
+ <td class="name"><code>BIT_STRING</code></td>
377
+
378
+
379
+ <td class="type">
380
+
381
+
382
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
383
+
384
+
385
+
386
+ </td>
387
+
388
+
389
+
390
+
391
+
392
+ <td class="description last"></td>
393
+ </tr>
394
+
395
+
396
+
397
+ <tr>
398
+
399
+ <td class="name"><code>ENUMERATED</code></td>
400
+
401
+
402
+ <td class="type">
403
+
404
+
405
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
406
+
407
+
408
+
409
+ </td>
410
+
411
+
412
+
413
+
414
+
415
+ <td class="description last"></td>
416
+ </tr>
417
+
418
+
419
+
420
+ <tr>
421
+
422
+ <td class="name"><code>DATE</code></td>
423
+
424
+
425
+ <td class="type">
426
+
427
+
428
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
429
+
430
+
431
+
432
+ </td>
433
+
434
+
435
+
436
+
437
+
438
+ <td class="description last"></td>
439
+ </tr>
440
+
441
+
442
+
443
+ <tr>
444
+
445
+ <td class="name"><code>TIME</code></td>
446
+
447
+
448
+ <td class="type">
449
+
450
+
451
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
452
+
453
+
454
+
455
+ </td>
456
+
457
+
458
+
459
+
460
+
461
+ <td class="description last"></td>
462
+ </tr>
463
+
464
+
465
+
466
+ <tr>
467
+
468
+ <td class="name"><code>OBJECTIDENTIFIER</code></td>
469
+
470
+
471
+ <td class="type">
472
+
473
+
474
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
475
+
476
+
477
+
478
+ </td>
479
+
480
+
481
+
482
+
483
+
484
+ <td class="description last"></td>
485
+ </tr>
486
+
487
+
488
+
489
+ <tr>
490
+
491
+ <td class="name"><code>EMPTYLIST</code></td>
492
+
493
+
494
+ <td class="type">
495
+
496
+
497
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
498
+
499
+
500
+
501
+ </td>
502
+
503
+
504
+
505
+
506
+
507
+ <td class="description last"></td>
508
+ </tr>
509
+
510
+
511
+
512
+ <tr>
513
+
514
+ <td class="name"><code>WEEKNDAY</code></td>
515
+
516
+
517
+ <td class="type">
518
+
519
+
520
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
521
+
522
+
523
+
524
+ </td>
525
+
526
+
527
+
528
+
529
+
530
+ <td class="description last"></td>
531
+ </tr>
532
+
533
+
534
+
535
+ <tr>
536
+
537
+ <td class="name"><code>DATERANGE</code></td>
538
+
539
+
540
+ <td class="type">
541
+
542
+
543
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
544
+
545
+
546
+
547
+ </td>
548
+
549
+
550
+
551
+
552
+
553
+ <td class="description last"></td>
554
+ </tr>
555
+
556
+
557
+
558
+ <tr>
559
+
560
+ <td class="name"><code>DATETIME</code></td>
561
+
562
+
563
+ <td class="type">
564
+
565
+
566
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
567
+
568
+
569
+
570
+ </td>
571
+
572
+
573
+
574
+
575
+
576
+ <td class="description last"></td>
577
+ </tr>
578
+
579
+
580
+
581
+ <tr>
582
+
583
+ <td class="name"><code>TIMESTAMP</code></td>
584
+
585
+
586
+ <td class="type">
587
+
588
+
589
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
590
+
591
+
592
+
593
+ </td>
594
+
595
+
596
+
597
+
598
+
599
+ <td class="description last"></td>
600
+ </tr>
601
+
602
+
603
+
604
+ <tr>
605
+
606
+ <td class="name"><code>ERROR</code></td>
607
+
608
+
609
+ <td class="type">
610
+
611
+
612
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
613
+
614
+
615
+
616
+ </td>
617
+
618
+
619
+
620
+
621
+
622
+ <td class="description last"></td>
623
+ </tr>
624
+
625
+
626
+
627
+ <tr>
628
+
629
+ <td class="name"><code>DEVICE_OBJECT_PROPERTY_REFERENCE</code></td>
630
+
631
+
632
+ <td class="type">
633
+
634
+
635
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
636
+
637
+
638
+
639
+ </td>
640
+
641
+
642
+
643
+
644
+
645
+ <td class="description last"></td>
646
+ </tr>
647
+
648
+
649
+
650
+ <tr>
651
+
652
+ <td class="name"><code>DEVICE_OBJECT_REFERENCE</code></td>
653
+
654
+
655
+ <td class="type">
656
+
657
+
658
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
659
+
660
+
661
+
662
+ </td>
663
+
664
+
665
+
666
+
667
+
668
+ <td class="description last"></td>
669
+ </tr>
670
+
671
+
672
+
673
+ <tr>
674
+
675
+ <td class="name"><code>OBJECT_PROPERTY_REFERENCE</code></td>
676
+
677
+
678
+ <td class="type">
679
+
680
+
681
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
682
+
683
+
684
+
685
+ </td>
686
+
687
+
688
+
689
+
690
+
691
+ <td class="description last"></td>
692
+ </tr>
693
+
694
+
695
+
696
+ <tr>
697
+
698
+ <td class="name"><code>DESTINATION</code></td>
699
+
700
+
701
+ <td class="type">
702
+
703
+
704
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
705
+
706
+
707
+
708
+ </td>
709
+
710
+
711
+
712
+
713
+
714
+ <td class="description last"></td>
715
+ </tr>
716
+
717
+
718
+
719
+ <tr>
720
+
721
+ <td class="name"><code>RECIPIENT</code></td>
722
+
723
+
724
+ <td class="type">
725
+
726
+
727
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
728
+
729
+
730
+
731
+ </td>
732
+
733
+
734
+
735
+
736
+
737
+ <td class="description last"></td>
738
+ </tr>
739
+
740
+
741
+
742
+ <tr>
743
+
744
+ <td class="name"><code>COV_SUBSCRIPTION</code></td>
745
+
746
+
747
+ <td class="type">
748
+
749
+
750
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
751
+
752
+
753
+
754
+ </td>
755
+
756
+
757
+
758
+
759
+
760
+ <td class="description last"></td>
761
+ </tr>
762
+
763
+
764
+
765
+ <tr>
766
+
767
+ <td class="name"><code>CALENDAR_ENTRY</code></td>
768
+
769
+
770
+ <td class="type">
771
+
772
+
773
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
774
+
775
+
776
+
777
+ </td>
778
+
779
+
780
+
781
+
782
+
783
+ <td class="description last"></td>
784
+ </tr>
785
+
786
+
787
+
788
+ <tr>
789
+
790
+ <td class="name"><code>WEEKLY_SCHEDULE</code></td>
791
+
792
+
793
+ <td class="type">
794
+
795
+
796
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
797
+
798
+
799
+
800
+ </td>
801
+
802
+
803
+
804
+
805
+
806
+ <td class="description last"></td>
807
+ </tr>
808
+
809
+
810
+
811
+ <tr>
812
+
813
+ <td class="name"><code>SPECIAL_EVENT</code></td>
814
+
815
+
816
+ <td class="type">
817
+
818
+
819
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
820
+
821
+
822
+
823
+ </td>
824
+
825
+
826
+
827
+
828
+
829
+ <td class="description last"></td>
830
+ </tr>
831
+
832
+
833
+
834
+ <tr>
835
+
836
+ <td class="name"><code>READ_ACCESS_SPECIFICATION</code></td>
837
+
838
+
839
+ <td class="type">
840
+
841
+
842
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
843
+
844
+
845
+
846
+ </td>
847
+
848
+
849
+
850
+
851
+
852
+ <td class="description last"></td>
853
+ </tr>
854
+
855
+
856
+
857
+ <tr>
858
+
859
+ <td class="name"><code>READ_ACCESS_RESULT</code></td>
860
+
861
+
862
+ <td class="type">
863
+
864
+
865
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
866
+
867
+
868
+
869
+ </td>
870
+
871
+
872
+
873
+
874
+
875
+ <td class="description last"></td>
876
+ </tr>
877
+
878
+
879
+
880
+ <tr>
881
+
882
+ <td class="name"><code>LIGHTING_COMMAND</code></td>
883
+
884
+
885
+ <td class="type">
886
+
887
+
888
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
889
+
890
+
891
+
892
+ </td>
893
+
894
+
895
+
896
+
897
+
898
+ <td class="description last"></td>
899
+ </tr>
900
+
901
+
902
+
903
+ <tr>
904
+
905
+ <td class="name"><code>CONTEXT_SPECIFIC_DECODED</code></td>
906
+
907
+
908
+ <td class="type">
909
+
910
+
911
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
912
+
913
+
914
+
915
+ </td>
916
+
917
+
918
+
919
+
920
+
921
+ <td class="description last"></td>
922
+ </tr>
923
+
924
+
925
+
926
+ <tr>
927
+
928
+ <td class="name"><code>CONTEXT_SPECIFIC_ENCODED</code></td>
929
+
930
+
931
+ <td class="type">
932
+
933
+
934
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
935
+
936
+
937
+
938
+ </td>
939
+
940
+
941
+
942
+
943
+
944
+ <td class="description last"></td>
945
+ </tr>
946
+
947
+
948
+
949
+ <tr>
950
+
951
+ <td class="name"><code>LOG_RECORD</code></td>
952
+
953
+
954
+ <td class="type">
955
+
956
+
957
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
958
+
959
+
960
+
961
+ </td>
962
+
963
+
964
+
965
+
966
+
967
+ <td class="description last"></td>
968
+ </tr>
969
+
970
+
971
+ </tbody>
972
+ </table>
973
+
974
+
975
+
976
+
977
+
978
+
979
+
980
+
981
+ <h5>Type:</h5>
982
+ <ul>
983
+ <li>
984
+
985
+ <span class="param-type"><a href="global.html#ApplicationTag">ApplicationTag</a></span>
986
+
987
+
988
+ </li>
989
+ </ul>
990
+
991
+
992
+
993
+
994
+
995
+
996
+
997
+
998
+ <h4 class="name" id="EnableDisable"><span class="type-signature">(readonly) </span>EnableDisable<span class="type-signature"> :<a href="global.html#EnableDisable">EnableDisable</a></span></h4>
999
+
1000
+
1001
+
1002
+
1003
+
1004
+ <dl class="details">
1005
+
1006
+
1007
+ <dt class="tag-source">Source:</dt>
1008
+ <dd class="tag-source"><ul class="dummy"><li>
1009
+ <a href="enum.js.html">enum.js</a>, <a href="enum.js.html#line2246">line 2246</a>
1010
+ </li></ul></dd>
1011
+
1012
+
1013
+
1014
+
1015
+
1016
+
1017
+
1018
+
1019
+
1020
+
1021
+
1022
+
1023
+
1024
+
1025
+
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+
1033
+
1034
+
1035
+
1036
+
1037
+
1038
+
1039
+
1040
+
1041
+
1042
+ </dl>
1043
+
1044
+
1045
+
1046
+ <h5 class="subsection-title">Properties:</h5>
1047
+
1048
+
1049
+
1050
+ <table class="props">
1051
+ <thead>
1052
+ <tr>
1053
+
1054
+ <th>Name</th>
1055
+
1056
+
1057
+ <th>Type</th>
1058
+
1059
+
1060
+
1061
+
1062
+
1063
+ <th class="last">Description</th>
1064
+ </tr>
1065
+ </thead>
1066
+
1067
+ <tbody>
1068
+
1069
+
1070
+ <tr>
1071
+
1072
+ <td class="name"><code>ENABLE</code></td>
1073
+
1074
+
1075
+ <td class="type">
1076
+
1077
+
1078
+ <span class="param-type"><a href="global.html#EnableDisable">EnableDisable</a></span>
1079
+
1080
+
1081
+
1082
+ </td>
1083
+
1084
+
1085
+
1086
+
1087
+
1088
+ <td class="description last"></td>
1089
+ </tr>
1090
+
1091
+
1092
+
1093
+ <tr>
1094
+
1095
+ <td class="name"><code>DISABLE</code></td>
1096
+
1097
+
1098
+ <td class="type">
1099
+
1100
+
1101
+ <span class="param-type"><a href="global.html#EnableDisable">EnableDisable</a></span>
1102
+
1103
+
1104
+
1105
+ </td>
1106
+
1107
+
1108
+
1109
+
1110
+
1111
+ <td class="description last"></td>
1112
+ </tr>
1113
+
1114
+
1115
+
1116
+ <tr>
1117
+
1118
+ <td class="name"><code>DISABLE_INITIATION</code></td>
1119
+
1120
+
1121
+ <td class="type">
1122
+
1123
+
1124
+ <span class="param-type"><a href="global.html#EnableDisable">EnableDisable</a></span>
1125
+
1126
+
1127
+
1128
+ </td>
1129
+
1130
+
1131
+
1132
+
1133
+
1134
+ <td class="description last"></td>
1135
+ </tr>
1136
+
1137
+
1138
+ </tbody>
1139
+ </table>
1140
+
1141
+
1142
+
1143
+
1144
+
1145
+
1146
+
1147
+
1148
+ <h5>Type:</h5>
1149
+ <ul>
1150
+ <li>
1151
+
1152
+ <span class="param-type"><a href="global.html#EnableDisable">EnableDisable</a></span>
1153
+
1154
+
1155
+ </li>
1156
+ </ul>
1157
+
1158
+
1159
+
1160
+
1161
+
1162
+
1163
+
1164
+
1165
+ <h4 class="name" id="MaxApduLengthAccepted"><span class="type-signature">(readonly) </span>MaxApduLengthAccepted<span class="type-signature"> :<a href="global.html#MaxApduLengthAccepted">MaxApduLengthAccepted</a></span></h4>
1166
+
1167
+
1168
+
1169
+
1170
+
1171
+ <dl class="details">
1172
+
1173
+
1174
+ <dt class="tag-source">Source:</dt>
1175
+ <dd class="tag-source"><ul class="dummy"><li>
1176
+ <a href="enum.js.html">enum.js</a>, <a href="enum.js.html#line2259">line 2259</a>
1177
+ </li></ul></dd>
1178
+
1179
+
1180
+
1181
+
1182
+
1183
+
1184
+
1185
+
1186
+
1187
+
1188
+
1189
+
1190
+
1191
+
1192
+
1193
+
1194
+
1195
+
1196
+
1197
+
1198
+
1199
+
1200
+
1201
+
1202
+
1203
+
1204
+
1205
+
1206
+
1207
+
1208
+
1209
+ </dl>
1210
+
1211
+
1212
+
1213
+ <h5 class="subsection-title">Properties:</h5>
1214
+
1215
+
1216
+
1217
+ <table class="props">
1218
+ <thead>
1219
+ <tr>
1220
+
1221
+ <th>Name</th>
1222
+
1223
+
1224
+ <th>Type</th>
1225
+
1226
+
1227
+
1228
+
1229
+
1230
+ <th class="last">Description</th>
1231
+ </tr>
1232
+ </thead>
1233
+
1234
+ <tbody>
1235
+
1236
+
1237
+ <tr>
1238
+
1239
+ <td class="name"><code>OCTETS_50</code></td>
1240
+
1241
+
1242
+ <td class="type">
1243
+
1244
+
1245
+ <span class="param-type"><a href="global.html#MaxApduLengthAccepted">MaxApduLengthAccepted</a></span>
1246
+
1247
+
1248
+
1249
+ </td>
1250
+
1251
+
1252
+
1253
+
1254
+
1255
+ <td class="description last"></td>
1256
+ </tr>
1257
+
1258
+
1259
+
1260
+ <tr>
1261
+
1262
+ <td class="name"><code>OCTETS_128</code></td>
1263
+
1264
+
1265
+ <td class="type">
1266
+
1267
+
1268
+ <span class="param-type"><a href="global.html#MaxApduLengthAccepted">MaxApduLengthAccepted</a></span>
1269
+
1270
+
1271
+
1272
+ </td>
1273
+
1274
+
1275
+
1276
+
1277
+
1278
+ <td class="description last"></td>
1279
+ </tr>
1280
+
1281
+
1282
+
1283
+ <tr>
1284
+
1285
+ <td class="name"><code>OCTETS_206</code></td>
1286
+
1287
+
1288
+ <td class="type">
1289
+
1290
+
1291
+ <span class="param-type"><a href="global.html#MaxApduLengthAccepted">MaxApduLengthAccepted</a></span>
1292
+
1293
+
1294
+
1295
+ </td>
1296
+
1297
+
1298
+
1299
+
1300
+
1301
+ <td class="description last"></td>
1302
+ </tr>
1303
+
1304
+
1305
+
1306
+ <tr>
1307
+
1308
+ <td class="name"><code>OCTETS_480</code></td>
1309
+
1310
+
1311
+ <td class="type">
1312
+
1313
+
1314
+ <span class="param-type"><a href="global.html#MaxApduLengthAccepted">MaxApduLengthAccepted</a></span>
1315
+
1316
+
1317
+
1318
+ </td>
1319
+
1320
+
1321
+
1322
+
1323
+
1324
+ <td class="description last"></td>
1325
+ </tr>
1326
+
1327
+
1328
+
1329
+ <tr>
1330
+
1331
+ <td class="name"><code>OCTETS_1024</code></td>
1332
+
1333
+
1334
+ <td class="type">
1335
+
1336
+
1337
+ <span class="param-type"><a href="global.html#MaxApduLengthAccepted">MaxApduLengthAccepted</a></span>
1338
+
1339
+
1340
+
1341
+ </td>
1342
+
1343
+
1344
+
1345
+
1346
+
1347
+ <td class="description last"></td>
1348
+ </tr>
1349
+
1350
+
1351
+
1352
+ <tr>
1353
+
1354
+ <td class="name"><code>OCTETS_1476</code></td>
1355
+
1356
+
1357
+ <td class="type">
1358
+
1359
+
1360
+ <span class="param-type"><a href="global.html#MaxApduLengthAccepted">MaxApduLengthAccepted</a></span>
1361
+
1362
+
1363
+
1364
+ </td>
1365
+
1366
+
1367
+
1368
+
1369
+
1370
+ <td class="description last"></td>
1371
+ </tr>
1372
+
1373
+
1374
+ </tbody>
1375
+ </table>
1376
+
1377
+
1378
+
1379
+
1380
+
1381
+
1382
+
1383
+
1384
+ <h5>Type:</h5>
1385
+ <ul>
1386
+ <li>
1387
+
1388
+ <span class="param-type"><a href="global.html#MaxApduLengthAccepted">MaxApduLengthAccepted</a></span>
1389
+
1390
+
1391
+ </li>
1392
+ </ul>
1393
+
1394
+
1395
+
1396
+
1397
+
1398
+
1399
+
1400
+
1401
+ <h4 class="name" id="MaxSegmentsAccepted"><span class="type-signature">(readonly) </span>MaxSegmentsAccepted<span class="type-signature"> :<a href="global.html#MaxSegmentsAccepted">MaxSegmentsAccepted</a></span></h4>
1402
+
1403
+
1404
+
1405
+
1406
+
1407
+ <dl class="details">
1408
+
1409
+
1410
+ <dt class="tag-source">Source:</dt>
1411
+ <dd class="tag-source"><ul class="dummy"><li>
1412
+ <a href="enum.js.html">enum.js</a>, <a href="enum.js.html#line2275">line 2275</a>
1413
+ </li></ul></dd>
1414
+
1415
+
1416
+
1417
+
1418
+
1419
+
1420
+
1421
+
1422
+
1423
+
1424
+
1425
+
1426
+
1427
+
1428
+
1429
+
1430
+
1431
+
1432
+
1433
+
1434
+
1435
+
1436
+
1437
+
1438
+
1439
+
1440
+
1441
+
1442
+
1443
+
1444
+
1445
+ </dl>
1446
+
1447
+
1448
+
1449
+ <h5 class="subsection-title">Properties:</h5>
1450
+
1451
+
1452
+
1453
+ <table class="props">
1454
+ <thead>
1455
+ <tr>
1456
+
1457
+ <th>Name</th>
1458
+
1459
+
1460
+ <th>Type</th>
1461
+
1462
+
1463
+
1464
+
1465
+
1466
+ <th class="last">Description</th>
1467
+ </tr>
1468
+ </thead>
1469
+
1470
+ <tbody>
1471
+
1472
+
1473
+ <tr>
1474
+
1475
+ <td class="name"><code>SEGMENTS_0</code></td>
1476
+
1477
+
1478
+ <td class="type">
1479
+
1480
+
1481
+ <span class="param-type"><a href="global.html#MaxSegmentsAccepted">MaxSegmentsAccepted</a></span>
1482
+
1483
+
1484
+
1485
+ </td>
1486
+
1487
+
1488
+
1489
+
1490
+
1491
+ <td class="description last"></td>
1492
+ </tr>
1493
+
1494
+
1495
+
1496
+ <tr>
1497
+
1498
+ <td class="name"><code>SEGMENTS_2</code></td>
1499
+
1500
+
1501
+ <td class="type">
1502
+
1503
+
1504
+ <span class="param-type"><a href="global.html#MaxSegmentsAccepted">MaxSegmentsAccepted</a></span>
1505
+
1506
+
1507
+
1508
+ </td>
1509
+
1510
+
1511
+
1512
+
1513
+
1514
+ <td class="description last"></td>
1515
+ </tr>
1516
+
1517
+
1518
+
1519
+ <tr>
1520
+
1521
+ <td class="name"><code>SEGMENTS_4</code></td>
1522
+
1523
+
1524
+ <td class="type">
1525
+
1526
+
1527
+ <span class="param-type"><a href="global.html#MaxSegmentsAccepted">MaxSegmentsAccepted</a></span>
1528
+
1529
+
1530
+
1531
+ </td>
1532
+
1533
+
1534
+
1535
+
1536
+
1537
+ <td class="description last"></td>
1538
+ </tr>
1539
+
1540
+
1541
+
1542
+ <tr>
1543
+
1544
+ <td class="name"><code>SEGMENTS_8</code></td>
1545
+
1546
+
1547
+ <td class="type">
1548
+
1549
+
1550
+ <span class="param-type"><a href="global.html#MaxSegmentsAccepted">MaxSegmentsAccepted</a></span>
1551
+
1552
+
1553
+
1554
+ </td>
1555
+
1556
+
1557
+
1558
+
1559
+
1560
+ <td class="description last"></td>
1561
+ </tr>
1562
+
1563
+
1564
+
1565
+ <tr>
1566
+
1567
+ <td class="name"><code>SEGMENTS_16</code></td>
1568
+
1569
+
1570
+ <td class="type">
1571
+
1572
+
1573
+ <span class="param-type"><a href="global.html#MaxSegmentsAccepted">MaxSegmentsAccepted</a></span>
1574
+
1575
+
1576
+
1577
+ </td>
1578
+
1579
+
1580
+
1581
+
1582
+
1583
+ <td class="description last"></td>
1584
+ </tr>
1585
+
1586
+
1587
+
1588
+ <tr>
1589
+
1590
+ <td class="name"><code>SEGMENTS_32</code></td>
1591
+
1592
+
1593
+ <td class="type">
1594
+
1595
+
1596
+ <span class="param-type"><a href="global.html#MaxSegmentsAccepted">MaxSegmentsAccepted</a></span>
1597
+
1598
+
1599
+
1600
+ </td>
1601
+
1602
+
1603
+
1604
+
1605
+
1606
+ <td class="description last"></td>
1607
+ </tr>
1608
+
1609
+
1610
+
1611
+ <tr>
1612
+
1613
+ <td class="name"><code>SEGMENTS_64</code></td>
1614
+
1615
+
1616
+ <td class="type">
1617
+
1618
+
1619
+ <span class="param-type"><a href="global.html#MaxSegmentsAccepted">MaxSegmentsAccepted</a></span>
1620
+
1621
+
1622
+
1623
+ </td>
1624
+
1625
+
1626
+
1627
+
1628
+
1629
+ <td class="description last"></td>
1630
+ </tr>
1631
+
1632
+
1633
+
1634
+ <tr>
1635
+
1636
+ <td class="name"><code>SEGMENTS_65</code></td>
1637
+
1638
+
1639
+ <td class="type">
1640
+
1641
+
1642
+ <span class="param-type"><a href="global.html#MaxSegmentsAccepted">MaxSegmentsAccepted</a></span>
1643
+
1644
+
1645
+
1646
+ </td>
1647
+
1648
+
1649
+
1650
+
1651
+
1652
+ <td class="description last"></td>
1653
+ </tr>
1654
+
1655
+
1656
+ </tbody>
1657
+ </table>
1658
+
1659
+
1660
+
1661
+
1662
+
1663
+
1664
+
1665
+
1666
+ <h5>Type:</h5>
1667
+ <ul>
1668
+ <li>
1669
+
1670
+ <span class="param-type"><a href="global.html#MaxSegmentsAccepted">MaxSegmentsAccepted</a></span>
1671
+
1672
+
1673
+ </li>
1674
+ </ul>
1675
+
1676
+
1677
+
1678
+
1679
+
1680
+
1681
+
1682
+
1683
+ <h4 class="name" id="ReinitializedState"><span class="type-signature">(readonly) </span>ReinitializedState<span class="type-signature"> :<a href="global.html#ReinitializedState">ReinitializedState</a></span></h4>
1684
+
1685
+
1686
+
1687
+
1688
+
1689
+ <dl class="details">
1690
+
1691
+
1692
+ <dt class="tag-source">Source:</dt>
1693
+ <dd class="tag-source"><ul class="dummy"><li>
1694
+ <a href="enum.js.html">enum.js</a>, <a href="enum.js.html#line2443">line 2443</a>
1695
+ </li></ul></dd>
1696
+
1697
+
1698
+
1699
+
1700
+
1701
+
1702
+
1703
+
1704
+
1705
+
1706
+
1707
+
1708
+
1709
+
1710
+
1711
+
1712
+
1713
+
1714
+
1715
+
1716
+
1717
+
1718
+
1719
+
1720
+
1721
+
1722
+
1723
+
1724
+
1725
+
1726
+
1727
+ </dl>
1728
+
1729
+
1730
+
1731
+ <h5 class="subsection-title">Properties:</h5>
1732
+
1733
+
1734
+
1735
+ <table class="props">
1736
+ <thead>
1737
+ <tr>
1738
+
1739
+ <th>Name</th>
1740
+
1741
+
1742
+ <th>Type</th>
1743
+
1744
+
1745
+
1746
+
1747
+
1748
+ <th class="last">Description</th>
1749
+ </tr>
1750
+ </thead>
1751
+
1752
+ <tbody>
1753
+
1754
+
1755
+ <tr>
1756
+
1757
+ <td class="name"><code>COLDSTART</code></td>
1758
+
1759
+
1760
+ <td class="type">
1761
+
1762
+
1763
+ <span class="param-type"><a href="global.html#ReinitializedState">ReinitializedState</a></span>
1764
+
1765
+
1766
+
1767
+ </td>
1768
+
1769
+
1770
+
1771
+
1772
+
1773
+ <td class="description last"></td>
1774
+ </tr>
1775
+
1776
+
1777
+
1778
+ <tr>
1779
+
1780
+ <td class="name"><code>WARMSTART</code></td>
1781
+
1782
+
1783
+ <td class="type">
1784
+
1785
+
1786
+ <span class="param-type"><a href="global.html#ReinitializedState">ReinitializedState</a></span>
1787
+
1788
+
1789
+
1790
+ </td>
1791
+
1792
+
1793
+
1794
+
1795
+
1796
+ <td class="description last"></td>
1797
+ </tr>
1798
+
1799
+
1800
+
1801
+ <tr>
1802
+
1803
+ <td class="name"><code>STARTBACKUP</code></td>
1804
+
1805
+
1806
+ <td class="type">
1807
+
1808
+
1809
+ <span class="param-type"><a href="global.html#ReinitializedState">ReinitializedState</a></span>
1810
+
1811
+
1812
+
1813
+ </td>
1814
+
1815
+
1816
+
1817
+
1818
+
1819
+ <td class="description last"></td>
1820
+ </tr>
1821
+
1822
+
1823
+
1824
+ <tr>
1825
+
1826
+ <td class="name"><code>ENDBACKUP</code></td>
1827
+
1828
+
1829
+ <td class="type">
1830
+
1831
+
1832
+ <span class="param-type"><a href="global.html#ReinitializedState">ReinitializedState</a></span>
1833
+
1834
+
1835
+
1836
+ </td>
1837
+
1838
+
1839
+
1840
+
1841
+
1842
+ <td class="description last"></td>
1843
+ </tr>
1844
+
1845
+
1846
+
1847
+ <tr>
1848
+
1849
+ <td class="name"><code>STARTRESTORE</code></td>
1850
+
1851
+
1852
+ <td class="type">
1853
+
1854
+
1855
+ <span class="param-type"><a href="global.html#ReinitializedState">ReinitializedState</a></span>
1856
+
1857
+
1858
+
1859
+ </td>
1860
+
1861
+
1862
+
1863
+
1864
+
1865
+ <td class="description last"></td>
1866
+ </tr>
1867
+
1868
+
1869
+
1870
+ <tr>
1871
+
1872
+ <td class="name"><code>ENDRESTORE</code></td>
1873
+
1874
+
1875
+ <td class="type">
1876
+
1877
+
1878
+ <span class="param-type"><a href="global.html#ReinitializedState">ReinitializedState</a></span>
1879
+
1880
+
1881
+
1882
+ </td>
1883
+
1884
+
1885
+
1886
+
1887
+
1888
+ <td class="description last"></td>
1889
+ </tr>
1890
+
1891
+
1892
+
1893
+ <tr>
1894
+
1895
+ <td class="name"><code>ABORTRESTORE</code></td>
1896
+
1897
+
1898
+ <td class="type">
1899
+
1900
+
1901
+ <span class="param-type"><a href="global.html#ReinitializedState">ReinitializedState</a></span>
1902
+
1903
+
1904
+
1905
+ </td>
1906
+
1907
+
1908
+
1909
+
1910
+
1911
+ <td class="description last"></td>
1912
+ </tr>
1913
+
1914
+
1915
+
1916
+ <tr>
1917
+
1918
+ <td class="name"><code>ACTIVATE_CHANGES</code></td>
1919
+
1920
+
1921
+ <td class="type">
1922
+
1923
+
1924
+ <span class="param-type"><a href="global.html#ReinitializedState">ReinitializedState</a></span>
1925
+
1926
+
1927
+
1928
+ </td>
1929
+
1930
+
1931
+
1932
+
1933
+
1934
+ <td class="description last"></td>
1935
+ </tr>
1936
+
1937
+
1938
+ </tbody>
1939
+ </table>
1940
+
1941
+
1942
+
1943
+
1944
+
1945
+
1946
+
1947
+
1948
+ <h5>Type:</h5>
1949
+ <ul>
1950
+ <li>
1951
+
1952
+ <span class="param-type"><a href="global.html#ReinitializedState">ReinitializedState</a></span>
1953
+
1954
+
1955
+ </li>
1956
+ </ul>
1957
+
1958
+
1959
+
1960
+
1961
+
1962
+
1963
+
1964
+
1965
+ <h4 class="name" id="usc"><span class="type-signature">(constant) </span>usc<span class="type-signature"></span></h4>
1966
+
1967
+
1968
+
1969
+
1970
+
1971
+ <dl class="details">
1972
+
1973
+
1974
+ <dt class="tag-source">Source:</dt>
1975
+ <dd class="tag-source"><ul class="dummy"><li>
1976
+ <a href="enum.js.html">enum.js</a>, <a href="enum.js.html#line28">line 28</a>
1977
+ </li></ul></dd>
1978
+
1979
+
1980
+
1981
+
1982
+
1983
+
1984
+
1985
+
1986
+
1987
+
1988
+
1989
+
1990
+
1991
+
1992
+
1993
+
1994
+
1995
+
1996
+
1997
+
1998
+
1999
+
2000
+
2001
+
2002
+
2003
+
2004
+
2005
+
2006
+
2007
+
2008
+
2009
+ </dl>
2010
+
2011
+
2012
+
2013
+
2014
+
2015
+ <div class="description">
2016
+ Turn an enum into a string suitable for debugging.
2017
+ If value is not found in the enum the value itself is returned as string
2018
+ </div>
2019
+
2020
+
2021
+
2022
+
2023
+
2024
+
2025
+
2026
+ <h5>Example</h5>
2027
+
2028
+ <pre class="prettyprint"><code>const s = bacnet.enum.getEnumName(
2029
+ bacnet.enum.PropertyIdentifier,
2030
+ bacnet.enum.PropertyIdentifier.PRESENT_VALUE
2031
+ );
2032
+ console.log(s); // "PRESENT_VALUE(85)"</code></pre>
2033
+
2034
+
2035
+
2036
+
2037
+
2038
+
2039
+
2040
+
2041
+
2042
+
2043
+
2044
+ </article>
2045
+
2046
+ </section>
2047
+
2048
+
2049
+
2050
+
2051
+
2052
+
2053
+ </div>
2054
+
2055
+ <br class="clear">
2056
+
2057
+ <footer>
2058
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Jun 02 2020 20:24:55 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/mochajs/mocha-docdash">@mocha/docdash</a> theme.
2059
+ </footer>
2060
+
2061
+ <script src="scripts/prettify/prettify.js"></script>
2062
+ <script src="scripts/prettify/lang-css.js"></script>
2063
+ <script>prettyPrint();</script>
2064
+ <script src="scripts/linenumber.js"></script>
2065
+
2066
+
2067
+ </body>
2068
+ </html>