node-poweredup 6.11.0 → 8.0.1

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 (311) hide show
  1. package/.drone.yml +1 -0
  2. package/.gitmodules +3 -0
  3. package/{jsdoc.conf.json → .jsdoc.json} +14 -1
  4. package/README.md +47 -42
  5. package/dist/browser/poweredup.js +1 -1
  6. package/dist/browser/poweredup.js.map +1 -1
  7. package/dist/node/color.d.ts +6 -0
  8. package/dist/node/color.js +38 -0
  9. package/dist/node/color.js.map +1 -0
  10. package/dist/node/consts.d.ts +48 -27
  11. package/dist/node/consts.js +53 -31
  12. package/dist/node/consts.js.map +1 -1
  13. package/dist/node/devices/absolutemotor.js +6 -6
  14. package/dist/node/devices/absolutemotor.js.map +1 -1
  15. package/dist/node/devices/basicmotor.js +2 -2
  16. package/dist/node/devices/basicmotor.js.map +1 -1
  17. package/dist/node/devices/colordistancesensor.d.ts +11 -0
  18. package/dist/node/devices/colordistancesensor.js +95 -2
  19. package/dist/node/devices/colordistancesensor.js.map +1 -1
  20. package/dist/node/devices/device.js +2 -0
  21. package/dist/node/devices/device.js.map +1 -1
  22. package/dist/node/devices/duplotrainbasecolorsensor.d.ts +2 -1
  23. package/dist/node/devices/duplotrainbasecolorsensor.js +15 -2
  24. package/dist/node/devices/duplotrainbasecolorsensor.js.map +1 -1
  25. package/dist/node/devices/light.js +1 -1
  26. package/dist/node/devices/light.js.map +1 -1
  27. package/dist/node/devices/tachomotor.js +6 -6
  28. package/dist/node/devices/tachomotor.js.map +1 -1
  29. package/dist/node/devices/technic3x3colorlightmatrix.d.ts +22 -0
  30. package/dist/node/devices/technic3x3colorlightmatrix.js +77 -0
  31. package/dist/node/devices/technic3x3colorlightmatrix.js.map +1 -0
  32. package/dist/node/devices/techniccolorsensor.js +2 -1
  33. package/dist/node/devices/techniccolorsensor.js.map +1 -1
  34. package/dist/node/devices/technicmediumhubtiltsensor.d.ts +25 -1
  35. package/dist/node/devices/technicmediumhubtiltsensor.js +70 -2
  36. package/dist/node/devices/technicmediumhubtiltsensor.js.map +1 -1
  37. package/dist/node/devices/technicsmallangularmotor.d.ts +12 -0
  38. package/dist/node/devices/technicsmallangularmotor.js +35 -0
  39. package/dist/node/devices/technicsmallangularmotor.js.map +1 -0
  40. package/dist/node/hubs/basehub.js +4 -0
  41. package/dist/node/hubs/basehub.js.map +1 -1
  42. package/dist/node/hubs/hub.js +1 -1
  43. package/dist/node/hubs/hub.js.map +1 -1
  44. package/dist/node/hubs/lpf2hub.js +20 -19
  45. package/dist/node/hubs/lpf2hub.js.map +1 -1
  46. package/dist/node/hubs/movehub.js +1 -1
  47. package/dist/node/hubs/movehub.js.map +1 -1
  48. package/dist/node/hubs/technicmediumhub.js +1 -1
  49. package/dist/node/hubs/technicmediumhub.js.map +1 -1
  50. package/dist/node/hubs/technicsmallhub.d.ts +18 -0
  51. package/dist/node/hubs/technicsmallhub.js +64 -0
  52. package/dist/node/hubs/technicsmallhub.js.map +1 -0
  53. package/dist/node/index-browser.js +6 -0
  54. package/dist/node/index-browser.js.map +1 -1
  55. package/dist/node/index-node.d.ts +4 -1
  56. package/dist/node/index-node.js +7 -1
  57. package/dist/node/index-node.js.map +1 -1
  58. package/dist/node/poweredup-browser.js +8 -1
  59. package/dist/node/poweredup-browser.js.map +1 -1
  60. package/dist/node/poweredup-node.js +30 -1
  61. package/dist/node/poweredup-node.js.map +1 -1
  62. package/dist/node/utils.d.ts +1 -1
  63. package/dist/node/utils.js +10 -3
  64. package/dist/node/utils.js.map +1 -1
  65. package/docs/AbsoluteMotor.html +1220 -1405
  66. package/docs/BaseHub.html +787 -872
  67. package/docs/BasicMotor.html +923 -1078
  68. package/docs/ColorDistanceSensor.html +2188 -1540
  69. package/docs/CurrentSensor.html +711 -800
  70. package/docs/Device.html +574 -665
  71. package/docs/DuploTrainBase.html +1255 -1375
  72. package/docs/DuploTrainBaseColorSensor.html +1049 -978
  73. package/docs/DuploTrainBaseMotor.html +958 -1113
  74. package/docs/DuploTrainBaseSpeaker.html +793 -916
  75. package/docs/DuploTraniBaseSpeedometer.html +628 -719
  76. package/docs/Hub.html +5621 -2397
  77. package/docs/HubLED.html +831 -944
  78. package/docs/LPF2Hub.html +1215 -1335
  79. package/docs/Light.html +831 -944
  80. package/docs/Mario.html +1255 -1420
  81. package/docs/MarioAccelerometer.html +834 -911
  82. package/docs/MarioBarcodeSensor.html +834 -911
  83. package/docs/MarioPantsSensor.html +711 -800
  84. package/docs/MediumLinearMotor.html +861 -1000
  85. package/docs/MotionSensor.html +711 -800
  86. package/docs/MoveHub.html +1255 -1420
  87. package/docs/MoveHubMediumLinearMotor.html +861 -1000
  88. package/docs/MoveHubTiltSensor.html +730 -814
  89. package/docs/PiezoBuzzer.html +732 -834
  90. package/docs/PoweredUP.html +4322 -0
  91. package/docs/RemoteControl.html +1255 -1420
  92. package/docs/RemoteControlButton.html +711 -800
  93. package/docs/SimpleMediumLinearMotor.html +628 -719
  94. package/docs/TachoMotor.html +1644 -1835
  95. package/docs/Technic3x3ColorLightMatrix.html +1181 -0
  96. package/docs/TechnicColorSensor.html +1008 -1099
  97. package/docs/TechnicDistanceSensor.html +939 -1027
  98. package/docs/TechnicForceSensor.html +883 -968
  99. package/docs/TechnicLargeAngularMotor.html +1254 -1439
  100. package/docs/TechnicLargeLinearMotor.html +1254 -1439
  101. package/docs/TechnicMediumAngularMotor.html +1254 -1439
  102. package/docs/TechnicMediumHub.html +1255 -1420
  103. package/docs/TechnicMediumHubAccelerometerSensor.html +749 -828
  104. package/docs/TechnicMediumHubGyroSensor.html +749 -828
  105. package/docs/TechnicMediumHubTiltSensor.html +1340 -831
  106. package/docs/TechnicSmallAngularMotor.html +2073 -0
  107. package/docs/TechnicXLargeLinearMotor.html +1254 -1439
  108. package/docs/TiltSensor.html +730 -814
  109. package/docs/TrainMotor.html +958 -1113
  110. package/docs/VoltageSensor.html +711 -800
  111. package/docs/WeDo2SmartHub.html +1112 -1221
  112. package/docs/consts.js.html +791 -0
  113. package/docs/devices_absolutemotor.js.html +95 -197
  114. package/docs/devices_basicmotor.js.html +91 -193
  115. package/docs/devices_colordistancesensor.js.html +184 -193
  116. package/docs/devices_currentsensor.js.html +89 -191
  117. package/docs/devices_device.js.html +91 -191
  118. package/docs/devices_duplotrainbasecolorsensor.js.html +104 -193
  119. package/docs/devices_duplotrainbasemotor.js.html +92 -194
  120. package/docs/devices_duplotrainbasespeaker.js.html +89 -191
  121. package/docs/devices_duplotrainbasespeedometer.js.html +89 -191
  122. package/docs/devices_hubled.js.html +89 -191
  123. package/docs/devices_light.js.html +90 -192
  124. package/docs/devices_marioaccelerometer.js.html +89 -191
  125. package/docs/devices_mariobarcodesensor.js.html +89 -191
  126. package/docs/devices_mariopantssensor.js.html +89 -191
  127. package/docs/devices_mediumlinearmotor.js.html +92 -194
  128. package/docs/devices_motionsensor.js.html +89 -191
  129. package/docs/devices_movehubmediumlinearmotor.js.html +92 -194
  130. package/docs/devices_movehubtiltsensor.js.html +89 -191
  131. package/docs/devices_piezobuzzer.js.html +89 -191
  132. package/docs/devices_remotecontrolbutton.js.html +89 -191
  133. package/docs/devices_simplemediumlinearmotor.js.html +92 -194
  134. package/docs/devices_tachomotor.js.html +95 -197
  135. package/docs/devices_technic3x3colorlightmatrix.js.html +190 -0
  136. package/docs/devices_techniccolorsensor.js.html +91 -192
  137. package/docs/devices_technicdistancesensor.js.html +89 -191
  138. package/docs/devices_technicforcesensor.js.html +89 -191
  139. package/docs/devices_techniclargeangularmotor.js.html +92 -194
  140. package/docs/devices_techniclargelinearmotor.js.html +92 -194
  141. package/docs/devices_technicmediumangularmotor.js.html +92 -194
  142. package/docs/devices_technicmediumhubaccelerometersensor.js.html +89 -191
  143. package/docs/devices_technicmediumhubgyrosensor.js.html +89 -191
  144. package/docs/devices_technicmediumhubtiltsensor.js.html +159 -193
  145. package/docs/devices_technicsmallangularmotor.js.html +148 -0
  146. package/docs/devices_technicxlargelinearmotor.js.html +92 -194
  147. package/docs/devices_tiltsensor.js.html +89 -191
  148. package/docs/devices_trainmotor.js.html +92 -194
  149. package/docs/devices_voltagesensor.js.html +89 -191
  150. package/docs/fonts/OpenSans-Bold-webfont.eot +0 -0
  151. package/docs/fonts/OpenSans-Bold-webfont.svg +1830 -0
  152. package/docs/fonts/OpenSans-Bold-webfont.woff +0 -0
  153. package/docs/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
  154. package/docs/fonts/OpenSans-BoldItalic-webfont.svg +1830 -0
  155. package/docs/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
  156. package/docs/fonts/OpenSans-Italic-webfont.eot +0 -0
  157. package/docs/fonts/OpenSans-Italic-webfont.svg +1830 -0
  158. package/docs/fonts/OpenSans-Italic-webfont.woff +0 -0
  159. package/docs/fonts/OpenSans-Light-webfont.eot +0 -0
  160. package/docs/fonts/OpenSans-Light-webfont.svg +1831 -0
  161. package/docs/fonts/OpenSans-Light-webfont.woff +0 -0
  162. package/docs/fonts/OpenSans-LightItalic-webfont.eot +0 -0
  163. package/docs/fonts/OpenSans-LightItalic-webfont.svg +1835 -0
  164. package/docs/fonts/OpenSans-LightItalic-webfont.woff +0 -0
  165. package/docs/fonts/OpenSans-Regular-webfont.eot +0 -0
  166. package/docs/fonts/OpenSans-Regular-webfont.svg +1831 -0
  167. package/docs/fonts/OpenSans-Regular-webfont.woff +0 -0
  168. package/docs/fonts/OpenSans-Semibold-webfont.eot +0 -0
  169. package/docs/fonts/OpenSans-Semibold-webfont.svg +1830 -0
  170. package/docs/fonts/OpenSans-Semibold-webfont.ttf +0 -0
  171. package/docs/fonts/OpenSans-Semibold-webfont.woff +0 -0
  172. package/docs/fonts/OpenSans-SemiboldItalic-webfont.eot +0 -0
  173. package/docs/fonts/OpenSans-SemiboldItalic-webfont.svg +1830 -0
  174. package/docs/fonts/OpenSans-SemiboldItalic-webfont.ttf +0 -0
  175. package/docs/fonts/OpenSans-SemiboldItalic-webfont.woff +0 -0
  176. package/docs/global.html +9829 -0
  177. package/docs/hubs_basehub.js.html +93 -191
  178. package/docs/hubs_duplotrainbase.js.html +89 -191
  179. package/docs/hubs_hub.js.html +90 -192
  180. package/docs/hubs_lpf2hub.js.html +109 -210
  181. package/docs/hubs_mario.js.html +89 -191
  182. package/docs/hubs_movehub.js.html +90 -192
  183. package/docs/hubs_remotecontrol.js.html +89 -191
  184. package/docs/hubs_technicmediumhub.js.html +90 -192
  185. package/docs/hubs_technicsmallhub.js.html +177 -0
  186. package/docs/hubs_wedo2smarthub.js.html +89 -191
  187. package/docs/icons/home.svg +4 -0
  188. package/docs/icons/search.svg +4 -0
  189. package/docs/index.html +143 -236
  190. package/docs/poweredup-browser.js.html +348 -0
  191. package/docs/poweredup-node.js.html +314 -0
  192. package/docs/scripts/linenumber.js +23 -0
  193. package/docs/scripts/pagelocation.js +89 -0
  194. package/docs/styles/collapse.css +27 -0
  195. package/docs/styles/jsdoc-default.css +953 -0
  196. package/docs/styles/prettify-jsdoc.css +111 -0
  197. package/docs/styles/prettify-tomorrow.css +15 -9
  198. package/jsdoc-template/braintree/CHANGELOG.md +31 -0
  199. package/jsdoc-template/braintree/LICENSE +27 -0
  200. package/jsdoc-template/braintree/README.md +90 -0
  201. package/jsdoc-template/braintree/package.json +39 -0
  202. package/jsdoc-template/braintree/publish.js +675 -0
  203. package/jsdoc-template/braintree/static/fonts/OpenSans-Bold-webfont.eot +0 -0
  204. package/jsdoc-template/braintree/static/fonts/OpenSans-Bold-webfont.svg +1830 -0
  205. package/jsdoc-template/braintree/static/fonts/OpenSans-Bold-webfont.woff +0 -0
  206. package/jsdoc-template/braintree/static/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
  207. package/jsdoc-template/braintree/static/fonts/OpenSans-BoldItalic-webfont.svg +1830 -0
  208. package/jsdoc-template/braintree/static/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
  209. package/jsdoc-template/braintree/static/fonts/OpenSans-Italic-webfont.eot +0 -0
  210. package/jsdoc-template/braintree/static/fonts/OpenSans-Italic-webfont.svg +1830 -0
  211. package/jsdoc-template/braintree/static/fonts/OpenSans-Italic-webfont.woff +0 -0
  212. package/jsdoc-template/braintree/static/fonts/OpenSans-Light-webfont.eot +0 -0
  213. package/jsdoc-template/braintree/static/fonts/OpenSans-Light-webfont.svg +1831 -0
  214. package/jsdoc-template/braintree/static/fonts/OpenSans-Light-webfont.woff +0 -0
  215. package/jsdoc-template/braintree/static/fonts/OpenSans-LightItalic-webfont.eot +0 -0
  216. package/jsdoc-template/braintree/static/fonts/OpenSans-LightItalic-webfont.svg +1835 -0
  217. package/jsdoc-template/braintree/static/fonts/OpenSans-LightItalic-webfont.woff +0 -0
  218. package/jsdoc-template/braintree/static/fonts/OpenSans-Regular-webfont.eot +0 -0
  219. package/jsdoc-template/braintree/static/fonts/OpenSans-Regular-webfont.svg +1831 -0
  220. package/jsdoc-template/braintree/static/fonts/OpenSans-Regular-webfont.woff +0 -0
  221. package/jsdoc-template/braintree/static/fonts/OpenSans-Semibold-webfont.eot +0 -0
  222. package/jsdoc-template/braintree/static/fonts/OpenSans-Semibold-webfont.svg +1830 -0
  223. package/jsdoc-template/braintree/static/fonts/OpenSans-Semibold-webfont.ttf +0 -0
  224. package/jsdoc-template/braintree/static/fonts/OpenSans-Semibold-webfont.woff +0 -0
  225. package/jsdoc-template/braintree/static/fonts/OpenSans-SemiboldItalic-webfont.eot +0 -0
  226. package/jsdoc-template/braintree/static/fonts/OpenSans-SemiboldItalic-webfont.svg +1830 -0
  227. package/jsdoc-template/braintree/static/fonts/OpenSans-SemiboldItalic-webfont.ttf +0 -0
  228. package/jsdoc-template/braintree/static/fonts/OpenSans-SemiboldItalic-webfont.woff +0 -0
  229. package/jsdoc-template/braintree/static/icons/home.svg +4 -0
  230. package/jsdoc-template/braintree/static/icons/search.svg +4 -0
  231. package/jsdoc-template/braintree/static/scripts/linenumber.js +23 -0
  232. package/jsdoc-template/braintree/static/scripts/pagelocation.js +89 -0
  233. package/jsdoc-template/braintree/static/styles/collapse.css +27 -0
  234. package/jsdoc-template/braintree/static/styles/jsdoc-default.css +953 -0
  235. package/jsdoc-template/braintree/static/styles/prettify-jsdoc.css +111 -0
  236. package/jsdoc-template/braintree/static/styles/prettify-tomorrow.css +138 -0
  237. package/jsdoc-template/braintree/tmpl/augments.tmpl +10 -0
  238. package/jsdoc-template/braintree/tmpl/container.tmpl +213 -0
  239. package/jsdoc-template/braintree/tmpl/details.tmpl +223 -0
  240. package/jsdoc-template/braintree/tmpl/example.tmpl +2 -0
  241. package/jsdoc-template/braintree/tmpl/examples.tmpl +14 -0
  242. package/jsdoc-template/braintree/tmpl/exceptions.tmpl +28 -0
  243. package/jsdoc-template/braintree/tmpl/layout.tmpl +150 -0
  244. package/jsdoc-template/braintree/tmpl/mainpage.tmpl +9 -0
  245. package/jsdoc-template/braintree/tmpl/members.tmpl +38 -0
  246. package/jsdoc-template/braintree/tmpl/method.tmpl +128 -0
  247. package/jsdoc-template/braintree/tmpl/params.tmpl +125 -0
  248. package/jsdoc-template/braintree/tmpl/properties.tmpl +111 -0
  249. package/jsdoc-template/braintree/tmpl/returns.tmpl +17 -0
  250. package/jsdoc-template/braintree/tmpl/source.tmpl +9 -0
  251. package/jsdoc-template/braintree/tmpl/tutorial.tmpl +23 -0
  252. package/jsdoc-template/braintree/tmpl/type.tmpl +11 -0
  253. package/package.json +14 -15
  254. package/src/color.ts +20 -0
  255. package/src/consts.ts +47 -26
  256. package/src/devices/colordistancesensor.ts +98 -3
  257. package/src/devices/device.ts +1 -0
  258. package/src/devices/duplotrainbasecolorsensor.ts +17 -2
  259. package/src/devices/technic3x3colorlightmatrix.ts +64 -0
  260. package/src/devices/techniccolorsensor.ts +2 -1
  261. package/src/devices/technicmediumhubtiltsensor.ts +75 -3
  262. package/src/devices/technicsmallangularmotor.ts +17 -0
  263. package/src/hubs/basehub.ts +4 -0
  264. package/src/hubs/lpf2hub.ts +8 -9
  265. package/src/hubs/technicmediumhub.ts +1 -1
  266. package/src/hubs/technicsmallhub.ts +60 -0
  267. package/src/index-browser.ts +6 -0
  268. package/src/index-node.ts +6 -0
  269. package/src/poweredup-browser.ts +8 -1
  270. package/src/poweredup-node.ts +9 -1
  271. package/src/utils.ts +7 -0
  272. package/docs/classes.list.html +0 -8654
  273. package/docs/fonts/glyphicons-halflings-regular.eot +0 -0
  274. package/docs/fonts/glyphicons-halflings-regular.svg +0 -288
  275. package/docs/fonts/glyphicons-halflings-regular.ttf +0 -0
  276. package/docs/fonts/glyphicons-halflings-regular.woff +0 -0
  277. package/docs/fonts/glyphicons-halflings-regular.woff2 +0 -0
  278. package/docs/img/glyphicons-halflings-white.png +0 -0
  279. package/docs/img/glyphicons-halflings.png +0 -0
  280. package/docs/quicksearch.html +0 -31
  281. package/docs/scripts/docstrap.lib.js +0 -11
  282. package/docs/scripts/fulltext-search-ui.js +0 -89
  283. package/docs/scripts/fulltext-search.js +0 -36
  284. package/docs/scripts/lunr.min.js +0 -6
  285. package/docs/scripts/prettify/Apache-License-2.0.txt +0 -202
  286. package/docs/scripts/prettify/jquery.min.js +0 -6
  287. package/docs/scripts/prettify/lang-css.js +0 -21
  288. package/docs/scripts/prettify/prettify.js +0 -496
  289. package/docs/scripts/sunlight.js +0 -1157
  290. package/docs/scripts/toc.js +0 -203
  291. package/docs/styles/darkstrap.css +0 -960
  292. package/docs/styles/site.cerulean.css +0 -7008
  293. package/docs/styles/site.cosmo.css +0 -7061
  294. package/docs/styles/site.cyborg.css +0 -7048
  295. package/docs/styles/site.darkly.css +0 -7171
  296. package/docs/styles/site.darkstrap.css +0 -5638
  297. package/docs/styles/site.dibs-bootstrap.css +0 -5899
  298. package/docs/styles/site.flatly.css +0 -7147
  299. package/docs/styles/site.journal.css +0 -6973
  300. package/docs/styles/site.lumen.css +0 -7298
  301. package/docs/styles/site.paper.css +0 -7623
  302. package/docs/styles/site.readable.css +0 -6997
  303. package/docs/styles/site.sandstone.css +0 -7035
  304. package/docs/styles/site.simplex.css +0 -7023
  305. package/docs/styles/site.slate.css +0 -7343
  306. package/docs/styles/site.spacelab.css +0 -7055
  307. package/docs/styles/site.superhero.css +0 -7131
  308. package/docs/styles/site.united.css +0 -6895
  309. package/docs/styles/site.yeti.css +0 -7195
  310. package/docs/styles/sunlight.dark.css +0 -345
  311. package/docs/styles/sunlight.default.css +0 -344
package/docs/LPF2Hub.html CHANGED
@@ -1,188 +1,204 @@
1
1
  <!DOCTYPE html>
2
-
3
2
  <html lang="en">
4
3
  <head>
5
- <meta charset="utf-8">
6
- <meta name="viewport" content="width=device-width">
7
- <title>node-poweredup Class: LPF2Hub</title>
8
4
 
9
- <!--[if lt IE 9]>
10
- <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
11
- <![endif]-->
12
- <link type="text/css" rel="stylesheet" href="styles/sunlight.default.css">
5
+ <meta charset="utf-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+
8
+ <title>
9
+ LPF2Hub - Documentation
10
+ </title>
11
+
12
+ <link href="https://www.braintreepayments.com/images/favicon-ccda0b14.png" rel="icon" type="image/png">
13
+
14
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.7.0/highlight.min.js"></script>
15
+ <script>hljs.initHighlightingOnLoad();</script>
13
16
 
14
- <link type="text/css" rel="stylesheet" href="styles/site.simplex.css">
17
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
15
18
 
19
+ <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
20
+ <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
21
+
22
+
23
+
24
+
25
+ <!-- start Mixpanel -->
26
+ <script type="text/javascript">(function(e,a){if(!a.__SV){var b=window;try{var c,l,i,j=b.location,g=j.hash;c=function(a,b){return(l=a.match(RegExp(b+"=([^&]*)")))?l[1]:null};g&&c(g,"state")&&(i=JSON.parse(decodeURIComponent(c(g,"state"))),"mpeditor"===i.action&&(b.sessionStorage.setItem("_mpcehash",g),history.replaceState(i.desiredHash||"",e.title,j.pathname+j.search)))}catch(m){}var k,h;window.mixpanel=a;a._i=[];a.init=function(b,c,f){function e(b,a){var c=a.split(".");2==c.length&&(b=b[c[0]],a=c[1]);b[a]=function(){b.push([a].concat(Array.prototype.slice.call(arguments,
27
+ 0)))}}var d=a;"undefined"!==typeof f?d=a[f]=[]:f="mixpanel";d.people=d.people||[];d.toString=function(b){var a="mixpanel";"mixpanel"!==f&&(a+="."+f);b||(a+=" (stub)");return a};d.people.toString=function(){return d.toString(1)+".people (stub)"};k="disable time_event track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config reset people.set people.set_once people.increment people.append people.union people.track_charge people.clear_charges people.delete_user".split(" ");
28
+ for(h=0;h<k.length;h++)e(d,k[h]);a._i.push([b,c,f])};a.__SV=1.2;b=e.createElement("script");b.type="text/javascript";b.async=!0;b.src="undefined"!==typeof MIXPANEL_CUSTOM_LIB_URL?MIXPANEL_CUSTOM_LIB_URL:"file:"===e.location.protocol&&"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js".match(/^\/\//)?"https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js":"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js";c=e.getElementsByTagName("script")[0];c.parentNode.insertBefore(b,c)}})(document,window.mixpanel||[]);
29
+ mixpanel.init("1919205b2da72e4da3b9b6639b444d59");</script>
30
+ <!-- end Mixpanel -->
16
31
  </head>
17
32
 
18
33
  <body>
34
+ <svg style="display: none;">
35
+ <defs>
36
+ <symbol id="linkIcon" fill="#706d77" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
37
+ <path d="M0 0h24v24H0z" fill="none"/>
38
+ <path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"/>
39
+ </symbol>
40
+ </defs>
41
+ </svg>
42
+
43
+ <input type="checkbox" id="nav-trigger" class="nav-trigger" />
44
+ <label for="nav-trigger" class="navicon-button x">
45
+ <div class="navicon"></div>
46
+ </label>
47
+
48
+ <label for="nav-trigger" class="overlay"></label>
49
+
50
+ <div class="top-nav-wrapper">
51
+ <ul>
52
+ <li >
53
+ <a href="index.html">
54
+
55
+ <svg fill="#6D6D6D" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
56
+ <path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"/>
57
+ <path d="M0 0h24v24H0z" fill="none"/>
58
+ </svg>
59
+
60
+
61
+ </a>
62
+ </li>
63
+
64
+
19
65
 
20
- <div class="navbar navbar-default navbar-fixed-top navbar-inverse">
21
- <div class="container">
22
- <div class="navbar-header">
23
- <a class="navbar-brand" href="index.html">node-poweredup</a>
24
- <button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#topNavigation">
25
- <span class="icon-bar"></span>
26
- <span class="icon-bar"></span>
27
- <span class="icon-bar"></span>
28
- </button>
29
- </div>
30
- <div class="navbar-collapse collapse" id="topNavigation">
31
- <ul class="nav navbar-nav">
32
-
33
- <li class="dropdown">
34
- <a href="classes.list.html" class="dropdown-toggle" data-toggle="dropdown">Classes<b class="caret"></b></a>
35
- <ul class="dropdown-menu ">
36
- <li><a href="AbsoluteMotor.html">AbsoluteMotor</a></li><li><a href="BaseHub.html">BaseHub</a></li><li><a href="BasicMotor.html">BasicMotor</a></li><li><a href="ColorDistanceSensor.html">ColorDistanceSensor</a></li><li><a href="CurrentSensor.html">CurrentSensor</a></li><li><a href="Device.html">Device</a></li><li><a href="DuploTrainBase.html">DuploTrainBase</a></li><li><a href="DuploTrainBaseColorSensor.html">DuploTrainBaseColorSensor</a></li><li><a href="DuploTrainBaseMotor.html">DuploTrainBaseMotor</a></li><li><a href="DuploTrainBaseSpeaker.html">DuploTrainBaseSpeaker</a></li><li><a href="DuploTraniBaseSpeedometer.html">DuploTraniBaseSpeedometer</a></li><li><a href="Hub.html">Hub</a></li><li><a href="HubLED.html">HubLED</a></li><li><a href="Light.html">Light</a></li><li><a href="LPF2Hub.html">LPF2Hub</a></li><li><a href="Mario.html">Mario</a></li><li><a href="MarioAccelerometer.html">MarioAccelerometer</a></li><li><a href="MarioBarcodeSensor.html">MarioBarcodeSensor</a></li><li><a href="MarioPantsSensor.html">MarioPantsSensor</a></li><li><a href="MediumLinearMotor.html">MediumLinearMotor</a></li><li><a href="MotionSensor.html">MotionSensor</a></li><li><a href="MoveHub.html">MoveHub</a></li><li><a href="MoveHubMediumLinearMotor.html">MoveHubMediumLinearMotor</a></li><li><a href="MoveHubTiltSensor.html">MoveHubTiltSensor</a></li><li><a href="PiezoBuzzer.html">PiezoBuzzer</a></li><li><a href="RemoteControl.html">RemoteControl</a></li><li><a href="RemoteControlButton.html">RemoteControlButton</a></li><li><a href="SimpleMediumLinearMotor.html">SimpleMediumLinearMotor</a></li><li><a href="TachoMotor.html">TachoMotor</a></li><li><a href="TechnicColorSensor.html">TechnicColorSensor</a></li><li><a href="TechnicDistanceSensor.html">TechnicDistanceSensor</a></li><li><a href="TechnicForceSensor.html">TechnicForceSensor</a></li><li><a href="TechnicLargeAngularMotor.html">TechnicLargeAngularMotor</a></li><li><a href="TechnicLargeLinearMotor.html">TechnicLargeLinearMotor</a></li><li><a href="TechnicMediumAngularMotor.html">TechnicMediumAngularMotor</a></li><li><a href="TechnicMediumHub.html">TechnicMediumHub</a></li><li><a href="TechnicMediumHubAccelerometerSensor.html">TechnicMediumHubAccelerometerSensor</a></li><li><a href="TechnicMediumHubGyroSensor.html">TechnicMediumHubGyroSensor</a></li><li><a href="TechnicMediumHubTiltSensor.html">TechnicMediumHubTiltSensor</a></li><li><a href="TechnicXLargeLinearMotor.html">TechnicXLargeLinearMotor</a></li><li><a href="TiltSensor.html">TiltSensor</a></li><li><a href="TrainMotor.html">TrainMotor</a></li><li><a href="VoltageSensor.html">VoltageSensor</a></li><li><a href="WeDo2SmartHub.html">WeDo2SmartHub</a></li>
37
- </ul>
38
- </li>
39
-
40
- <li class="dropdown">
41
- <a href="events.list.html" class="dropdown-toggle" data-toggle="dropdown">Events<b class="caret"></b></a>
42
- <ul class="dropdown-menu ">
43
- <li><a href="AbsoluteMotor.html#event:absolute">AbsoluteMotor#event:absolute</a></li><li><a href="AbsoluteMotor.html#event:rotate">AbsoluteMotor#event:rotate</a></li><li><a href="ColorDistanceSensor.html#event:color">ColorDistanceSensor#event:color</a></li><li><a href="ColorDistanceSensor.html#event:colorAndDistance">ColorDistanceSensor#event:colorAndDistance</a></li><li><a href="ColorDistanceSensor.html#event:distance">ColorDistanceSensor#event:distance</a></li><li><a href="CurrentSensor.html#event:current">CurrentSensor#event:current</a></li><li><a href="DuploTrainBase.html#event:button">DuploTrainBase#event:button</a></li><li><a href="DuploTrainBaseColorSensor.html#event:color">DuploTrainBaseColorSensor#event:color</a></li><li><a href="DuploTrainBaseColorSensor.html#event:reflect">DuploTrainBaseColorSensor#event:reflect</a></li><li><a href="DuploTrainBaseColorSensor.html#event:rgb">DuploTrainBaseColorSensor#event:rgb</a></li><li><a href="DuploTrainBaseSpeedometer.html#event:speed">DuploTrainBaseSpeedometer#event:speed</a></li><li><a href="Hub.html#event:attach">Hub#event:attach</a></li><li><a href="Hub.html#event:button">Hub#event:button</a></li><li><a href="Hub.html#event:detach">Hub#event:detach</a></li><li><a href="Hub.html#event:disconnect">Hub#event:disconnect</a></li><li><a href="LPF2Hub.html#event:button">LPF2Hub#event:button</a></li><li><a href="Mario.html#event:button">Mario#event:button</a></li><li><a href="MarioAccelerometer.html#event:accel">MarioAccelerometer#event:accel</a></li><li><a href="MarioAccelerometer.html#event:gest">MarioAccelerometer#event:gest</a></li><li><a href="MarioBarcodeSensor.html#event:barcode">MarioBarcodeSensor#event:barcode</a></li><li><a href="MarioBarcodeSensor.html#event:rgb">MarioBarcodeSensor#event:rgb</a></li><li><a href="MarioPantsSensor.html#event:pants">MarioPantsSensor#event:pants</a></li><li><a href="MediumLinearMotor.html#event:rotate">MediumLinearMotor#event:rotate</a></li><li><a href="MotionSensor.html#event:distance">MotionSensor#event:distance</a></li><li><a href="MoveHub.html#event:button">MoveHub#event:button</a></li><li><a href="MoveHubMediumLinearMotor.html#event:rotate">MoveHubMediumLinearMotor#event:rotate</a></li><li><a href="MoveHubTiltSensor.html#event:tilt">MoveHubTiltSensor#event:tilt</a></li><li><a href="RemoteControl.html#event:button">RemoteControl#event:button</a></li><li><a href="RemoteControlButton.html#event:button">RemoteControlButton#event:button</a></li><li><a href="TachoMotor.html#event:rotate">TachoMotor#event:rotate</a></li><li><a href="TechnicColorSensor.html#event:ambient">TechnicColorSensor#event:ambient</a></li><li><a href="TechnicColorSensor.html#event:color">TechnicColorSensor#event:color</a></li><li><a href="TechnicColorSensor.html#event:reflect">TechnicColorSensor#event:reflect</a></li><li><a href="TechnicDistanceSensor.html#event:distance">TechnicDistanceSensor#event:distance</a></li><li><a href="TechnicDistanceSensor.html#event:fastDistance">TechnicDistanceSensor#event:fastDistance</a></li><li><a href="TechnicForceSensor.html#event:force">TechnicForceSensor#event:force</a></li><li><a href="TechnicForceSensor.html#event:tapped">TechnicForceSensor#event:tapped</a></li><li><a href="TechnicForceSensor.html#event:touch">TechnicForceSensor#event:touch</a></li><li><a href="TechnicLargeAngularMotor.html#event:absolute">TechnicLargeAngularMotor#event:absolute</a></li><li><a href="TechnicLargeAngularMotor.html#event:rotate">TechnicLargeAngularMotor#event:rotate</a></li><li><a href="TechnicLargeLinearMotor.html#event:absolute">TechnicLargeLinearMotor#event:absolute</a></li><li><a href="TechnicLargeLinearMotor.html#event:rotate">TechnicLargeLinearMotor#event:rotate</a></li><li><a href="TechnicMediumAngularMotor.html#event:absolute">TechnicMediumAngularMotor#event:absolute</a></li><li><a href="TechnicMediumAngularMotor.html#event:rotate">TechnicMediumAngularMotor#event:rotate</a></li><li><a href="TechnicMediumHub.html#event:button">TechnicMediumHub#event:button</a></li><li><a href="TechnicMediumHubAccelerometerSensor.html#event:accel">TechnicMediumHubAccelerometerSensor#event:accel</a></li><li><a href="TechnicMediumHubGyroSensor.html#event:gyro">TechnicMediumHubGyroSensor#event:gyro</a></li><li><a href="TechnicMediumHubTiltSensor.html#event:tilt">TechnicMediumHubTiltSensor#event:tilt</a></li><li><a href="TechnicXLargeLinearMotor.html#event:absolute">TechnicXLargeLinearMotor#event:absolute</a></li><li><a href="TechnicXLargeLinearMotor.html#event:rotate">TechnicXLargeLinearMotor#event:rotate</a></li><li><a href="TiltSensor.html#event:tilt">TiltSensor#event:tilt</a></li><li><a href="VoltageSensor.html#event:voltage">VoltageSensor#event:voltage</a></li><li><a href="WeDo2SmartHub.html#event:button">WeDo2SmartHub#event:button</a></li>
44
- </ul>
45
- </li>
46
-
47
- </ul>
48
-
49
- <div class="col-sm-3 col-md-3">
50
- <form class="navbar-form" role="search">
51
- <div class="input-group">
52
- <input type="text" class="form-control" placeholder="Search" name="q" id="search-input">
53
- <div class="input-group-btn">
54
- <button class="btn btn-default" id="search-submit"><i class="glyphicon glyphicon-search"></i></button>
55
- </div>
56
- </div>
57
- </form>
58
- </div>
59
-
60
- </div>
61
-
62
- </div>
63
- </div>
64
-
65
-
66
- <div class="container" id="toc-content">
67
- <div class="row">
68
-
69
-
70
- <div class="col-md-8">
71
-
72
- <div id="main">
73
-
74
-
75
- <h1 class="page-title">Class: LPF2Hub</h1>
76
- <section>
66
+ </ul>
67
+ </div>
68
+
69
+ <nav>
70
+ <h3 class="reference-title">
71
+ node-poweredup Reference
72
+ </h3>
77
73
 
78
- <header>
79
-
80
- <h2>
81
- LPF2Hub
82
- </h2>
83
-
84
74
 
85
- </header>
86
75
 
76
+ <h3>Classes</h3><ul><li id="AbsoluteMotor-nav"><a href="AbsoluteMotor.html">AbsoluteMotor</a><ul class='methods'><li data-type="method" id="AbsoluteMotor-gotoAngle-nav"><a href="AbsoluteMotor.html#gotoAngle">gotoAngle</a></li><li data-type="method" id="AbsoluteMotor-gotoRealZero-nav"><a href="AbsoluteMotor.html#gotoRealZero">gotoRealZero</a></li><li data-type="method" id="AbsoluteMotor-resetZero-nav"><a href="AbsoluteMotor.html#resetZero">resetZero</a></li><li data-type="method" id="AbsoluteMotor-rotateByDegrees-nav"><a href="AbsoluteMotor.html#rotateByDegrees">rotateByDegrees</a></li><li data-type="method" id="AbsoluteMotor-setAccelerationTime-nav"><a href="AbsoluteMotor.html#setAccelerationTime">setAccelerationTime</a></li><li data-type="method" id="AbsoluteMotor-setBrakingStyle-nav"><a href="AbsoluteMotor.html#setBrakingStyle">setBrakingStyle</a></li><li data-type="method" id="AbsoluteMotor-setDecelerationTime-nav"><a href="AbsoluteMotor.html#setDecelerationTime">setDecelerationTime</a></li><li data-type="method" id="AbsoluteMotor-setMaxPower-nav"><a href="AbsoluteMotor.html#setMaxPower">setMaxPower</a></li><li data-type="method" id="AbsoluteMotor-setSpeed-nav"><a href="AbsoluteMotor.html#setSpeed">setSpeed</a></li></ul></li><li id="BaseHub-nav"><a href="BaseHub.html">BaseHub</a></li><li id="BasicMotor-nav"><a href="BasicMotor.html">BasicMotor</a><ul class='methods'><li data-type="method" id="BasicMotor-brake-nav"><a href="BasicMotor.html#brake">brake</a></li><li data-type="method" id="BasicMotor-rampPower-nav"><a href="BasicMotor.html#rampPower">rampPower</a></li><li data-type="method" id="BasicMotor-setPower-nav"><a href="BasicMotor.html#setPower">setPower</a></li><li data-type="method" id="BasicMotor-stop-nav"><a href="BasicMotor.html#stop">stop</a></li></ul></li><li id="ColorDistanceSensor-nav"><a href="ColorDistanceSensor.html">ColorDistanceSensor</a><ul class='methods'><li data-type="method" id="ColorDistanceSensor-sendPFIRMessage-nav"><a href="ColorDistanceSensor.html#sendPFIRMessage">sendPFIRMessage</a></li><li data-type="method" id="ColorDistanceSensor-setColor-nav"><a href="ColorDistanceSensor.html#setColor">setColor</a></li><li data-type="method" id="ColorDistanceSensor-setDistanceCount-nav"><a href="ColorDistanceSensor.html#setDistanceCount">setDistanceCount</a></li><li data-type="method" id="ColorDistanceSensor-setPFExtendedChannel-nav"><a href="ColorDistanceSensor.html#setPFExtendedChannel">setPFExtendedChannel</a></li><li data-type="method" id="ColorDistanceSensor-setPFPower-nav"><a href="ColorDistanceSensor.html#setPFPower">setPFPower</a></li><li data-type="method" id="ColorDistanceSensor-startPFMotors-nav"><a href="ColorDistanceSensor.html#startPFMotors">startPFMotors</a></li></ul></li><li id="CurrentSensor-nav"><a href="CurrentSensor.html">CurrentSensor</a></li><li id="Device-nav"><a href="Device.html">Device</a></li><li id="DuploTrainBase-nav"><a href="DuploTrainBase.html">DuploTrainBase</a><ul class='methods'><li data-type="method" id="DuploTrainBase-createVirtualPort-nav"><a href="DuploTrainBase.html#createVirtualPort">createVirtualPort</a></li><li data-type="method" id="DuploTrainBase-setName-nav"><a href="DuploTrainBase.html#setName">setName</a></li><li data-type="method" id="DuploTrainBase-shutdown-nav"><a href="DuploTrainBase.html#shutdown">shutdown</a></li></ul></li><li id="DuploTrainBaseColorSensor-nav"><a href="DuploTrainBaseColorSensor.html">DuploTrainBaseColorSensor</a></li><li id="DuploTrainBaseMotor-nav"><a href="DuploTrainBaseMotor.html">DuploTrainBaseMotor</a><ul class='methods'><li data-type="method" id="DuploTrainBaseMotor-brake-nav"><a href="DuploTrainBaseMotor.html#brake">brake</a></li><li data-type="method" id="DuploTrainBaseMotor-rampPower-nav"><a href="DuploTrainBaseMotor.html#rampPower">rampPower</a></li><li data-type="method" id="DuploTrainBaseMotor-setPower-nav"><a href="DuploTrainBaseMotor.html#setPower">setPower</a></li><li data-type="method" id="DuploTrainBaseMotor-stop-nav"><a href="DuploTrainBaseMotor.html#stop">stop</a></li></ul></li><li id="DuploTrainBaseSpeaker-nav"><a href="DuploTrainBaseSpeaker.html">DuploTrainBaseSpeaker</a><ul class='methods'><li data-type="method" id="DuploTrainBaseSpeaker-playSound-nav"><a href="DuploTrainBaseSpeaker.html#playSound">playSound</a></li><li data-type="method" id="DuploTrainBaseSpeaker-playTone-nav"><a href="DuploTrainBaseSpeaker.html#playTone">playTone</a></li></ul></li><li id="DuploTraniBaseSpeedometer-nav"><a href="DuploTraniBaseSpeedometer.html">DuploTraniBaseSpeedometer</a></li><li id="Hub-nav"><a href="Hub.html">Hub</a><ul class='methods'><li data-type="method" id="Hub-connect-nav"><a href="Hub.html#connect">connect</a></li><li data-type="method" id="Hub-createVirtualPort-nav"><a href="Hub.html#createVirtualPort">createVirtualPort</a></li><li data-type="method" id="Hub-disconnect-nav"><a href="Hub.html#disconnect">disconnect</a></li><li data-type="method" id="Hub-getDeviceAtPort-nav"><a href="Hub.html#getDeviceAtPort">getDeviceAtPort</a></li><li data-type="method" id="Hub-getDevices-nav"><a href="Hub.html#getDevices">getDevices</a></li><li data-type="method" id="Hub-getDevicesByType-nav"><a href="Hub.html#getDevicesByType">getDevicesByType</a></li><li data-type="method" id="Hub-setName-nav"><a href="Hub.html#setName">setName</a></li><li data-type="method" id="Hub-shutdown-nav"><a href="Hub.html#shutdown">shutdown</a></li><li data-type="method" id="Hub-sleep-nav"><a href="Hub.html#sleep">sleep</a></li><li data-type="method" id="Hub-wait-nav"><a href="Hub.html#wait">wait</a></li><li data-type="method" id="Hub-waitForDeviceAtPort-nav"><a href="Hub.html#waitForDeviceAtPort">waitForDeviceAtPort</a></li><li data-type="method" id="Hub-waitForDeviceByType-nav"><a href="Hub.html#waitForDeviceByType">waitForDeviceByType</a></li></ul></li><li id="HubLED-nav"><a href="HubLED.html">HubLED</a><ul class='methods'><li data-type="method" id="HubLED-setColor-nav"><a href="HubLED.html#setColor">setColor</a></li><li data-type="method" id="HubLED-setRGB-nav"><a href="HubLED.html#setRGB">setRGB</a></li></ul></li><li id="Light-nav"><a href="Light.html">Light</a><ul class='methods'><li data-type="method" id="Light-rampBrightness-nav"><a href="Light.html#rampBrightness">rampBrightness</a></li><li data-type="method" id="Light-setBrightness-nav"><a href="Light.html#setBrightness">setBrightness</a></li></ul></li><li id="LPF2Hub-nav"><a href="LPF2Hub.html">LPF2Hub</a><ul class='methods'><li data-type="method" id="LPF2Hub-createVirtualPort-nav"><a href="LPF2Hub.html#createVirtualPort">createVirtualPort</a></li><li data-type="method" id="LPF2Hub-setName-nav"><a href="LPF2Hub.html#setName">setName</a></li><li data-type="method" id="LPF2Hub-shutdown-nav"><a href="LPF2Hub.html#shutdown">shutdown</a></li></ul></li><li id="Mario-nav"><a href="Mario.html">Mario</a><ul class='methods'><li data-type="method" id="Mario-createVirtualPort-nav"><a href="Mario.html#createVirtualPort">createVirtualPort</a></li><li data-type="method" id="Mario-setName-nav"><a href="Mario.html#setName">setName</a></li><li data-type="method" id="Mario-shutdown-nav"><a href="Mario.html#shutdown">shutdown</a></li></ul></li><li id="MarioAccelerometer-nav"><a href="MarioAccelerometer.html">MarioAccelerometer</a></li><li id="MarioBarcodeSensor-nav"><a href="MarioBarcodeSensor.html">MarioBarcodeSensor</a></li><li id="MarioPantsSensor-nav"><a href="MarioPantsSensor.html">MarioPantsSensor</a></li><li id="MediumLinearMotor-nav"><a href="MediumLinearMotor.html">MediumLinearMotor</a><ul class='methods'><li data-type="method" id="MediumLinearMotor-rotateByDegrees-nav"><a href="MediumLinearMotor.html#rotateByDegrees">rotateByDegrees</a></li><li data-type="method" id="MediumLinearMotor-setAccelerationTime-nav"><a href="MediumLinearMotor.html#setAccelerationTime">setAccelerationTime</a></li><li data-type="method" id="MediumLinearMotor-setBrakingStyle-nav"><a href="MediumLinearMotor.html#setBrakingStyle">setBrakingStyle</a></li><li data-type="method" id="MediumLinearMotor-setDecelerationTime-nav"><a href="MediumLinearMotor.html#setDecelerationTime">setDecelerationTime</a></li><li data-type="method" id="MediumLinearMotor-setMaxPower-nav"><a href="MediumLinearMotor.html#setMaxPower">setMaxPower</a></li><li data-type="method" id="MediumLinearMotor-setSpeed-nav"><a href="MediumLinearMotor.html#setSpeed">setSpeed</a></li></ul></li><li id="MotionSensor-nav"><a href="MotionSensor.html">MotionSensor</a></li><li id="MoveHub-nav"><a href="MoveHub.html">MoveHub</a><ul class='methods'><li data-type="method" id="MoveHub-createVirtualPort-nav"><a href="MoveHub.html#createVirtualPort">createVirtualPort</a></li><li data-type="method" id="MoveHub-setName-nav"><a href="MoveHub.html#setName">setName</a></li><li data-type="method" id="MoveHub-shutdown-nav"><a href="MoveHub.html#shutdown">shutdown</a></li></ul></li><li id="MoveHubMediumLinearMotor-nav"><a href="MoveHubMediumLinearMotor.html">MoveHubMediumLinearMotor</a><ul class='methods'><li data-type="method" id="MoveHubMediumLinearMotor-rotateByDegrees-nav"><a href="MoveHubMediumLinearMotor.html#rotateByDegrees">rotateByDegrees</a></li><li data-type="method" id="MoveHubMediumLinearMotor-setAccelerationTime-nav"><a href="MoveHubMediumLinearMotor.html#setAccelerationTime">setAccelerationTime</a></li><li data-type="method" id="MoveHubMediumLinearMotor-setBrakingStyle-nav"><a href="MoveHubMediumLinearMotor.html#setBrakingStyle">setBrakingStyle</a></li><li data-type="method" id="MoveHubMediumLinearMotor-setDecelerationTime-nav"><a href="MoveHubMediumLinearMotor.html#setDecelerationTime">setDecelerationTime</a></li><li data-type="method" id="MoveHubMediumLinearMotor-setMaxPower-nav"><a href="MoveHubMediumLinearMotor.html#setMaxPower">setMaxPower</a></li><li data-type="method" id="MoveHubMediumLinearMotor-setSpeed-nav"><a href="MoveHubMediumLinearMotor.html#setSpeed">setSpeed</a></li></ul></li><li id="MoveHubTiltSensor-nav"><a href="MoveHubTiltSensor.html">MoveHubTiltSensor</a></li><li id="PiezoBuzzer-nav"><a href="PiezoBuzzer.html">PiezoBuzzer</a><ul class='methods'><li data-type="method" id="PiezoBuzzer-playTone-nav"><a href="PiezoBuzzer.html#playTone">playTone</a></li></ul></li><li id="PoweredUP-nav"><a href="PoweredUP.html">PoweredUP</a><ul class='methods'><li data-type="method" id="PoweredUP-getHubByPrimaryMACAddress-nav"><a href="PoweredUP.html#getHubByPrimaryMACAddress">getHubByPrimaryMACAddress</a></li><li data-type="method" id="PoweredUP-getHubByPrimaryMACAddress-nav"><a href="PoweredUP.html#getHubByPrimaryMACAddress">getHubByPrimaryMACAddress</a></li><li data-type="method" id="PoweredUP-getHubByUUID-nav"><a href="PoweredUP.html#getHubByUUID">getHubByUUID</a></li><li data-type="method" id="PoweredUP-getHubByUUID-nav"><a href="PoweredUP.html#getHubByUUID">getHubByUUID</a></li><li data-type="method" id="PoweredUP-getHubs-nav"><a href="PoweredUP.html#getHubs">getHubs</a></li><li data-type="method" id="PoweredUP-getHubs-nav"><a href="PoweredUP.html#getHubs">getHubs</a></li><li data-type="method" id="PoweredUP-getHubsByName-nav"><a href="PoweredUP.html#getHubsByName">getHubsByName</a></li><li data-type="method" id="PoweredUP-getHubsByName-nav"><a href="PoweredUP.html#getHubsByName">getHubsByName</a></li><li data-type="method" id="PoweredUP-getHubsByType-nav"><a href="PoweredUP.html#getHubsByType">getHubsByType</a></li><li data-type="method" id="PoweredUP-getHubsByType-nav"><a href="PoweredUP.html#getHubsByType">getHubsByType</a></li><li data-type="method" id="PoweredUP-scan-nav"><a href="PoweredUP.html#scan">scan</a></li><li data-type="method" id="PoweredUP-scan-nav"><a href="PoweredUP.html#scan">scan</a></li><li data-type="method" id="PoweredUP-stop-nav"><a href="PoweredUP.html#stop">stop</a></li></ul></li><li id="RemoteControl-nav"><a href="RemoteControl.html">RemoteControl</a><ul class='methods'><li data-type="method" id="RemoteControl-createVirtualPort-nav"><a href="RemoteControl.html#createVirtualPort">createVirtualPort</a></li><li data-type="method" id="RemoteControl-setName-nav"><a href="RemoteControl.html#setName">setName</a></li><li data-type="method" id="RemoteControl-shutdown-nav"><a href="RemoteControl.html#shutdown">shutdown</a></li></ul></li><li id="RemoteControlButton-nav"><a href="RemoteControlButton.html">RemoteControlButton</a></li><li id="SimpleMediumLinearMotor-nav"><a href="SimpleMediumLinearMotor.html">SimpleMediumLinearMotor</a></li><li id="TachoMotor-nav"><a href="TachoMotor.html">TachoMotor</a><ul class='methods'><li data-type="method" id="TachoMotor-brake-nav"><a href="TachoMotor.html#brake">brake</a></li><li data-type="method" id="TachoMotor-rampPower-nav"><a href="TachoMotor.html#rampPower">rampPower</a></li><li data-type="method" id="TachoMotor-rotateByDegrees-nav"><a href="TachoMotor.html#rotateByDegrees">rotateByDegrees</a></li><li data-type="method" id="TachoMotor-setAccelerationTime-nav"><a href="TachoMotor.html#setAccelerationTime">setAccelerationTime</a></li><li data-type="method" id="TachoMotor-setBrakingStyle-nav"><a href="TachoMotor.html#setBrakingStyle">setBrakingStyle</a></li><li data-type="method" id="TachoMotor-setDecelerationTime-nav"><a href="TachoMotor.html#setDecelerationTime">setDecelerationTime</a></li><li data-type="method" id="TachoMotor-setMaxPower-nav"><a href="TachoMotor.html#setMaxPower">setMaxPower</a></li><li data-type="method" id="TachoMotor-setPower-nav"><a href="TachoMotor.html#setPower">setPower</a></li><li data-type="method" id="TachoMotor-setSpeed-nav"><a href="TachoMotor.html#setSpeed">setSpeed</a></li><li data-type="method" id="TachoMotor-stop-nav"><a href="TachoMotor.html#stop">stop</a></li></ul></li><li id="Technic3x3ColorLightMatrix-nav"><a href="Technic3x3ColorLightMatrix.html">Technic3x3ColorLightMatrix</a><ul class='methods'><li data-type="method" id="Technic3x3ColorLightMatrix-setMatrix-nav"><a href="Technic3x3ColorLightMatrix.html#setMatrix">setMatrix</a></li></ul></li><li id="TechnicColorSensor-nav"><a href="TechnicColorSensor.html">TechnicColorSensor</a><ul class='methods'><li data-type="method" id="TechnicColorSensor-setBrightness-nav"><a href="TechnicColorSensor.html#setBrightness">setBrightness</a></li></ul></li><li id="TechnicDistanceSensor-nav"><a href="TechnicDistanceSensor.html">TechnicDistanceSensor</a><ul class='methods'><li data-type="method" id="TechnicDistanceSensor-setBrightness-nav"><a href="TechnicDistanceSensor.html#setBrightness">setBrightness</a></li></ul></li><li id="TechnicForceSensor-nav"><a href="TechnicForceSensor.html">TechnicForceSensor</a></li><li id="TechnicLargeAngularMotor-nav"><a href="TechnicLargeAngularMotor.html">TechnicLargeAngularMotor</a><ul class='methods'><li data-type="method" id="TechnicLargeAngularMotor-gotoAngle-nav"><a href="TechnicLargeAngularMotor.html#gotoAngle">gotoAngle</a></li><li data-type="method" id="TechnicLargeAngularMotor-gotoRealZero-nav"><a href="TechnicLargeAngularMotor.html#gotoRealZero">gotoRealZero</a></li><li data-type="method" id="TechnicLargeAngularMotor-resetZero-nav"><a href="TechnicLargeAngularMotor.html#resetZero">resetZero</a></li><li data-type="method" id="TechnicLargeAngularMotor-rotateByDegrees-nav"><a href="TechnicLargeAngularMotor.html#rotateByDegrees">rotateByDegrees</a></li><li data-type="method" id="TechnicLargeAngularMotor-setAccelerationTime-nav"><a href="TechnicLargeAngularMotor.html#setAccelerationTime">setAccelerationTime</a></li><li data-type="method" id="TechnicLargeAngularMotor-setBrakingStyle-nav"><a href="TechnicLargeAngularMotor.html#setBrakingStyle">setBrakingStyle</a></li><li data-type="method" id="TechnicLargeAngularMotor-setDecelerationTime-nav"><a href="TechnicLargeAngularMotor.html#setDecelerationTime">setDecelerationTime</a></li><li data-type="method" id="TechnicLargeAngularMotor-setMaxPower-nav"><a href="TechnicLargeAngularMotor.html#setMaxPower">setMaxPower</a></li><li data-type="method" id="TechnicLargeAngularMotor-setSpeed-nav"><a href="TechnicLargeAngularMotor.html#setSpeed">setSpeed</a></li></ul></li><li id="TechnicLargeLinearMotor-nav"><a href="TechnicLargeLinearMotor.html">TechnicLargeLinearMotor</a><ul class='methods'><li data-type="method" id="TechnicLargeLinearMotor-gotoAngle-nav"><a href="TechnicLargeLinearMotor.html#gotoAngle">gotoAngle</a></li><li data-type="method" id="TechnicLargeLinearMotor-gotoRealZero-nav"><a href="TechnicLargeLinearMotor.html#gotoRealZero">gotoRealZero</a></li><li data-type="method" id="TechnicLargeLinearMotor-resetZero-nav"><a href="TechnicLargeLinearMotor.html#resetZero">resetZero</a></li><li data-type="method" id="TechnicLargeLinearMotor-rotateByDegrees-nav"><a href="TechnicLargeLinearMotor.html#rotateByDegrees">rotateByDegrees</a></li><li data-type="method" id="TechnicLargeLinearMotor-setAccelerationTime-nav"><a href="TechnicLargeLinearMotor.html#setAccelerationTime">setAccelerationTime</a></li><li data-type="method" id="TechnicLargeLinearMotor-setBrakingStyle-nav"><a href="TechnicLargeLinearMotor.html#setBrakingStyle">setBrakingStyle</a></li><li data-type="method" id="TechnicLargeLinearMotor-setDecelerationTime-nav"><a href="TechnicLargeLinearMotor.html#setDecelerationTime">setDecelerationTime</a></li><li data-type="method" id="TechnicLargeLinearMotor-setMaxPower-nav"><a href="TechnicLargeLinearMotor.html#setMaxPower">setMaxPower</a></li><li data-type="method" id="TechnicLargeLinearMotor-setSpeed-nav"><a href="TechnicLargeLinearMotor.html#setSpeed">setSpeed</a></li></ul></li><li id="TechnicMediumAngularMotor-nav"><a href="TechnicMediumAngularMotor.html">TechnicMediumAngularMotor</a><ul class='methods'><li data-type="method" id="TechnicMediumAngularMotor-gotoAngle-nav"><a href="TechnicMediumAngularMotor.html#gotoAngle">gotoAngle</a></li><li data-type="method" id="TechnicMediumAngularMotor-gotoRealZero-nav"><a href="TechnicMediumAngularMotor.html#gotoRealZero">gotoRealZero</a></li><li data-type="method" id="TechnicMediumAngularMotor-resetZero-nav"><a href="TechnicMediumAngularMotor.html#resetZero">resetZero</a></li><li data-type="method" id="TechnicMediumAngularMotor-rotateByDegrees-nav"><a href="TechnicMediumAngularMotor.html#rotateByDegrees">rotateByDegrees</a></li><li data-type="method" id="TechnicMediumAngularMotor-setAccelerationTime-nav"><a href="TechnicMediumAngularMotor.html#setAccelerationTime">setAccelerationTime</a></li><li data-type="method" id="TechnicMediumAngularMotor-setBrakingStyle-nav"><a href="TechnicMediumAngularMotor.html#setBrakingStyle">setBrakingStyle</a></li><li data-type="method" id="TechnicMediumAngularMotor-setDecelerationTime-nav"><a href="TechnicMediumAngularMotor.html#setDecelerationTime">setDecelerationTime</a></li><li data-type="method" id="TechnicMediumAngularMotor-setMaxPower-nav"><a href="TechnicMediumAngularMotor.html#setMaxPower">setMaxPower</a></li><li data-type="method" id="TechnicMediumAngularMotor-setSpeed-nav"><a href="TechnicMediumAngularMotor.html#setSpeed">setSpeed</a></li></ul></li><li id="TechnicMediumHub-nav"><a href="TechnicMediumHub.html">TechnicMediumHub</a><ul class='methods'><li data-type="method" id="TechnicMediumHub-createVirtualPort-nav"><a href="TechnicMediumHub.html#createVirtualPort">createVirtualPort</a></li><li data-type="method" id="TechnicMediumHub-setName-nav"><a href="TechnicMediumHub.html#setName">setName</a></li><li data-type="method" id="TechnicMediumHub-shutdown-nav"><a href="TechnicMediumHub.html#shutdown">shutdown</a></li></ul></li><li id="TechnicMediumHubAccelerometerSensor-nav"><a href="TechnicMediumHubAccelerometerSensor.html">TechnicMediumHubAccelerometerSensor</a></li><li id="TechnicMediumHubGyroSensor-nav"><a href="TechnicMediumHubGyroSensor.html">TechnicMediumHubGyroSensor</a></li><li id="TechnicMediumHubTiltSensor-nav"><a href="TechnicMediumHubTiltSensor.html">TechnicMediumHubTiltSensor</a><ul class='methods'><li data-type="method" id="TechnicMediumHubTiltSensor-setImpactCount-nav"><a href="TechnicMediumHubTiltSensor.html#setImpactCount">setImpactCount</a></li><li data-type="method" id="TechnicMediumHubTiltSensor-setImpactHoldoff-nav"><a href="TechnicMediumHubTiltSensor.html#setImpactHoldoff">setImpactHoldoff</a></li><li data-type="method" id="TechnicMediumHubTiltSensor-setImpactThreshold-nav"><a href="TechnicMediumHubTiltSensor.html#setImpactThreshold">setImpactThreshold</a></li></ul></li><li id="TechnicSmallAngularMotor-nav"><a href="TechnicSmallAngularMotor.html">TechnicSmallAngularMotor</a><ul class='methods'><li data-type="method" id="TechnicSmallAngularMotor-gotoAngle-nav"><a href="TechnicSmallAngularMotor.html#gotoAngle">gotoAngle</a></li><li data-type="method" id="TechnicSmallAngularMotor-gotoRealZero-nav"><a href="TechnicSmallAngularMotor.html#gotoRealZero">gotoRealZero</a></li><li data-type="method" id="TechnicSmallAngularMotor-resetZero-nav"><a href="TechnicSmallAngularMotor.html#resetZero">resetZero</a></li><li data-type="method" id="TechnicSmallAngularMotor-rotateByDegrees-nav"><a href="TechnicSmallAngularMotor.html#rotateByDegrees">rotateByDegrees</a></li><li data-type="method" id="TechnicSmallAngularMotor-setAccelerationTime-nav"><a href="TechnicSmallAngularMotor.html#setAccelerationTime">setAccelerationTime</a></li><li data-type="method" id="TechnicSmallAngularMotor-setBrakingStyle-nav"><a href="TechnicSmallAngularMotor.html#setBrakingStyle">setBrakingStyle</a></li><li data-type="method" id="TechnicSmallAngularMotor-setDecelerationTime-nav"><a href="TechnicSmallAngularMotor.html#setDecelerationTime">setDecelerationTime</a></li><li data-type="method" id="TechnicSmallAngularMotor-setMaxPower-nav"><a href="TechnicSmallAngularMotor.html#setMaxPower">setMaxPower</a></li><li data-type="method" id="TechnicSmallAngularMotor-setSpeed-nav"><a href="TechnicSmallAngularMotor.html#setSpeed">setSpeed</a></li></ul></li><li id="TechnicXLargeLinearMotor-nav"><a href="TechnicXLargeLinearMotor.html">TechnicXLargeLinearMotor</a><ul class='methods'><li data-type="method" id="TechnicXLargeLinearMotor-gotoAngle-nav"><a href="TechnicXLargeLinearMotor.html#gotoAngle">gotoAngle</a></li><li data-type="method" id="TechnicXLargeLinearMotor-gotoRealZero-nav"><a href="TechnicXLargeLinearMotor.html#gotoRealZero">gotoRealZero</a></li><li data-type="method" id="TechnicXLargeLinearMotor-resetZero-nav"><a href="TechnicXLargeLinearMotor.html#resetZero">resetZero</a></li><li data-type="method" id="TechnicXLargeLinearMotor-rotateByDegrees-nav"><a href="TechnicXLargeLinearMotor.html#rotateByDegrees">rotateByDegrees</a></li><li data-type="method" id="TechnicXLargeLinearMotor-setAccelerationTime-nav"><a href="TechnicXLargeLinearMotor.html#setAccelerationTime">setAccelerationTime</a></li><li data-type="method" id="TechnicXLargeLinearMotor-setBrakingStyle-nav"><a href="TechnicXLargeLinearMotor.html#setBrakingStyle">setBrakingStyle</a></li><li data-type="method" id="TechnicXLargeLinearMotor-setDecelerationTime-nav"><a href="TechnicXLargeLinearMotor.html#setDecelerationTime">setDecelerationTime</a></li><li data-type="method" id="TechnicXLargeLinearMotor-setMaxPower-nav"><a href="TechnicXLargeLinearMotor.html#setMaxPower">setMaxPower</a></li><li data-type="method" id="TechnicXLargeLinearMotor-setSpeed-nav"><a href="TechnicXLargeLinearMotor.html#setSpeed">setSpeed</a></li></ul></li><li id="TiltSensor-nav"><a href="TiltSensor.html">TiltSensor</a></li><li id="TrainMotor-nav"><a href="TrainMotor.html">TrainMotor</a><ul class='methods'><li data-type="method" id="TrainMotor-brake-nav"><a href="TrainMotor.html#brake">brake</a></li><li data-type="method" id="TrainMotor-rampPower-nav"><a href="TrainMotor.html#rampPower">rampPower</a></li><li data-type="method" id="TrainMotor-setPower-nav"><a href="TrainMotor.html#setPower">setPower</a></li><li data-type="method" id="TrainMotor-stop-nav"><a href="TrainMotor.html#stop">stop</a></li></ul></li><li id="VoltageSensor-nav"><a href="VoltageSensor.html">VoltageSensor</a></li><li id="WeDo2SmartHub-nav"><a href="WeDo2SmartHub.html">WeDo2SmartHub</a><ul class='methods'><li data-type="method" id="WeDo2SmartHub-setName-nav"><a href="WeDo2SmartHub.html#setName">setName</a></li><li data-type="method" id="WeDo2SmartHub-shutdown-nav"><a href="WeDo2SmartHub.html#shutdown">shutdown</a></li></ul></li></ul><h3 id="global-nav"><a href="global.html">Global</a></h3>
77
+ </nav>
87
78
 
88
- <article>
89
- <div class="container-overview">
90
-
91
-
92
- <hr>
93
- <dt>
94
- <h4 class="name" id="LPF2Hub"><span class="type-signature"></span>new LPF2Hub()</h4>
79
+ <div id="main">
95
80
 
81
+ <h1 class="page-title">
82
+ LPF2Hub
83
+ </h1>
96
84
 
97
- </dt>
98
- <dd>
99
85
 
100
86
 
101
87
 
88
+ <section>
89
+ <header>
102
90
 
91
+ <h2>
92
+
93
+ LPF2Hub
94
+
95
+ </h2>
103
96
 
97
+
104
98
 
99
+ </header>
105
100
 
106
-
107
-
101
+ <article>
102
+ <div class="container-overview">
103
+
104
+
108
105
 
109
-
110
- <dl class="details">
111
-
112
106
 
113
-
107
+
114
108
 
115
-
109
+ <span class='name-container'>
110
+ <a class="link-icon" href="#LPF2Hub">
111
+ <svg height="20" width="20" style="fill: black;">
112
+ <use xlink:href="#linkIcon"></use>
113
+ </svg>
114
+ </a>
115
+ <h4 class="name" id="LPF2Hub">
116
+ <span class="type-signature"></span>new LPF2Hub<span class="signature">()</span><span class="type-signature"></span>
117
+ </h4>
118
+ </span>
116
119
 
117
-
120
+
118
121
 
119
-
120
122
 
121
-
122
123
 
123
-
124
124
 
125
-
126
125
 
127
-
128
126
 
129
-
130
127
 
131
-
132
128
 
133
-
134
129
 
135
-
136
130
 
137
131
 
138
132
 
139
-
140
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
141
- <dd class="tag-source">
142
- <ul class="dummy">
143
- <li>
144
- <a href="hubs_lpf2hub.js.html">hubs/lpf2hub.js</a>,
145
- <a href="hubs_lpf2hub.js.html#sunlight-1-line-29">line 29</a>
146
- </li>
147
- </ul>
148
- </dd>
149
-
133
+ <dl class="details">
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+
150
152
 
151
-
153
+
152
154
 
153
-
155
+
154
156
 
155
-
157
+
158
+
159
+
160
+ <dt class="tag-source">Source:</dt>
161
+ <dd class="tag-source">
162
+ <ul class="dummy">
163
+ <li>
164
+ <a href="hubs_lpf2hub.js.html">hubs/lpf2hub.js</a>, <a href="hubs_lpf2hub.js.html#line29">line 29</a>
165
+ </li>
166
+ </ul>
167
+ </dd>
168
+
169
+
170
+
171
+
172
+
173
+
174
+
156
175
  </dl>
157
176
 
158
177
 
159
-
160
178
 
161
-
162
179
 
163
-
164
180
 
165
-
166
181
 
167
-
168
182
 
169
-
170
183
 
171
-
172
- </dd>
173
184
 
174
-
185
+
186
+
187
+
188
+
189
+
190
+
175
191
  </div>
176
192
 
177
193
 
178
- <h3 class="subsection-title">Extends</h3>
194
+ <h3 class="subsection-title">Extends</h3>
179
195
 
180
-
196
+
181
197
 
182
198
 
183
- <ul>
184
- <li><a href="BaseHub.html">BaseHub</a></li>
185
- </ul>
199
+ <ul>
200
+ <li><a href="BaseHub.html">BaseHub</a></li>
201
+ </ul>
186
202
 
187
203
 
188
204
 
@@ -191,1941 +207,1805 @@
191
207
 
192
208
 
193
209
 
194
-
210
+
195
211
 
196
212
 
197
213
 
198
214
 
199
215
  <h3 class="subsection-title">Members</h3>
200
216
 
201
- <dl>
217
+
202
218
 
203
- <hr>
204
- <dt class="name" id="batteryLevel">
205
- <h4 id="batteryLevel"><span class="type-signature">&lt;readonly> </span>batteryLevel<span class="type-signature"></span></h4>
206
219
 
207
-
208
- </dt>
209
- <dd>
210
-
220
+ <h4 class="name" id="batteryLevel">
221
+ <span class="type-signature">(readonly) </span>batteryLevel<span class="type-signature"></span>
222
+ </h4>
223
+
224
+
225
+
211
226
 
212
-
213
227
 
214
-
215
- <dl class="details">
216
-
217
228
 
218
- <h5 class="subsection-title">Properties:</h5>
219
229
 
220
- <dl>
230
+ <h5 class="subsection-title">Properties:</h5>
221
231
 
222
- <table class="props table table-striped">
223
- <thead>
232
+
233
+
234
+ <table class="props">
235
+ <thead>
224
236
  <tr>
225
-
237
+
226
238
  <th>Name</th>
227
-
239
+
228
240
 
229
- <th>Type</th>
241
+ <th>Type</th>
230
242
 
231
-
243
+
232
244
 
233
-
245
+
234
246
 
235
- <th class="last">Description</th>
247
+ <th class="last">Description</th>
236
248
  </tr>
237
- </thead>
249
+ </thead>
238
250
 
239
- <tbody>
251
+ <tbody>
240
252
 
241
253
 
242
- <tr>
243
-
244
- <td class="name"><code>batteryLevel</code></td>
245
-
254
+ <tr>
255
+
256
+ <td class="name"><code>batteryLevel</code></td>
257
+
246
258
 
247
- <td class="type">
248
-
249
-
250
- <span class="param-type">number</span>
259
+ <td class="type">
260
+
261
+
262
+ <span class="param-type">
263
+ number
264
+ </span>
251
265
 
266
+
252
267
 
253
268
 
254
-
255
- </td>
269
+
270
+ </td>
256
271
 
257
-
272
+
258
273
 
259
-
274
+
260
275
 
261
- <td class="description last"><p>Battery level of the hub (Percentage between 0-100)</p></td>
262
- </tr>
276
+ <td class="description last">
277
+ <p>Battery level of the hub (Percentage between 0-100)</p>
278
+ </td>
279
+ </tr>
263
280
 
264
-
265
- </tbody>
281
+
282
+ </tbody>
266
283
  </table>
267
- </dl>
268
284
 
269
-
270
285
 
271
-
272
286
 
273
-
274
287
 
275
-
276
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
277
- <dd class="inherited-from">
278
- <ul class="dummy">
279
- <li>
280
- <a href="BaseHub.html#batteryLevel">BaseHub#batteryLevel</a>
281
- </li>
282
- </ul>
283
- </dd>
284
-
288
+ <dl class="details">
285
289
 
286
-
290
+
287
291
 
288
-
292
+
289
293
 
290
-
294
+
295
+ <dt class="inherited-from">Inherited From:</dt>
296
+ <dd class="inherited-from">
297
+ <ul class="dummy">
298
+ <li>
299
+ <a href="BaseHub.html#batteryLevel">BaseHub#batteryLevel</a>
300
+ </li>
301
+ </ul>
302
+ </dd>
303
+
291
304
 
292
-
305
+
293
306
 
294
-
307
+
295
308
 
296
-
309
+
297
310
 
298
-
311
+
299
312
 
300
-
313
+
301
314
 
302
-
315
+
303
316
 
317
+
304
318
 
319
+
305
320
 
306
-
307
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
308
- <dd class="tag-source">
309
- <ul class="dummy">
310
- <li>
311
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
312
- <a href="hubs_basehub.js.html#sunlight-1-line-141">line 141</a>
313
- </li>
314
- </ul>
315
- </dd>
316
-
321
+
317
322
 
318
-
323
+
324
+ <dt class="tag-source">Source:</dt>
325
+ <dd class="tag-source">
326
+ <ul class="dummy">
327
+ <li>
328
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line143">line 143</a>
329
+ </li>
330
+ </ul>
331
+ </dd>
332
+
319
333
 
320
-
334
+
321
335
 
322
-
336
+
337
+
338
+
323
339
  </dl>
324
340
 
325
341
 
326
-
327
- </dd>
328
342
 
343
+
344
+
345
+
346
+
329
347
 
330
348
 
331
- <hr>
332
- <dt class="name" id="firmwareVersion">
333
- <h4 id="firmwareVersion"><span class="type-signature">&lt;readonly> </span>firmwareVersion<span class="type-signature"></span></h4>
334
349
 
335
-
336
- </dt>
337
- <dd>
338
-
350
+ <h4 class="name" id="firmwareVersion">
351
+ <span class="type-signature">(readonly) </span>firmwareVersion<span class="type-signature"></span>
352
+ </h4>
353
+
354
+
339
355
 
340
-
341
356
 
342
-
343
- <dl class="details">
344
-
345
357
 
346
- <h5 class="subsection-title">Properties:</h5>
347
358
 
348
- <dl>
349
359
 
350
- <table class="props table table-striped">
351
- <thead>
360
+ <h5 class="subsection-title">Properties:</h5>
361
+
362
+
363
+
364
+ <table class="props">
365
+ <thead>
352
366
  <tr>
353
-
367
+
354
368
  <th>Name</th>
355
-
369
+
356
370
 
357
- <th>Type</th>
371
+ <th>Type</th>
358
372
 
359
-
373
+
360
374
 
361
-
375
+
362
376
 
363
- <th class="last">Description</th>
377
+ <th class="last">Description</th>
364
378
  </tr>
365
- </thead>
379
+ </thead>
366
380
 
367
- <tbody>
381
+ <tbody>
368
382
 
369
383
 
370
- <tr>
371
-
372
- <td class="name"><code>firmwareVersion</code></td>
373
-
384
+ <tr>
385
+
386
+ <td class="name"><code>firmwareVersion</code></td>
387
+
374
388
 
375
- <td class="type">
376
-
377
-
378
- <span class="param-type">string</span>
389
+ <td class="type">
390
+
391
+
392
+ <span class="param-type">
393
+ string
394
+ </span>
379
395
 
396
+
380
397
 
381
398
 
382
-
383
- </td>
399
+
400
+ </td>
384
401
 
385
-
402
+
386
403
 
387
-
404
+
388
405
 
389
- <td class="description last"><p>Firmware version of the hub</p></td>
390
- </tr>
406
+ <td class="description last">
407
+ <p>Firmware version of the hub</p>
408
+ </td>
409
+ </tr>
391
410
 
392
-
393
- </tbody>
411
+
412
+ </tbody>
394
413
  </table>
395
- </dl>
396
414
 
397
-
398
415
 
399
-
400
416
 
401
-
402
417
 
403
-
404
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
405
- <dd class="inherited-from">
406
- <ul class="dummy">
407
- <li>
408
- <a href="BaseHub.html#firmwareVersion">BaseHub#firmwareVersion</a>
409
- </li>
410
- </ul>
411
- </dd>
412
-
418
+ <dl class="details">
413
419
 
414
-
420
+
415
421
 
416
-
422
+
417
423
 
418
-
424
+
425
+ <dt class="inherited-from">Inherited From:</dt>
426
+ <dd class="inherited-from">
427
+ <ul class="dummy">
428
+ <li>
429
+ <a href="BaseHub.html#firmwareVersion">BaseHub#firmwareVersion</a>
430
+ </li>
431
+ </ul>
432
+ </dd>
433
+
419
434
 
420
-
435
+
421
436
 
422
-
437
+
423
438
 
424
-
439
+
425
440
 
426
-
441
+
427
442
 
428
-
443
+
429
444
 
430
-
445
+
431
446
 
447
+
432
448
 
449
+
433
450
 
434
-
435
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
436
- <dd class="tag-source">
437
- <ul class="dummy">
438
- <li>
439
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
440
- <a href="hubs_basehub.js.html#sunlight-1-line-113">line 113</a>
441
- </li>
442
- </ul>
443
- </dd>
444
-
451
+
445
452
 
446
-
453
+
454
+ <dt class="tag-source">Source:</dt>
455
+ <dd class="tag-source">
456
+ <ul class="dummy">
457
+ <li>
458
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line115">line 115</a>
459
+ </li>
460
+ </ul>
461
+ </dd>
462
+
463
+
464
+
447
465
 
448
-
466
+
449
467
 
450
-
468
+
451
469
  </dl>
452
470
 
453
471
 
454
-
455
- </dd>
456
472
 
473
+
474
+
475
+
476
+
457
477
 
458
478
 
459
- <hr>
460
- <dt class="name" id="hardwareVersion">
461
- <h4 id="hardwareVersion"><span class="type-signature">&lt;readonly> </span>hardwareVersion<span class="type-signature"></span></h4>
462
479
 
463
-
464
- </dt>
465
- <dd>
466
-
480
+ <h4 class="name" id="hardwareVersion">
481
+ <span class="type-signature">(readonly) </span>hardwareVersion<span class="type-signature"></span>
482
+ </h4>
483
+
484
+
467
485
 
468
-
469
486
 
470
-
471
- <dl class="details">
472
-
473
487
 
474
- <h5 class="subsection-title">Properties:</h5>
475
488
 
476
- <dl>
477
489
 
478
- <table class="props table table-striped">
479
- <thead>
490
+ <h5 class="subsection-title">Properties:</h5>
491
+
492
+
493
+
494
+ <table class="props">
495
+ <thead>
480
496
  <tr>
481
-
497
+
482
498
  <th>Name</th>
483
-
499
+
484
500
 
485
- <th>Type</th>
501
+ <th>Type</th>
486
502
 
487
-
503
+
488
504
 
489
-
505
+
490
506
 
491
- <th class="last">Description</th>
507
+ <th class="last">Description</th>
492
508
  </tr>
493
- </thead>
509
+ </thead>
494
510
 
495
- <tbody>
511
+ <tbody>
496
512
 
497
513
 
498
- <tr>
499
-
500
- <td class="name"><code>hardwareVersion</code></td>
501
-
514
+ <tr>
515
+
516
+ <td class="name"><code>hardwareVersion</code></td>
517
+
502
518
 
503
- <td class="type">
504
-
505
-
506
- <span class="param-type">string</span>
519
+ <td class="type">
520
+
521
+
522
+ <span class="param-type">
523
+ string
524
+ </span>
507
525
 
526
+
508
527
 
509
528
 
510
-
511
- </td>
529
+
530
+ </td>
512
531
 
513
-
532
+
514
533
 
515
-
534
+
516
535
 
517
- <td class="description last"><p>Hardware version of the hub</p></td>
518
- </tr>
536
+ <td class="description last">
537
+ <p>Hardware version of the hub</p>
538
+ </td>
539
+ </tr>
519
540
 
520
-
521
- </tbody>
541
+
542
+ </tbody>
522
543
  </table>
523
- </dl>
524
544
 
525
-
526
545
 
527
-
528
546
 
529
-
530
547
 
531
-
532
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
533
- <dd class="inherited-from">
534
- <ul class="dummy">
535
- <li>
536
- <a href="BaseHub.html#hardwareVersion">BaseHub#hardwareVersion</a>
537
- </li>
538
- </ul>
539
- </dd>
540
-
548
+ <dl class="details">
549
+
550
+
541
551
 
542
-
552
+
543
553
 
544
-
554
+
555
+ <dt class="inherited-from">Inherited From:</dt>
556
+ <dd class="inherited-from">
557
+ <ul class="dummy">
558
+ <li>
559
+ <a href="BaseHub.html#hardwareVersion">BaseHub#hardwareVersion</a>
560
+ </li>
561
+ </ul>
562
+ </dd>
563
+
545
564
 
546
-
565
+
547
566
 
548
-
567
+
549
568
 
550
-
569
+
551
570
 
552
-
571
+
553
572
 
554
-
573
+
555
574
 
556
-
575
+
557
576
 
558
-
577
+
559
578
 
579
+
560
580
 
581
+
561
582
 
562
-
563
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
564
- <dd class="tag-source">
565
- <ul class="dummy">
566
- <li>
567
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
568
- <a href="hubs_basehub.js.html#sunlight-1-line-120">line 120</a>
569
- </li>
570
- </ul>
571
- </dd>
572
-
583
+
584
+ <dt class="tag-source">Source:</dt>
585
+ <dd class="tag-source">
586
+ <ul class="dummy">
587
+ <li>
588
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line122">line 122</a>
589
+ </li>
590
+ </ul>
591
+ </dd>
592
+
573
593
 
574
-
594
+
575
595
 
576
-
596
+
577
597
 
578
-
598
+
579
599
  </dl>
580
600
 
581
601
 
582
-
583
- </dd>
584
602
 
603
+
604
+
605
+
606
+
585
607
 
586
608
 
587
- <hr>
588
- <dt class="name" id="name">
589
- <h4 id="name"><span class="type-signature">&lt;readonly> </span>name<span class="type-signature"></span></h4>
590
609
 
591
-
592
- </dt>
593
- <dd>
594
-
610
+ <h4 class="name" id="name">
611
+ <span class="type-signature">(readonly) </span>name<span class="type-signature"></span>
612
+ </h4>
613
+
614
+
615
+
616
+
595
617
 
596
-
597
618
 
598
-
599
- <dl class="details">
600
-
601
619
 
602
- <h5 class="subsection-title">Properties:</h5>
620
+ <h5 class="subsection-title">Properties:</h5>
603
621
 
604
- <dl>
622
+
605
623
 
606
- <table class="props table table-striped">
607
- <thead>
624
+ <table class="props">
625
+ <thead>
608
626
  <tr>
609
-
627
+
610
628
  <th>Name</th>
611
-
629
+
612
630
 
613
- <th>Type</th>
631
+ <th>Type</th>
614
632
 
615
-
633
+
616
634
 
617
-
635
+
618
636
 
619
- <th class="last">Description</th>
637
+ <th class="last">Description</th>
620
638
  </tr>
621
- </thead>
639
+ </thead>
622
640
 
623
- <tbody>
641
+ <tbody>
624
642
 
625
643
 
626
- <tr>
627
-
628
- <td class="name"><code>name</code></td>
629
-
644
+ <tr>
645
+
646
+ <td class="name"><code>name</code></td>
647
+
630
648
 
631
- <td class="type">
632
-
633
-
634
- <span class="param-type">string</span>
649
+ <td class="type">
650
+
651
+
652
+ <span class="param-type">
653
+ string
654
+ </span>
635
655
 
656
+
636
657
 
637
658
 
638
-
639
- </td>
659
+
660
+ </td>
640
661
 
641
-
662
+
642
663
 
643
-
664
+
644
665
 
645
- <td class="description last"><p>Name of the hub</p></td>
646
- </tr>
666
+ <td class="description last">
667
+ <p>Name of the hub</p>
668
+ </td>
669
+ </tr>
647
670
 
648
-
649
- </tbody>
671
+
672
+ </tbody>
650
673
  </table>
651
- </dl>
652
674
 
653
-
654
675
 
655
-
656
676
 
657
-
658
677
 
659
-
660
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
661
- <dd class="inherited-from">
662
- <ul class="dummy">
663
- <li>
664
- <a href="BaseHub.html#name">BaseHub#name</a>
665
- </li>
666
- </ul>
667
- </dd>
668
-
678
+ <dl class="details">
669
679
 
670
-
680
+
671
681
 
672
-
682
+
673
683
 
674
-
684
+
685
+ <dt class="inherited-from">Inherited From:</dt>
686
+ <dd class="inherited-from">
687
+ <ul class="dummy">
688
+ <li>
689
+ <a href="BaseHub.html#name">BaseHub#name</a>
690
+ </li>
691
+ </ul>
692
+ </dd>
693
+
675
694
 
676
-
695
+
696
+
697
+
677
698
 
678
-
699
+
679
700
 
680
-
701
+
681
702
 
682
-
703
+
683
704
 
684
-
705
+
685
706
 
686
-
707
+
687
708
 
709
+
688
710
 
711
+
689
712
 
690
-
691
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
692
- <dd class="tag-source">
693
- <ul class="dummy">
694
- <li>
695
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
696
- <a href="hubs_basehub.js.html#sunlight-1-line-92">line 92</a>
697
- </li>
698
- </ul>
699
- </dd>
700
-
713
+
714
+ <dt class="tag-source">Source:</dt>
715
+ <dd class="tag-source">
716
+ <ul class="dummy">
717
+ <li>
718
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line94">line 94</a>
719
+ </li>
720
+ </ul>
721
+ </dd>
722
+
701
723
 
702
-
724
+
703
725
 
704
-
726
+
705
727
 
706
-
728
+
707
729
  </dl>
708
730
 
709
731
 
710
-
711
- </dd>
712
732
 
733
+
734
+
735
+
736
+
713
737
 
714
738
 
715
- <hr>
716
- <dt class="name" id="ports">
717
- <h4 id="ports"><span class="type-signature">&lt;readonly> </span>ports<span class="type-signature"></span></h4>
718
739
 
719
-
720
- </dt>
721
- <dd>
722
-
740
+ <h4 class="name" id="ports">
741
+ <span class="type-signature">(readonly) </span>ports<span class="type-signature"></span>
742
+ </h4>
743
+
744
+
745
+
723
746
 
724
-
725
747
 
726
-
727
- <dl class="details">
728
-
729
748
 
730
- <h5 class="subsection-title">Properties:</h5>
731
749
 
732
- <dl>
750
+ <h5 class="subsection-title">Properties:</h5>
733
751
 
734
- <table class="props table table-striped">
735
- <thead>
752
+
753
+
754
+ <table class="props">
755
+ <thead>
736
756
  <tr>
737
-
757
+
738
758
  <th>Name</th>
739
-
759
+
740
760
 
741
- <th>Type</th>
761
+ <th>Type</th>
742
762
 
743
-
763
+
744
764
 
745
-
765
+
746
766
 
747
- <th class="last">Description</th>
767
+ <th class="last">Description</th>
748
768
  </tr>
749
- </thead>
769
+ </thead>
750
770
 
751
- <tbody>
771
+ <tbody>
752
772
 
753
773
 
754
- <tr>
755
-
756
- <td class="name"><code>ports</code></td>
757
-
774
+ <tr>
775
+
776
+ <td class="name"><code>ports</code></td>
777
+
758
778
 
759
- <td class="type">
760
-
761
-
762
- <span class="param-type">Array.&lt;string></span>
779
+ <td class="type">
780
+
781
+
782
+ <span class="param-type">
783
+ Array.&lt;string>
784
+ </span>
763
785
 
786
+
764
787
 
765
788
 
766
-
767
- </td>
789
+
790
+ </td>
768
791
 
769
-
792
+
770
793
 
771
-
794
+
772
795
 
773
- <td class="description last"><p>Array of port names</p></td>
774
- </tr>
796
+ <td class="description last">
797
+ <p>Array of port names</p>
798
+ </td>
799
+ </tr>
775
800
 
776
-
777
- </tbody>
801
+
802
+ </tbody>
778
803
  </table>
779
- </dl>
780
804
 
781
-
782
805
 
783
-
784
806
 
785
-
786
807
 
787
-
788
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
789
- <dd class="inherited-from">
790
- <ul class="dummy">
791
- <li>
792
- <a href="BaseHub.html#ports">BaseHub#ports</a>
793
- </li>
794
- </ul>
795
- </dd>
796
-
808
+ <dl class="details">
797
809
 
798
-
810
+
799
811
 
800
-
812
+
801
813
 
802
-
814
+
815
+ <dt class="inherited-from">Inherited From:</dt>
816
+ <dd class="inherited-from">
817
+ <ul class="dummy">
818
+ <li>
819
+ <a href="BaseHub.html#ports">BaseHub#ports</a>
820
+ </li>
821
+ </ul>
822
+ </dd>
823
+
803
824
 
804
-
825
+
826
+
827
+
805
828
 
806
-
829
+
807
830
 
808
-
831
+
809
832
 
810
-
833
+
811
834
 
812
-
835
+
813
836
 
814
-
837
+
815
838
 
839
+
816
840
 
841
+
817
842
 
818
-
819
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
820
- <dd class="tag-source">
821
- <ul class="dummy">
822
- <li>
823
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
824
- <a href="hubs_basehub.js.html#sunlight-1-line-106">line 106</a>
825
- </li>
826
- </ul>
827
- </dd>
828
-
843
+
844
+ <dt class="tag-source">Source:</dt>
845
+ <dd class="tag-source">
846
+ <ul class="dummy">
847
+ <li>
848
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line108">line 108</a>
849
+ </li>
850
+ </ul>
851
+ </dd>
852
+
829
853
 
830
-
854
+
831
855
 
832
-
856
+
833
857
 
834
-
858
+
835
859
  </dl>
836
860
 
837
861
 
838
-
839
- </dd>
840
862
 
863
+
864
+
865
+
866
+
841
867
 
842
868
 
843
- <hr>
844
- <dt class="name" id="primaryMACAddress">
845
- <h4 id="primaryMACAddress"><span class="type-signature">&lt;readonly> </span>primaryMACAddress<span class="type-signature"></span></h4>
846
869
 
847
-
848
- </dt>
849
- <dd>
850
-
870
+ <h4 class="name" id="primaryMACAddress">
871
+ <span class="type-signature">(readonly) </span>primaryMACAddress<span class="type-signature"></span>
872
+ </h4>
873
+
874
+
875
+
851
876
 
852
-
853
877
 
854
-
855
- <dl class="details">
856
-
857
878
 
858
- <h5 class="subsection-title">Properties:</h5>
859
879
 
860
- <dl>
880
+ <h5 class="subsection-title">Properties:</h5>
861
881
 
862
- <table class="props table table-striped">
863
- <thead>
882
+
883
+
884
+ <table class="props">
885
+ <thead>
864
886
  <tr>
865
-
887
+
866
888
  <th>Name</th>
867
-
889
+
868
890
 
869
- <th>Type</th>
891
+ <th>Type</th>
870
892
 
871
-
893
+
872
894
 
873
-
895
+
874
896
 
875
- <th class="last">Description</th>
897
+ <th class="last">Description</th>
876
898
  </tr>
877
- </thead>
899
+ </thead>
878
900
 
879
- <tbody>
901
+ <tbody>
880
902
 
881
903
 
882
- <tr>
883
-
884
- <td class="name"><code>primaryMACAddress</code></td>
885
-
904
+ <tr>
905
+
906
+ <td class="name"><code>primaryMACAddress</code></td>
907
+
886
908
 
887
- <td class="type">
888
-
889
-
890
- <span class="param-type">string</span>
909
+ <td class="type">
910
+
911
+
912
+ <span class="param-type">
913
+ string
914
+ </span>
891
915
 
916
+
892
917
 
893
918
 
894
-
895
- </td>
919
+
920
+ </td>
896
921
 
897
-
922
+
898
923
 
899
-
924
+
900
925
 
901
- <td class="description last"><p>Primary MAC address of the hub</p></td>
902
- </tr>
926
+ <td class="description last">
927
+ <p>Primary MAC address of the hub</p>
928
+ </td>
929
+ </tr>
903
930
 
904
-
905
- </tbody>
931
+
932
+ </tbody>
906
933
  </table>
907
- </dl>
908
934
 
909
-
910
935
 
911
-
912
936
 
913
-
914
937
 
915
-
916
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
917
- <dd class="inherited-from">
918
- <ul class="dummy">
919
- <li>
920
- <a href="BaseHub.html#primaryMACAddress">BaseHub#primaryMACAddress</a>
921
- </li>
922
- </ul>
923
- </dd>
924
-
938
+ <dl class="details">
925
939
 
926
-
940
+
927
941
 
928
-
942
+
929
943
 
930
-
944
+
945
+ <dt class="inherited-from">Inherited From:</dt>
946
+ <dd class="inherited-from">
947
+ <ul class="dummy">
948
+ <li>
949
+ <a href="BaseHub.html#primaryMACAddress">BaseHub#primaryMACAddress</a>
950
+ </li>
951
+ </ul>
952
+ </dd>
953
+
931
954
 
932
-
955
+
956
+
957
+
933
958
 
934
-
959
+
935
960
 
936
-
961
+
937
962
 
938
-
963
+
939
964
 
940
-
965
+
941
966
 
942
-
967
+
943
968
 
969
+
944
970
 
971
+
945
972
 
946
-
947
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
948
- <dd class="tag-source">
949
- <ul class="dummy">
950
- <li>
951
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
952
- <a href="hubs_basehub.js.html#sunlight-1-line-127">line 127</a>
953
- </li>
954
- </ul>
955
- </dd>
956
-
973
+
974
+ <dt class="tag-source">Source:</dt>
975
+ <dd class="tag-source">
976
+ <ul class="dummy">
977
+ <li>
978
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line129">line 129</a>
979
+ </li>
980
+ </ul>
981
+ </dd>
982
+
957
983
 
958
-
984
+
959
985
 
960
-
986
+
961
987
 
962
-
988
+
963
989
  </dl>
964
990
 
965
991
 
966
-
967
- </dd>
968
992
 
993
+
994
+
995
+
996
+
969
997
 
970
998
 
971
- <hr>
972
- <dt class="name" id="rssi">
973
- <h4 id="rssi"><span class="type-signature">&lt;readonly> </span>rssi<span class="type-signature"></span></h4>
974
999
 
975
-
976
- </dt>
977
- <dd>
978
-
1000
+ <h4 class="name" id="rssi">
1001
+ <span class="type-signature">(readonly) </span>rssi<span class="type-signature"></span>
1002
+ </h4>
1003
+
1004
+
1005
+
979
1006
 
980
-
981
1007
 
982
-
983
- <dl class="details">
984
-
985
1008
 
986
- <h5 class="subsection-title">Properties:</h5>
987
1009
 
988
- <dl>
1010
+ <h5 class="subsection-title">Properties:</h5>
989
1011
 
990
- <table class="props table table-striped">
991
- <thead>
1012
+
1013
+
1014
+ <table class="props">
1015
+ <thead>
992
1016
  <tr>
993
-
1017
+
994
1018
  <th>Name</th>
995
-
1019
+
996
1020
 
997
- <th>Type</th>
1021
+ <th>Type</th>
998
1022
 
999
-
1023
+
1000
1024
 
1001
-
1025
+
1002
1026
 
1003
- <th class="last">Description</th>
1027
+ <th class="last">Description</th>
1004
1028
  </tr>
1005
- </thead>
1029
+ </thead>
1006
1030
 
1007
- <tbody>
1031
+ <tbody>
1008
1032
 
1009
1033
 
1010
- <tr>
1011
-
1012
- <td class="name"><code>rssi</code></td>
1013
-
1034
+ <tr>
1035
+
1036
+ <td class="name"><code>rssi</code></td>
1037
+
1014
1038
 
1015
- <td class="type">
1016
-
1017
-
1018
- <span class="param-type">number</span>
1039
+ <td class="type">
1040
+
1041
+
1042
+ <span class="param-type">
1043
+ number
1044
+ </span>
1019
1045
 
1046
+
1020
1047
 
1021
1048
 
1022
-
1023
- </td>
1049
+
1050
+ </td>
1024
1051
 
1025
-
1052
+
1026
1053
 
1027
-
1054
+
1028
1055
 
1029
- <td class="description last"><p>Signal strength of the hub</p></td>
1030
- </tr>
1056
+ <td class="description last">
1057
+ <p>Signal strength of the hub</p>
1058
+ </td>
1059
+ </tr>
1031
1060
 
1032
-
1033
- </tbody>
1061
+
1062
+ </tbody>
1034
1063
  </table>
1035
- </dl>
1036
1064
 
1037
-
1038
1065
 
1039
-
1040
1066
 
1041
-
1042
1067
 
1043
-
1044
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
1045
- <dd class="inherited-from">
1046
- <ul class="dummy">
1047
- <li>
1048
- <a href="BaseHub.html#rssi">BaseHub#rssi</a>
1049
- </li>
1050
- </ul>
1051
- </dd>
1052
-
1068
+ <dl class="details">
1053
1069
 
1054
-
1070
+
1055
1071
 
1056
-
1072
+
1057
1073
 
1058
-
1074
+
1075
+ <dt class="inherited-from">Inherited From:</dt>
1076
+ <dd class="inherited-from">
1077
+ <ul class="dummy">
1078
+ <li>
1079
+ <a href="BaseHub.html#rssi">BaseHub#rssi</a>
1080
+ </li>
1081
+ </ul>
1082
+ </dd>
1083
+
1059
1084
 
1060
-
1085
+
1061
1086
 
1062
-
1087
+
1063
1088
 
1064
-
1089
+
1065
1090
 
1066
-
1091
+
1067
1092
 
1068
-
1093
+
1069
1094
 
1070
-
1095
+
1071
1096
 
1097
+
1072
1098
 
1099
+
1073
1100
 
1074
-
1075
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
1076
- <dd class="tag-source">
1077
- <ul class="dummy">
1078
- <li>
1079
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
1080
- <a href="hubs_basehub.js.html#sunlight-1-line-148">line 148</a>
1081
- </li>
1082
- </ul>
1083
- </dd>
1084
-
1101
+
1085
1102
 
1086
-
1103
+
1104
+ <dt class="tag-source">Source:</dt>
1105
+ <dd class="tag-source">
1106
+ <ul class="dummy">
1107
+ <li>
1108
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line150">line 150</a>
1109
+ </li>
1110
+ </ul>
1111
+ </dd>
1112
+
1113
+
1114
+
1087
1115
 
1088
-
1116
+
1089
1117
 
1090
-
1118
+
1091
1119
  </dl>
1092
1120
 
1093
1121
 
1094
-
1095
- </dd>
1096
1122
 
1123
+
1124
+
1125
+
1126
+
1097
1127
 
1098
1128
 
1099
- <hr>
1100
- <dt class="name" id="type">
1101
- <h4 id="type"><span class="type-signature">&lt;readonly> </span>type<span class="type-signature"></span></h4>
1102
1129
 
1103
-
1104
- </dt>
1105
- <dd>
1106
-
1130
+ <h4 class="name" id="type">
1131
+ <span class="type-signature">(readonly) </span>type<span class="type-signature"></span>
1132
+ </h4>
1133
+
1134
+
1107
1135
 
1108
-
1109
1136
 
1110
-
1111
- <dl class="details">
1112
-
1113
1137
 
1114
- <h5 class="subsection-title">Properties:</h5>
1115
1138
 
1116
- <dl>
1117
1139
 
1118
- <table class="props table table-striped">
1119
- <thead>
1140
+ <h5 class="subsection-title">Properties:</h5>
1141
+
1142
+
1143
+
1144
+ <table class="props">
1145
+ <thead>
1120
1146
  <tr>
1121
-
1147
+
1122
1148
  <th>Name</th>
1123
-
1149
+
1124
1150
 
1125
- <th>Type</th>
1151
+ <th>Type</th>
1126
1152
 
1127
-
1153
+
1128
1154
 
1129
-
1155
+
1130
1156
 
1131
- <th class="last">Description</th>
1157
+ <th class="last">Description</th>
1132
1158
  </tr>
1133
- </thead>
1159
+ </thead>
1134
1160
 
1135
- <tbody>
1161
+ <tbody>
1136
1162
 
1137
1163
 
1138
- <tr>
1139
-
1140
- <td class="name"><code>type</code></td>
1141
-
1164
+ <tr>
1165
+
1166
+ <td class="name"><code>type</code></td>
1167
+
1142
1168
 
1143
- <td class="type">
1144
-
1145
-
1146
- <span class="param-type">string</span>
1169
+ <td class="type">
1170
+
1171
+
1172
+ <span class="param-type">
1173
+ string
1174
+ </span>
1147
1175
 
1176
+
1148
1177
 
1149
1178
 
1150
-
1151
- </td>
1179
+
1180
+ </td>
1152
1181
 
1153
-
1182
+
1154
1183
 
1155
-
1184
+
1156
1185
 
1157
- <td class="description last"><p>Hub type</p></td>
1158
- </tr>
1186
+ <td class="description last">
1187
+ <p>Hub type</p>
1188
+ </td>
1189
+ </tr>
1159
1190
 
1160
-
1161
- </tbody>
1191
+
1192
+ </tbody>
1162
1193
  </table>
1163
- </dl>
1164
1194
 
1165
-
1166
1195
 
1167
-
1168
1196
 
1169
-
1170
1197
 
1171
-
1172
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
1173
- <dd class="inherited-from">
1174
- <ul class="dummy">
1175
- <li>
1176
- <a href="BaseHub.html#type">BaseHub#type</a>
1177
- </li>
1178
- </ul>
1179
- </dd>
1180
-
1198
+ <dl class="details">
1181
1199
 
1182
-
1200
+
1183
1201
 
1184
-
1202
+
1185
1203
 
1186
-
1204
+
1205
+ <dt class="inherited-from">Inherited From:</dt>
1206
+ <dd class="inherited-from">
1207
+ <ul class="dummy">
1208
+ <li>
1209
+ <a href="BaseHub.html#type">BaseHub#type</a>
1210
+ </li>
1211
+ </ul>
1212
+ </dd>
1213
+
1187
1214
 
1188
-
1215
+
1216
+
1217
+
1189
1218
 
1190
-
1219
+
1191
1220
 
1192
-
1221
+
1193
1222
 
1194
-
1223
+
1195
1224
 
1196
-
1225
+
1197
1226
 
1198
-
1227
+
1199
1228
 
1229
+
1200
1230
 
1231
+
1201
1232
 
1202
-
1203
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
1204
- <dd class="tag-source">
1205
- <ul class="dummy">
1206
- <li>
1207
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
1208
- <a href="hubs_basehub.js.html#sunlight-1-line-99">line 99</a>
1209
- </li>
1210
- </ul>
1211
- </dd>
1212
-
1233
+
1234
+ <dt class="tag-source">Source:</dt>
1235
+ <dd class="tag-source">
1236
+ <ul class="dummy">
1237
+ <li>
1238
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line101">line 101</a>
1239
+ </li>
1240
+ </ul>
1241
+ </dd>
1242
+
1213
1243
 
1214
-
1244
+
1215
1245
 
1216
-
1246
+
1217
1247
 
1218
-
1248
+
1219
1249
  </dl>
1220
1250
 
1221
1251
 
1222
-
1223
- </dd>
1224
1252
 
1253
+
1254
+
1255
+
1256
+
1225
1257
 
1226
1258
 
1227
- <hr>
1228
- <dt class="name" id="uuid">
1229
- <h4 id="uuid"><span class="type-signature">&lt;readonly> </span>uuid<span class="type-signature"></span></h4>
1230
1259
 
1231
-
1232
- </dt>
1233
- <dd>
1234
-
1260
+ <h4 class="name" id="uuid">
1261
+ <span class="type-signature">(readonly) </span>uuid<span class="type-signature"></span>
1262
+ </h4>
1263
+
1235
1264
 
1236
-
1237
1265
 
1238
-
1239
- <dl class="details">
1240
-
1241
1266
 
1242
- <h5 class="subsection-title">Properties:</h5>
1243
1267
 
1244
- <dl>
1245
1268
 
1246
- <table class="props table table-striped">
1247
- <thead>
1269
+
1270
+ <h5 class="subsection-title">Properties:</h5>
1271
+
1272
+
1273
+
1274
+ <table class="props">
1275
+ <thead>
1248
1276
  <tr>
1249
-
1277
+
1250
1278
  <th>Name</th>
1279
+
1280
+
1281
+ <th>Type</th>
1282
+
1283
+
1284
+
1285
+
1286
+
1287
+ <th class="last">Description</th>
1288
+ </tr>
1289
+ </thead>
1290
+
1291
+ <tbody>
1292
+
1293
+
1294
+ <tr>
1295
+
1296
+ <td class="name"><code>uuid</code></td>
1297
+
1298
+
1299
+ <td class="type">
1251
1300
 
1301
+
1302
+ <span class="param-type">
1303
+ string
1304
+ </span>
1252
1305
 
1253
- <th>Type</th>
1306
+
1307
+
1308
+
1309
+
1310
+ </td>
1254
1311
 
1255
1312
 
1256
1313
 
1257
-
1314
+
1315
+
1316
+ <td class="description last">
1317
+ <p>UUID of the hub</p>
1318
+ </td>
1319
+ </tr>
1320
+
1321
+
1322
+ </tbody>
1323
+ </table>
1324
+
1325
+
1326
+
1327
+
1328
+ <dl class="details">
1329
+
1330
+
1331
+
1332
+
1333
+
1334
+
1335
+ <dt class="inherited-from">Inherited From:</dt>
1336
+ <dd class="inherited-from">
1337
+ <ul class="dummy">
1338
+ <li>
1339
+ <a href="BaseHub.html#uuid">BaseHub#uuid</a>
1340
+ </li>
1341
+ </ul>
1342
+ </dd>
1343
+
1344
+
1345
+
1346
+
1347
+
1258
1348
 
1259
- <th class="last">Description</th>
1260
- </tr>
1261
- </thead>
1349
+
1262
1350
 
1263
- <tbody>
1264
-
1351
+
1265
1352
 
1266
- <tr>
1267
-
1268
- <td class="name"><code>uuid</code></td>
1269
-
1353
+
1270
1354
 
1271
- <td class="type">
1272
-
1273
-
1274
- <span class="param-type">string</span>
1355
+
1275
1356
 
1357
+
1276
1358
 
1359
+
1277
1360
 
1278
-
1279
- </td>
1361
+
1280
1362
 
1281
-
1363
+
1364
+ <dt class="tag-source">Source:</dt>
1365
+ <dd class="tag-source">
1366
+ <ul class="dummy">
1367
+ <li>
1368
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line136">line 136</a>
1369
+ </li>
1370
+ </ul>
1371
+ </dd>
1372
+
1282
1373
 
1283
-
1374
+
1284
1375
 
1285
- <td class="description last"><p>UUID of the hub</p></td>
1286
- </tr>
1376
+
1287
1377
 
1288
-
1289
- </tbody>
1290
- </table>
1378
+
1291
1379
  </dl>
1292
1380
 
1293
-
1294
1381
 
1295
-
1296
1382
 
1297
-
1298
1383
 
1299
-
1300
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
1301
- <dd class="inherited-from">
1302
- <ul class="dummy">
1303
- <li>
1304
- <a href="BaseHub.html#uuid">BaseHub#uuid</a>
1305
- </li>
1306
- </ul>
1307
- </dd>
1308
-
1309
1384
 
1310
-
1311
1385
 
1386
+
1387
+
1312
1388
 
1313
1389
 
1314
1390
 
1391
+ <h3 class="subsection-title">Methods</h3>
1315
1392
 
1316
-
1393
+
1394
+
1317
1395
 
1318
-
1319
1396
 
1320
-
1397
+
1321
1398
 
1322
-
1399
+ <span class='name-container'>
1400
+ <a class="link-icon" href="#createVirtualPort">
1401
+ <svg height="20" width="20" style="fill: black;">
1402
+ <use xlink:href="#linkIcon"></use>
1403
+ </svg>
1404
+ </a>
1405
+ <h4 class="name" id="createVirtualPort">
1406
+ <span class="type-signature"></span>createVirtualPort<span class="signature">(firstPortName, secondPortName)</span><span class="type-signature"> &rarr; {Promise}</span>
1407
+ </h4>
1408
+ </span>
1323
1409
 
1324
-
1410
+
1325
1411
 
1326
-
1327
1412
 
1328
1413
 
1414
+ <div class="description">
1415
+ <p>Combines two ports with into a single virtual port.</p>
1416
+ <p>Note: The devices attached to the ports must be of the same device type.</p>
1417
+ </div>
1329
1418
 
1330
-
1331
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
1332
- <dd class="tag-source">
1333
- <ul class="dummy">
1334
- <li>
1335
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
1336
- <a href="hubs_basehub.js.html#sunlight-1-line-134">line 134</a>
1337
- </li>
1338
- </ul>
1339
- </dd>
1340
-
1341
1419
 
1342
-
1343
1420
 
1344
-
1345
1421
 
1346
-
1347
- </dl>
1348
1422
 
1349
1423
 
1350
-
1351
- </dd>
1352
1424
 
1353
- </dl>
1354
-
1425
+ <h5>Parameters:</h5>
1426
+
1355
1427
 
1356
-
1357
- <h3 class="subsection-title">Methods</h3>
1428
+ <table class="params">
1429
+ <thead>
1430
+ <tr>
1431
+
1432
+ <th>Name</th>
1433
+
1358
1434
 
1359
- <dl>
1360
-
1361
- <hr>
1362
- <dt>
1363
- <h4 class="name" id="createVirtualPort"><span class="type-signature"></span>createVirtualPort(firstPortName, secondPortName)</h4>
1364
-
1365
-
1366
- </dt>
1367
- <dd>
1435
+ <th>Type</th>
1368
1436
 
1369
-
1370
- <div class="description">
1371
- <p>Combines two ports with into a single virtual port.</p>
1372
- <p>Note: The devices attached to the ports must be of the same device type.</p>
1373
- </div>
1374
-
1437
+
1375
1438
 
1376
-
1439
+
1377
1440
 
1378
-
1441
+ <th class="last">Description</th>
1442
+ </tr>
1443
+ </thead>
1379
1444
 
1445
+ <tbody>
1380
1446
 
1381
-
1382
- <h5>Parameters:</h5>
1383
-
1384
-
1385
- <table class="params table table-striped">
1386
- <thead>
1387
- <tr>
1447
+ <tr>
1388
1448
 
1389
- <th>Name</th>
1449
+ <td class="name"><code>firstPortName</code></td>
1390
1450
 
1391
1451
 
1392
- <th>Type</th>
1452
+ <td class="type">
1453
+
1454
+
1455
+ <span class="param-type">
1456
+ string
1457
+ </span>
1458
+
1459
+
1460
+
1461
+
1462
+
1463
+ </td>
1393
1464
 
1394
1465
 
1395
1466
 
1396
1467
 
1397
1468
 
1398
- <th class="last">Description</th>
1399
- </tr>
1400
- </thead>
1469
+ <td class="description last">
1470
+ <p>First port name</p>
1471
+
1472
+ </td>
1473
+ </tr>
1401
1474
 
1402
- <tbody>
1403
1475
 
1476
+ <tr>
1477
+
1478
+ <td class="name"><code>secondPortName</code></td>
1479
+
1404
1480
 
1405
- <tr>
1406
-
1407
- <td class="name"><code>firstPortName</code></td>
1408
-
1409
-
1410
- <td class="type">
1481
+ <td class="type">
1482
+
1411
1483
 
1412
-
1413
- <span class="param-type">string</span>
1484
+ <span class="param-type">
1485
+ string
1486
+ </span>
1414
1487
 
1488
+
1415
1489
 
1416
1490
 
1417
-
1418
- </td>
1491
+
1492
+ </td>
1419
1493
 
1420
-
1494
+
1421
1495
 
1422
-
1496
+
1423
1497
 
1424
- <td class="description last"><p>First port name</p></td>
1425
- </tr>
1498
+ <td class="description last">
1499
+ <p>Second port name</p>
1500
+
1501
+ </td>
1502
+ </tr>
1426
1503
 
1427
1504
 
1505
+ </tbody>
1506
+ </table>
1428
1507
 
1429
- <tr>
1430
-
1431
- <td class="name"><code>secondPortName</code></td>
1432
-
1433
-
1434
- <td class="type">
1435
-
1436
-
1437
- <span class="param-type">string</span>
1438
1508
 
1439
1509
 
1440
1510
 
1441
-
1442
- </td>
1443
1511
 
1444
-
1512
+ <dl class="details">
1445
1513
 
1446
-
1514
+
1447
1515
 
1448
- <td class="description last"><p>Second port name</p></td>
1449
- </tr>
1516
+
1450
1517
 
1451
-
1452
- </tbody>
1453
- </table>
1518
+
1454
1519
 
1455
-
1520
+
1456
1521
 
1457
-
1458
- <dl class="details">
1459
-
1522
+
1460
1523
 
1461
-
1524
+
1462
1525
 
1463
-
1526
+
1464
1527
 
1465
-
1528
+
1466
1529
 
1467
-
1530
+
1468
1531
 
1469
-
1532
+
1470
1533
 
1471
-
1534
+
1472
1535
 
1473
-
1536
+
1474
1537
 
1475
-
1538
+
1539
+ <dt class="tag-source">Source:</dt>
1540
+ <dd class="tag-source">
1541
+ <ul class="dummy">
1542
+ <li>
1543
+ <a href="hubs_lpf2hub.js.html">hubs/lpf2hub.js</a>, <a href="hubs_lpf2hub.js.html#line90">line 90</a>
1544
+ </li>
1545
+ </ul>
1546
+ </dd>
1547
+
1476
1548
 
1477
-
1549
+
1478
1550
 
1479
-
1551
+
1480
1552
 
1481
-
1553
+
1554
+ </dl>
1482
1555
 
1483
-
1484
1556
 
1485
1557
 
1486
1558
 
1487
-
1488
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
1489
- <dd class="tag-source">
1490
- <ul class="dummy">
1491
- <li>
1492
- <a href="hubs_lpf2hub.js.html">hubs/lpf2hub.js</a>,
1493
- <a href="hubs_lpf2hub.js.html#sunlight-1-line-90">line 90</a>
1494
- </li>
1495
- </ul>
1496
- </dd>
1497
-
1498
1559
 
1499
-
1500
1560
 
1501
-
1502
1561
 
1503
-
1504
- </dl>
1505
1562
 
1506
1563
 
1507
-
1508
1564
 
1509
-
1510
1565
 
1511
-
1512
1566
 
1513
-
1514
1567
 
1515
-
1516
1568
 
1517
-
1518
- <h5>Returns:</h5>
1519
-
1520
-
1521
- <div class="param-desc">
1522
- <p>Resolved upon successful issuance of command.</p>
1523
- </div>
1569
+
1570
+
1524
1571
 
1525
1572
 
1573
+
1526
1574
 
1527
- <dl>
1528
- <dt>
1529
- Type
1530
- </dt>
1531
- <dd>
1532
-
1533
- <span class="param-type">Promise</span>
1575
+ <span class='name-container'>
1576
+ <a class="link-icon" href="#setName">
1577
+ <svg height="20" width="20" style="fill: black;">
1578
+ <use xlink:href="#linkIcon"></use>
1579
+ </svg>
1580
+ </a>
1581
+ <h4 class="name" id="setName">
1582
+ <span class="type-signature"></span>setName<span class="signature">(name)</span><span class="type-signature"> &rarr; {Promise}</span>
1583
+ </h4>
1584
+ </span>
1534
1585
 
1586
+
1535
1587
 
1536
1588
 
1537
- </dd>
1538
- </dl>
1539
1589
 
1590
+ <div class="description">
1591
+ <p>Set the name of the Hub.</p>
1592
+ </div>
1540
1593
 
1541
-
1542
1594
 
1543
-
1544
- </dd>
1545
1595
 
1546
-
1547
-
1548
- <hr>
1549
- <dt>
1550
- <h4 class="name" id="setName"><span class="type-signature"></span>setName(name)</h4>
1551
-
1552
-
1553
- </dt>
1554
- <dd>
1555
1596
 
1556
-
1557
- <div class="description">
1558
- <p>Set the name of the Hub.</p>
1559
- </div>
1560
-
1561
1597
 
1562
-
1563
1598
 
1564
-
1565
1599
 
1566
-
1567
-
1568
- <h5>Parameters:</h5>
1569
-
1600
+ <h5>Parameters:</h5>
1601
+
1570
1602
 
1571
- <table class="params table table-striped">
1572
- <thead>
1603
+ <table class="params">
1604
+ <thead>
1573
1605
  <tr>
1574
-
1606
+
1575
1607
  <th>Name</th>
1576
-
1608
+
1577
1609
 
1578
- <th>Type</th>
1610
+ <th>Type</th>
1579
1611
 
1580
-
1612
+
1581
1613
 
1582
-
1614
+
1583
1615
 
1584
- <th class="last">Description</th>
1616
+ <th class="last">Description</th>
1585
1617
  </tr>
1586
- </thead>
1618
+ </thead>
1587
1619
 
1588
- <tbody>
1620
+ <tbody>
1589
1621
 
1622
+ <tr>
1623
+
1624
+ <td class="name"><code>name</code></td>
1625
+
1590
1626
 
1591
- <tr>
1592
-
1593
- <td class="name"><code>name</code></td>
1594
-
1595
-
1596
- <td class="type">
1627
+ <td class="type">
1628
+
1597
1629
 
1598
-
1599
- <span class="param-type">string</span>
1630
+ <span class="param-type">
1631
+ string
1632
+ </span>
1600
1633
 
1634
+
1601
1635
 
1602
1636
 
1603
-
1604
- </td>
1637
+
1638
+ </td>
1605
1639
 
1606
-
1640
+
1607
1641
 
1608
-
1642
+
1609
1643
 
1610
- <td class="description last"><p>New name of the hub (14 characters or less, ASCII only).</p></td>
1611
- </tr>
1644
+ <td class="description last">
1645
+ <p>New name of the hub (14 characters or less, ASCII only).</p>
1646
+
1647
+ </td>
1648
+ </tr>
1612
1649
 
1613
1650
 
1614
- </tbody>
1651
+ </tbody>
1615
1652
  </table>
1616
1653
 
1617
-
1618
1654
 
1619
-
1620
- <dl class="details">
1621
-
1622
1655
 
1623
-
1624
1656
 
1625
-
1626
1657
 
1627
-
1658
+ <dl class="details">
1628
1659
 
1629
-
1660
+
1630
1661
 
1631
-
1662
+
1632
1663
 
1633
-
1664
+
1634
1665
 
1635
-
1666
+
1636
1667
 
1637
-
1668
+
1638
1669
 
1639
-
1670
+
1640
1671
 
1641
-
1672
+
1642
1673
 
1643
-
1674
+
1644
1675
 
1645
-
1676
+
1646
1677
 
1678
+
1647
1679
 
1680
+
1648
1681
 
1649
-
1650
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
1651
- <dd class="tag-source">
1652
- <ul class="dummy">
1653
- <li>
1654
- <a href="hubs_lpf2hub.js.html">hubs/lpf2hub.js</a>,
1655
- <a href="hubs_lpf2hub.js.html#sunlight-1-line-61">line 61</a>
1656
- </li>
1657
- </ul>
1658
- </dd>
1659
-
1682
+
1660
1683
 
1661
-
1684
+
1685
+ <dt class="tag-source">Source:</dt>
1686
+ <dd class="tag-source">
1687
+ <ul class="dummy">
1688
+ <li>
1689
+ <a href="hubs_lpf2hub.js.html">hubs/lpf2hub.js</a>, <a href="hubs_lpf2hub.js.html#line61">line 61</a>
1690
+ </li>
1691
+ </ul>
1692
+ </dd>
1693
+
1662
1694
 
1663
-
1695
+
1664
1696
 
1665
-
1666
- </dl>
1697
+
1667
1698
 
1699
+
1700
+ </dl>
1668
1701
 
1669
-
1670
1702
 
1671
-
1672
1703
 
1673
-
1674
1704
 
1675
-
1676
1705
 
1677
-
1678
1706
 
1679
-
1680
- <h5>Returns:</h5>
1681
-
1682
-
1683
- <div class="param-desc">
1684
- <p>Resolved upon successful issuance of command.</p>
1685
- </div>
1686
1707
 
1687
1708
 
1688
1709
 
1689
- <dl>
1690
- <dt>
1691
- Type
1692
- </dt>
1693
- <dd>
1694
-
1695
- <span class="param-type">Promise</span>
1696
1710
 
1697
1711
 
1698
1712
 
1699
- </dd>
1700
- </dl>
1701
1713
 
1702
1714
 
1715
+
1703
1716
 
1704
1717
 
1705
-
1706
- </dd>
1707
1718
 
1708
-
1709
-
1710
- <hr>
1711
- <dt>
1712
- <h4 class="name" id="shutdown"><span class="type-signature"></span>shutdown()</h4>
1713
-
1714
-
1715
- </dt>
1716
- <dd>
1719
+
1717
1720
 
1718
-
1719
- <div class="description">
1720
- <p>Shutdown the Hub.</p>
1721
- </div>
1722
-
1721
+ <span class='name-container'>
1722
+ <a class="link-icon" href="#shutdown">
1723
+ <svg height="20" width="20" style="fill: black;">
1724
+ <use xlink:href="#linkIcon"></use>
1725
+ </svg>
1726
+ </a>
1727
+ <h4 class="name" id="shutdown">
1728
+ <span class="type-signature"></span>shutdown<span class="signature">()</span><span class="type-signature"> &rarr; {Promise}</span>
1729
+ </h4>
1730
+ </span>
1723
1731
 
1724
-
1732
+
1725
1733
 
1726
-
1727
1734
 
1728
-
1729
-
1730
1735
 
1731
-
1732
- <dl class="details">
1733
-
1736
+ <div class="description">
1737
+ <p>Shutdown the Hub.</p>
1738
+ </div>
1734
1739
 
1735
-
1736
1740
 
1737
-
1738
1741
 
1739
-
1740
1742
 
1741
-
1742
1743
 
1743
-
1744
1744
 
1745
-
1746
1745
 
1747
-
1748
1746
 
1749
-
1750
1747
 
1751
-
1752
1748
 
1753
-
1749
+ <dl class="details">
1754
1750
 
1755
-
1751
+
1756
1752
 
1757
-
1753
+
1758
1754
 
1755
+
1759
1756
 
1757
+
1760
1758
 
1761
-
1762
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
1763
- <dd class="tag-source">
1764
- <ul class="dummy">
1765
- <li>
1766
- <a href="hubs_lpf2hub.js.html">hubs/lpf2hub.js</a>,
1767
- <a href="hubs_lpf2hub.js.html#sunlight-1-line-53">line 53</a>
1768
- </li>
1769
- </ul>
1770
- </dd>
1771
-
1759
+
1772
1760
 
1773
-
1761
+
1774
1762
 
1775
-
1763
+
1776
1764
 
1777
-
1778
- </dl>
1765
+
1779
1766
 
1767
+
1780
1768
 
1781
-
1769
+
1782
1770
 
1783
-
1771
+
1784
1772
 
1785
-
1773
+
1786
1774
 
1787
-
1775
+
1776
+ <dt class="tag-source">Source:</dt>
1777
+ <dd class="tag-source">
1778
+ <ul class="dummy">
1779
+ <li>
1780
+ <a href="hubs_lpf2hub.js.html">hubs/lpf2hub.js</a>, <a href="hubs_lpf2hub.js.html#line53">line 53</a>
1781
+ </li>
1782
+ </ul>
1783
+ </dd>
1784
+
1788
1785
 
1789
-
1786
+
1790
1787
 
1791
-
1792
- <h5>Returns:</h5>
1793
-
1794
-
1795
- <div class="param-desc">
1796
- <p>Resolved upon successful disconnect.</p>
1797
- </div>
1788
+
1798
1789
 
1790
+
1791
+ </dl>
1799
1792
 
1800
1793
 
1801
- <dl>
1802
- <dt>
1803
- Type
1804
- </dt>
1805
- <dd>
1806
-
1807
- <span class="param-type">Promise</span>
1808
1794
 
1809
1795
 
1810
1796
 
1811
- </dd>
1812
- </dl>
1813
1797
 
1814
1798
 
1815
-
1816
1799
 
1817
-
1818
- </dd>
1819
1800
 
1820
- </dl>
1821
-
1822
1801
 
1823
-
1824
1802
 
1825
-
1826
- <h3 class="subsection-title">Events</h3>
1827
1803
 
1828
- <dl>
1829
-
1830
- <hr>
1831
- <dt>
1832
- <h4 class="name" id="event:button">button</h4>
1833
-
1834
-
1835
- </dt>
1836
- <dd>
1837
1804
 
1838
-
1839
- <div class="description">
1840
- <p>Emits when a button is pressed.</p>
1841
- </div>
1842
-
1843
1805
 
1806
+
1844
1807
 
1845
1808
 
1846
1809
 
1847
1810
 
1848
1811
 
1849
-
1850
- <h5>Parameters:</h5>
1851
-
1812
+ <h3 class="subsection-title">Events</h3>
1852
1813
 
1853
- <table class="params table table-striped">
1854
- <thead>
1855
- <tr>
1856
-
1857
- <th>Name</th>
1814
+
1858
1815
 
1859
1816
 
1860
- <th>Type</th>
1861
1817
 
1862
-
1818
+
1863
1819
 
1864
-
1820
+ <span class='name-container'>
1821
+ <a class="link-icon" href="#event:button">
1822
+ <svg height="20" width="20" style="fill: black;">
1823
+ <use xlink:href="#linkIcon"></use>
1824
+ </svg>
1825
+ </a>
1826
+ <h4 class="name" id="event:button">
1827
+ <span class="type-signature"></span>button<span class="type-signature"></span>
1828
+ </h4>
1829
+ </span>
1865
1830
 
1866
- <th class="last">Description</th>
1867
- </tr>
1868
- </thead>
1831
+
1869
1832
 
1870
- <tbody>
1871
-
1872
1833
 
1873
- <tr>
1874
-
1875
- <td class="name"><code>button</code></td>
1876
-
1877
1834
 
1878
- <td class="type">
1879
-
1880
-
1881
- <span class="param-type">string</span>
1835
+ <div class="description">
1836
+ <p>Emits when a button is pressed.</p>
1837
+ </div>
1882
1838
 
1883
1839
 
1884
1840
 
1885
-
1886
- </td>
1887
1841
 
1888
-
1889
1842
 
1890
-
1891
1843
 
1892
- <td class="description last"></td>
1893
- </tr>
1894
1844
 
1895
-
1845
+ <h5>Parameters:</h5>
1846
+
1896
1847
 
1897
- <tr>
1898
-
1899
- <td class="name"><code>state</code></td>
1900
-
1848
+ <table class="params">
1849
+ <thead>
1850
+ <tr>
1851
+
1852
+ <th>Name</th>
1853
+
1901
1854
 
1902
- <td class="type">
1903
-
1904
-
1905
- <span class="param-type">ButtonState</span>
1855
+ <th>Type</th>
1906
1856
 
1857
+
1907
1858
 
1859
+
1908
1860
 
1909
-
1910
- </td>
1861
+ <th class="last">Description</th>
1862
+ </tr>
1863
+ </thead>
1911
1864
 
1912
-
1865
+ <tbody>
1866
+
1867
+ <tr>
1868
+
1869
+ <td class="name"><code>button</code></td>
1870
+
1913
1871
 
1872
+ <td class="type">
1873
+
1914
1874
 
1915
-
1916
- <td class="description last"></td>
1917
- </tr>
1918
-
1919
-
1920
- </tbody>
1921
- </table>
1875
+ <span class="param-type">
1876
+ string
1877
+ </span>
1922
1878
 
1923
1879
 
1924
1880
 
1925
-
1926
- <dl class="details">
1927
-
1928
1881
 
1929
-
1882
+
1883
+ </td>
1930
1884
 
1931
-
1885
+
1932
1886
 
1933
-
1887
+
1934
1888
 
1935
-
1889
+ <td class="description last">
1890
+
1891
+
1892
+ </td>
1893
+ </tr>
1936
1894
 
1937
1895
 
1896
+ <tr>
1897
+
1898
+ <td class="name"><code>state</code></td>
1899
+
1938
1900
 
1939
-
1901
+ <td class="type">
1902
+
1903
+
1904
+ <span class="param-type">
1905
+ <a href="global.html#ButtonState">ButtonState</a>
1906
+ </span>
1940
1907
 
1941
1908
 
1942
1909
 
1943
-
1944
-
1945
-
1946
-
1947
-
1948
-
1949
-
1950
-
1951
-
1952
1910
 
1911
+
1912
+ </td>
1953
1913
 
1914
+
1954
1915
 
1955
-
1956
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
1957
- <dd class="tag-source">
1958
- <ul class="dummy">
1959
- <li>
1960
- <a href="hubs_lpf2hub.js.html">hubs/lpf2hub.js</a>,
1961
- <a href="hubs_lpf2hub.js.html#sunlight-1-line-182">line 182</a>
1962
- </li>
1963
- </ul>
1964
- </dd>
1965
-
1966
-
1967
-
1968
-
1969
-
1970
-
1971
-
1972
- </dl>
1973
-
1974
-
1975
-
1976
-
1977
-
1916
+
1978
1917
 
1979
-
1918
+ <td class="description last">
1919
+
1920
+
1921
+ </td>
1922
+ </tr>
1980
1923
 
1981
1924
 
1925
+ </tbody>
1926
+ </table>
1982
1927
 
1983
-
1984
1928
 
1985
-
1986
1929
 
1987
-
1988
- </dd>
1989
1930
 
1990
- </dl>
1991
-
1992
- </article>
1993
1931
 
1994
- </section>
1932
+ <dl class="details">
1995
1933
 
1934
+
1996
1935
 
1936
+
1997
1937
 
1938
+
1998
1939
 
1999
- </div>
2000
- </div>
1940
+
2001
1941
 
2002
- <div class="clearfix"></div>
1942
+
2003
1943
 
2004
-
2005
- <div class="col-md-3">
2006
- <div id="toc" class="col-md-3 hidden-xs hidden-sm hidden-md"></div>
2007
- </div>
2008
-
1944
+
2009
1945
 
2010
- </div>
2011
- </div>
1946
+
2012
1947
 
1948
+
2013
1949
 
2014
- <div class="modal fade" id="searchResults">
2015
- <div class="modal-dialog">
2016
- <div class="modal-content">
2017
- <div class="modal-header">
2018
- <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
2019
- <h4 class="modal-title">Search results</h4>
2020
- </div>
2021
- <div class="modal-body"></div>
2022
- <div class="modal-footer">
2023
- <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
2024
- </div>
2025
- </div><!-- /.modal-content -->
2026
- </div><!-- /.modal-dialog -->
2027
- </div>
1950
+
2028
1951
 
1952
+
2029
1953
 
2030
- <footer>
1954
+
2031
1955
 
1956
+
2032
1957
 
2033
- <span class="copyright">
2034
- node-poweredup by Nathan Kellenicki licensed under the MIT license.
2035
- </span>
1958
+
1959
+ <dt class="tag-source">Source:</dt>
1960
+ <dd class="tag-source">
1961
+ <ul class="dummy">
1962
+ <li>
1963
+ <a href="hubs_lpf2hub.js.html">hubs/lpf2hub.js</a>, <a href="hubs_lpf2hub.js.html#line182">line 182</a>
1964
+ </li>
1965
+ </ul>
1966
+ </dd>
1967
+
2036
1968
 
2037
- <span class="jsdoc-message">
2038
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a>
2039
-
2040
- on Tue Apr 6th 2021
2041
-
2042
- using the <a href="https://github.com/docstrap/docstrap">DocStrap template</a>.
2043
- </span>
2044
- </footer>
1969
+
2045
1970
 
2046
- <script src="scripts/docstrap.lib.js"></script>
2047
- <script src="scripts/toc.js"></script>
1971
+
2048
1972
 
2049
- <script type="text/javascript" src="scripts/fulltext-search-ui.js"></script>
1973
+
1974
+ </dl>
2050
1975
 
2051
1976
 
2052
- <script>
2053
- $( function () {
2054
- $( "[id*='$']" ).each( function () {
2055
- var $this = $( this );
2056
1977
 
2057
- $this.attr( "id", $this.attr( "id" ).replace( "$", "__" ) );
2058
- } );
2059
1978
 
2060
- $( ".tutorial-section pre, .readme-section pre, pre.prettyprint.source" ).each( function () {
2061
- var $this = $( this );
2062
1979
 
2063
- var example = $this.find( "code" );
2064
- exampleText = example.html();
2065
- var lang = /{@lang (.*?)}/.exec( exampleText );
2066
- if ( lang && lang[1] ) {
2067
- exampleText = exampleText.replace( lang[0], "" );
2068
- example.html( exampleText );
2069
- lang = lang[1];
2070
- } else {
2071
- var langClassMatch = example.parent()[0].className.match(/lang\-(\S+)/);
2072
- lang = langClassMatch ? langClassMatch[1] : "javascript";
2073
- }
2074
1980
 
2075
- if ( lang ) {
2076
1981
 
2077
- $this
2078
- .addClass( "sunlight-highlight-" + lang )
2079
- .addClass( "linenums" )
2080
- .html( example.html() );
2081
1982
 
2082
- }
2083
- } );
2084
1983
 
2085
- Sunlight.highlightAll( {
2086
- lineNumbers : true,
2087
- showMenu : true,
2088
- enableDoclinks : true
2089
- } );
2090
1984
 
2091
- $.catchAnchorLinks( {
2092
- navbarOffset: 10
2093
- } );
2094
- $( "#toc" ).toc( {
2095
- anchorName : function ( i, heading, prefix ) {
2096
- return $( heading ).attr( "id" ) || ( prefix + i );
2097
- },
2098
- selectors : "#toc-content h1,#toc-content h2,#toc-content h3,#toc-content h4",
2099
- showAndHide : false,
2100
- smoothScrolling: true
2101
- } );
2102
1985
 
2103
- $( "#main span[id^='toc']" ).addClass( "toc-shim" );
2104
- $( '.dropdown-toggle' ).dropdown();
2105
1986
 
2106
- $( "table" ).each( function () {
2107
- var $this = $( this );
2108
- $this.addClass('table');
2109
- } );
2110
1987
 
2111
- } );
2112
- </script>
2113
1988
 
1989
+
1990
+
1991
+ </article>
1992
+ </section>
2114
1993
 
2115
1994
 
2116
- <!--Navigation and Symbol Display-->
2117
1995
 
2118
1996
 
2119
- <!--Google Analytics-->
1997
+ </div>
2120
1998
 
1999
+ <br class="clear">
2121
2000
 
2001
+ <footer>
2002
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a>
2003
+ </footer>
2122
2004
 
2123
- <script type="text/javascript">
2124
- $(document).ready(function() {
2125
- SearcherDisplay.init();
2126
- });
2127
- </script>
2005
+ <script src="scripts/linenumber.js"></script>
2006
+ <script src="scripts/pagelocation.js"></script>
2128
2007
 
2008
+
2129
2009
 
2130
2010
  </body>
2131
2011
  </html>