node-poweredup 6.10.0 → 8.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (314) 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 +8 -9
  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.d.ts +2 -2
  21. package/dist/node/devices/device.js +10 -5
  22. package/dist/node/devices/device.js.map +1 -1
  23. package/dist/node/devices/duplotrainbasecolorsensor.d.ts +2 -1
  24. package/dist/node/devices/duplotrainbasecolorsensor.js +15 -2
  25. package/dist/node/devices/duplotrainbasecolorsensor.js.map +1 -1
  26. package/dist/node/devices/light.js +1 -1
  27. package/dist/node/devices/light.js.map +1 -1
  28. package/dist/node/devices/tachomotor.js +10 -12
  29. package/dist/node/devices/tachomotor.js.map +1 -1
  30. package/dist/node/devices/technic3x3colorlightmatrix.d.ts +22 -0
  31. package/dist/node/devices/technic3x3colorlightmatrix.js +77 -0
  32. package/dist/node/devices/technic3x3colorlightmatrix.js.map +1 -0
  33. package/dist/node/devices/techniccolorsensor.js +2 -1
  34. package/dist/node/devices/techniccolorsensor.js.map +1 -1
  35. package/dist/node/devices/technicmediumhubtiltsensor.d.ts +25 -1
  36. package/dist/node/devices/technicmediumhubtiltsensor.js +70 -2
  37. package/dist/node/devices/technicmediumhubtiltsensor.js.map +1 -1
  38. package/dist/node/devices/technicsmallangularmotor.d.ts +12 -0
  39. package/dist/node/devices/technicsmallangularmotor.js +35 -0
  40. package/dist/node/devices/technicsmallangularmotor.js.map +1 -0
  41. package/dist/node/hubs/basehub.js +4 -0
  42. package/dist/node/hubs/basehub.js.map +1 -1
  43. package/dist/node/hubs/hub.js +1 -1
  44. package/dist/node/hubs/hub.js.map +1 -1
  45. package/dist/node/hubs/lpf2hub.js +19 -21
  46. package/dist/node/hubs/lpf2hub.js.map +1 -1
  47. package/dist/node/hubs/movehub.js +1 -1
  48. package/dist/node/hubs/movehub.js.map +1 -1
  49. package/dist/node/hubs/technicmediumhub.js +1 -1
  50. package/dist/node/hubs/technicmediumhub.js.map +1 -1
  51. package/dist/node/hubs/technicsmallhub.d.ts +18 -0
  52. package/dist/node/hubs/technicsmallhub.js +64 -0
  53. package/dist/node/hubs/technicsmallhub.js.map +1 -0
  54. package/dist/node/index-browser.js +6 -0
  55. package/dist/node/index-browser.js.map +1 -1
  56. package/dist/node/index-node.d.ts +4 -1
  57. package/dist/node/index-node.js +7 -1
  58. package/dist/node/index-node.js.map +1 -1
  59. package/dist/node/poweredup-browser.js +8 -1
  60. package/dist/node/poweredup-browser.js.map +1 -1
  61. package/dist/node/poweredup-node.js +28 -1
  62. package/dist/node/poweredup-node.js.map +1 -1
  63. package/dist/node/utils.d.ts +1 -1
  64. package/dist/node/utils.js +10 -3
  65. package/dist/node/utils.js.map +1 -1
  66. package/docs/AbsoluteMotor.html +1220 -1405
  67. package/docs/BaseHub.html +787 -872
  68. package/docs/BasicMotor.html +923 -1078
  69. package/docs/ColorDistanceSensor.html +2188 -1540
  70. package/docs/CurrentSensor.html +711 -800
  71. package/docs/Device.html +574 -665
  72. package/docs/DuploTrainBase.html +1255 -1375
  73. package/docs/DuploTrainBaseColorSensor.html +1049 -978
  74. package/docs/DuploTrainBaseMotor.html +958 -1113
  75. package/docs/DuploTrainBaseSpeaker.html +793 -916
  76. package/docs/DuploTraniBaseSpeedometer.html +628 -719
  77. package/docs/Hub.html +5621 -2397
  78. package/docs/HubLED.html +831 -944
  79. package/docs/LPF2Hub.html +1215 -1335
  80. package/docs/Light.html +831 -944
  81. package/docs/Mario.html +1255 -1420
  82. package/docs/MarioAccelerometer.html +834 -911
  83. package/docs/MarioBarcodeSensor.html +834 -911
  84. package/docs/MarioPantsSensor.html +711 -800
  85. package/docs/MediumLinearMotor.html +861 -1000
  86. package/docs/MotionSensor.html +711 -800
  87. package/docs/MoveHub.html +1255 -1420
  88. package/docs/MoveHubMediumLinearMotor.html +861 -1000
  89. package/docs/MoveHubTiltSensor.html +730 -814
  90. package/docs/PiezoBuzzer.html +732 -834
  91. package/docs/PoweredUP.html +4322 -0
  92. package/docs/RemoteControl.html +1255 -1420
  93. package/docs/RemoteControlButton.html +711 -800
  94. package/docs/SimpleMediumLinearMotor.html +628 -719
  95. package/docs/TachoMotor.html +1644 -1835
  96. package/docs/Technic3x3ColorLightMatrix.html +1181 -0
  97. package/docs/TechnicColorSensor.html +1008 -1099
  98. package/docs/TechnicDistanceSensor.html +939 -1027
  99. package/docs/TechnicForceSensor.html +883 -968
  100. package/docs/TechnicLargeAngularMotor.html +1254 -1439
  101. package/docs/TechnicLargeLinearMotor.html +1254 -1439
  102. package/docs/TechnicMediumAngularMotor.html +1254 -1439
  103. package/docs/TechnicMediumHub.html +1255 -1420
  104. package/docs/TechnicMediumHubAccelerometerSensor.html +749 -828
  105. package/docs/TechnicMediumHubGyroSensor.html +749 -828
  106. package/docs/TechnicMediumHubTiltSensor.html +1340 -831
  107. package/docs/TechnicSmallAngularMotor.html +2073 -0
  108. package/docs/TechnicXLargeLinearMotor.html +1254 -1439
  109. package/docs/TiltSensor.html +730 -814
  110. package/docs/TrainMotor.html +958 -1113
  111. package/docs/VoltageSensor.html +711 -800
  112. package/docs/WeDo2SmartHub.html +1112 -1221
  113. package/docs/consts.js.html +791 -0
  114. package/docs/devices_absolutemotor.js.html +97 -200
  115. package/docs/devices_basicmotor.js.html +91 -193
  116. package/docs/devices_colordistancesensor.js.html +184 -193
  117. package/docs/devices_currentsensor.js.html +89 -191
  118. package/docs/devices_device.js.html +99 -196
  119. package/docs/devices_duplotrainbasecolorsensor.js.html +104 -193
  120. package/docs/devices_duplotrainbasemotor.js.html +92 -194
  121. package/docs/devices_duplotrainbasespeaker.js.html +89 -191
  122. package/docs/devices_duplotrainbasespeedometer.js.html +89 -191
  123. package/docs/devices_hubled.js.html +89 -191
  124. package/docs/devices_light.js.html +90 -192
  125. package/docs/devices_marioaccelerometer.js.html +89 -191
  126. package/docs/devices_mariobarcodesensor.js.html +89 -191
  127. package/docs/devices_mariopantssensor.js.html +89 -191
  128. package/docs/devices_mediumlinearmotor.js.html +92 -194
  129. package/docs/devices_motionsensor.js.html +89 -191
  130. package/docs/devices_movehubmediumlinearmotor.js.html +92 -194
  131. package/docs/devices_movehubtiltsensor.js.html +89 -191
  132. package/docs/devices_piezobuzzer.js.html +89 -191
  133. package/docs/devices_remotecontrolbutton.js.html +89 -191
  134. package/docs/devices_simplemediumlinearmotor.js.html +92 -194
  135. package/docs/devices_tachomotor.js.html +99 -203
  136. package/docs/devices_technic3x3colorlightmatrix.js.html +190 -0
  137. package/docs/devices_techniccolorsensor.js.html +91 -192
  138. package/docs/devices_technicdistancesensor.js.html +89 -191
  139. package/docs/devices_technicforcesensor.js.html +89 -191
  140. package/docs/devices_techniclargeangularmotor.js.html +92 -194
  141. package/docs/devices_techniclargelinearmotor.js.html +92 -194
  142. package/docs/devices_technicmediumangularmotor.js.html +92 -194
  143. package/docs/devices_technicmediumhubaccelerometersensor.js.html +89 -191
  144. package/docs/devices_technicmediumhubgyrosensor.js.html +89 -191
  145. package/docs/devices_technicmediumhubtiltsensor.js.html +159 -193
  146. package/docs/devices_technicsmallangularmotor.js.html +148 -0
  147. package/docs/devices_technicxlargelinearmotor.js.html +92 -194
  148. package/docs/devices_tiltsensor.js.html +89 -191
  149. package/docs/devices_trainmotor.js.html +92 -194
  150. package/docs/devices_voltagesensor.js.html +89 -191
  151. package/docs/fonts/OpenSans-Bold-webfont.eot +0 -0
  152. package/docs/fonts/OpenSans-Bold-webfont.svg +1830 -0
  153. package/docs/fonts/OpenSans-Bold-webfont.woff +0 -0
  154. package/docs/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
  155. package/docs/fonts/OpenSans-BoldItalic-webfont.svg +1830 -0
  156. package/docs/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
  157. package/docs/fonts/OpenSans-Italic-webfont.eot +0 -0
  158. package/docs/fonts/OpenSans-Italic-webfont.svg +1830 -0
  159. package/docs/fonts/OpenSans-Italic-webfont.woff +0 -0
  160. package/docs/fonts/OpenSans-Light-webfont.eot +0 -0
  161. package/docs/fonts/OpenSans-Light-webfont.svg +1831 -0
  162. package/docs/fonts/OpenSans-Light-webfont.woff +0 -0
  163. package/docs/fonts/OpenSans-LightItalic-webfont.eot +0 -0
  164. package/docs/fonts/OpenSans-LightItalic-webfont.svg +1835 -0
  165. package/docs/fonts/OpenSans-LightItalic-webfont.woff +0 -0
  166. package/docs/fonts/OpenSans-Regular-webfont.eot +0 -0
  167. package/docs/fonts/OpenSans-Regular-webfont.svg +1831 -0
  168. package/docs/fonts/OpenSans-Regular-webfont.woff +0 -0
  169. package/docs/fonts/OpenSans-Semibold-webfont.eot +0 -0
  170. package/docs/fonts/OpenSans-Semibold-webfont.svg +1830 -0
  171. package/docs/fonts/OpenSans-Semibold-webfont.ttf +0 -0
  172. package/docs/fonts/OpenSans-Semibold-webfont.woff +0 -0
  173. package/docs/fonts/OpenSans-SemiboldItalic-webfont.eot +0 -0
  174. package/docs/fonts/OpenSans-SemiboldItalic-webfont.svg +1830 -0
  175. package/docs/fonts/OpenSans-SemiboldItalic-webfont.ttf +0 -0
  176. package/docs/fonts/OpenSans-SemiboldItalic-webfont.woff +0 -0
  177. package/docs/global.html +9829 -0
  178. package/docs/hubs_basehub.js.html +93 -191
  179. package/docs/hubs_duplotrainbase.js.html +89 -191
  180. package/docs/hubs_hub.js.html +90 -192
  181. package/docs/hubs_lpf2hub.js.html +108 -212
  182. package/docs/hubs_mario.js.html +89 -191
  183. package/docs/hubs_movehub.js.html +90 -192
  184. package/docs/hubs_remotecontrol.js.html +89 -191
  185. package/docs/hubs_technicmediumhub.js.html +90 -192
  186. package/docs/hubs_technicsmallhub.js.html +177 -0
  187. package/docs/hubs_wedo2smarthub.js.html +89 -191
  188. package/docs/icons/home.svg +4 -0
  189. package/docs/icons/search.svg +4 -0
  190. package/docs/index.html +143 -236
  191. package/docs/poweredup-browser.js.html +348 -0
  192. package/docs/poweredup-node.js.html +312 -0
  193. package/docs/scripts/linenumber.js +23 -0
  194. package/docs/scripts/pagelocation.js +89 -0
  195. package/docs/styles/collapse.css +27 -0
  196. package/docs/styles/jsdoc-default.css +953 -0
  197. package/docs/styles/prettify-jsdoc.css +111 -0
  198. package/docs/styles/prettify-tomorrow.css +15 -9
  199. package/jsdoc-template/braintree/CHANGELOG.md +31 -0
  200. package/jsdoc-template/braintree/LICENSE +27 -0
  201. package/jsdoc-template/braintree/README.md +90 -0
  202. package/jsdoc-template/braintree/package.json +39 -0
  203. package/jsdoc-template/braintree/publish.js +675 -0
  204. package/jsdoc-template/braintree/static/fonts/OpenSans-Bold-webfont.eot +0 -0
  205. package/jsdoc-template/braintree/static/fonts/OpenSans-Bold-webfont.svg +1830 -0
  206. package/jsdoc-template/braintree/static/fonts/OpenSans-Bold-webfont.woff +0 -0
  207. package/jsdoc-template/braintree/static/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
  208. package/jsdoc-template/braintree/static/fonts/OpenSans-BoldItalic-webfont.svg +1830 -0
  209. package/jsdoc-template/braintree/static/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
  210. package/jsdoc-template/braintree/static/fonts/OpenSans-Italic-webfont.eot +0 -0
  211. package/jsdoc-template/braintree/static/fonts/OpenSans-Italic-webfont.svg +1830 -0
  212. package/jsdoc-template/braintree/static/fonts/OpenSans-Italic-webfont.woff +0 -0
  213. package/jsdoc-template/braintree/static/fonts/OpenSans-Light-webfont.eot +0 -0
  214. package/jsdoc-template/braintree/static/fonts/OpenSans-Light-webfont.svg +1831 -0
  215. package/jsdoc-template/braintree/static/fonts/OpenSans-Light-webfont.woff +0 -0
  216. package/jsdoc-template/braintree/static/fonts/OpenSans-LightItalic-webfont.eot +0 -0
  217. package/jsdoc-template/braintree/static/fonts/OpenSans-LightItalic-webfont.svg +1835 -0
  218. package/jsdoc-template/braintree/static/fonts/OpenSans-LightItalic-webfont.woff +0 -0
  219. package/jsdoc-template/braintree/static/fonts/OpenSans-Regular-webfont.eot +0 -0
  220. package/jsdoc-template/braintree/static/fonts/OpenSans-Regular-webfont.svg +1831 -0
  221. package/jsdoc-template/braintree/static/fonts/OpenSans-Regular-webfont.woff +0 -0
  222. package/jsdoc-template/braintree/static/fonts/OpenSans-Semibold-webfont.eot +0 -0
  223. package/jsdoc-template/braintree/static/fonts/OpenSans-Semibold-webfont.svg +1830 -0
  224. package/jsdoc-template/braintree/static/fonts/OpenSans-Semibold-webfont.ttf +0 -0
  225. package/jsdoc-template/braintree/static/fonts/OpenSans-Semibold-webfont.woff +0 -0
  226. package/jsdoc-template/braintree/static/fonts/OpenSans-SemiboldItalic-webfont.eot +0 -0
  227. package/jsdoc-template/braintree/static/fonts/OpenSans-SemiboldItalic-webfont.svg +1830 -0
  228. package/jsdoc-template/braintree/static/fonts/OpenSans-SemiboldItalic-webfont.ttf +0 -0
  229. package/jsdoc-template/braintree/static/fonts/OpenSans-SemiboldItalic-webfont.woff +0 -0
  230. package/jsdoc-template/braintree/static/icons/home.svg +4 -0
  231. package/jsdoc-template/braintree/static/icons/search.svg +4 -0
  232. package/jsdoc-template/braintree/static/scripts/linenumber.js +23 -0
  233. package/jsdoc-template/braintree/static/scripts/pagelocation.js +89 -0
  234. package/jsdoc-template/braintree/static/styles/collapse.css +27 -0
  235. package/jsdoc-template/braintree/static/styles/jsdoc-default.css +953 -0
  236. package/jsdoc-template/braintree/static/styles/prettify-jsdoc.css +111 -0
  237. package/jsdoc-template/braintree/static/styles/prettify-tomorrow.css +138 -0
  238. package/jsdoc-template/braintree/tmpl/augments.tmpl +10 -0
  239. package/jsdoc-template/braintree/tmpl/container.tmpl +213 -0
  240. package/jsdoc-template/braintree/tmpl/details.tmpl +223 -0
  241. package/jsdoc-template/braintree/tmpl/example.tmpl +2 -0
  242. package/jsdoc-template/braintree/tmpl/examples.tmpl +14 -0
  243. package/jsdoc-template/braintree/tmpl/exceptions.tmpl +28 -0
  244. package/jsdoc-template/braintree/tmpl/layout.tmpl +150 -0
  245. package/jsdoc-template/braintree/tmpl/mainpage.tmpl +9 -0
  246. package/jsdoc-template/braintree/tmpl/members.tmpl +38 -0
  247. package/jsdoc-template/braintree/tmpl/method.tmpl +128 -0
  248. package/jsdoc-template/braintree/tmpl/params.tmpl +125 -0
  249. package/jsdoc-template/braintree/tmpl/properties.tmpl +111 -0
  250. package/jsdoc-template/braintree/tmpl/returns.tmpl +17 -0
  251. package/jsdoc-template/braintree/tmpl/source.tmpl +9 -0
  252. package/jsdoc-template/braintree/tmpl/tutorial.tmpl +23 -0
  253. package/jsdoc-template/braintree/tmpl/type.tmpl +11 -0
  254. package/package.json +14 -15
  255. package/src/color.ts +20 -0
  256. package/src/consts.ts +47 -26
  257. package/src/devices/absolutemotor.ts +2 -3
  258. package/src/devices/colordistancesensor.ts +98 -3
  259. package/src/devices/device.ts +9 -6
  260. package/src/devices/duplotrainbasecolorsensor.ts +17 -2
  261. package/src/devices/tachomotor.ts +4 -6
  262. package/src/devices/technic3x3colorlightmatrix.ts +64 -0
  263. package/src/devices/techniccolorsensor.ts +2 -1
  264. package/src/devices/technicmediumhubtiltsensor.ts +75 -3
  265. package/src/devices/technicsmallangularmotor.ts +17 -0
  266. package/src/hubs/basehub.ts +4 -0
  267. package/src/hubs/lpf2hub.ts +7 -11
  268. package/src/hubs/technicmediumhub.ts +1 -1
  269. package/src/hubs/technicsmallhub.ts +60 -0
  270. package/src/index-browser.ts +6 -0
  271. package/src/index-node.ts +6 -0
  272. package/src/poweredup-browser.ts +8 -1
  273. package/src/poweredup-node.ts +7 -1
  274. package/src/utils.ts +7 -0
  275. package/docs/classes.list.html +0 -8654
  276. package/docs/fonts/glyphicons-halflings-regular.eot +0 -0
  277. package/docs/fonts/glyphicons-halflings-regular.svg +0 -288
  278. package/docs/fonts/glyphicons-halflings-regular.ttf +0 -0
  279. package/docs/fonts/glyphicons-halflings-regular.woff +0 -0
  280. package/docs/fonts/glyphicons-halflings-regular.woff2 +0 -0
  281. package/docs/img/glyphicons-halflings-white.png +0 -0
  282. package/docs/img/glyphicons-halflings.png +0 -0
  283. package/docs/quicksearch.html +0 -31
  284. package/docs/scripts/docstrap.lib.js +0 -11
  285. package/docs/scripts/fulltext-search-ui.js +0 -89
  286. package/docs/scripts/fulltext-search.js +0 -36
  287. package/docs/scripts/lunr.min.js +0 -6
  288. package/docs/scripts/prettify/Apache-License-2.0.txt +0 -202
  289. package/docs/scripts/prettify/jquery.min.js +0 -6
  290. package/docs/scripts/prettify/lang-css.js +0 -21
  291. package/docs/scripts/prettify/prettify.js +0 -496
  292. package/docs/scripts/sunlight.js +0 -1157
  293. package/docs/scripts/toc.js +0 -203
  294. package/docs/styles/darkstrap.css +0 -960
  295. package/docs/styles/site.cerulean.css +0 -7008
  296. package/docs/styles/site.cosmo.css +0 -7061
  297. package/docs/styles/site.cyborg.css +0 -7048
  298. package/docs/styles/site.darkly.css +0 -7171
  299. package/docs/styles/site.darkstrap.css +0 -5638
  300. package/docs/styles/site.dibs-bootstrap.css +0 -5899
  301. package/docs/styles/site.flatly.css +0 -7147
  302. package/docs/styles/site.journal.css +0 -6973
  303. package/docs/styles/site.lumen.css +0 -7298
  304. package/docs/styles/site.paper.css +0 -7623
  305. package/docs/styles/site.readable.css +0 -6997
  306. package/docs/styles/site.sandstone.css +0 -7035
  307. package/docs/styles/site.simplex.css +0 -7023
  308. package/docs/styles/site.slate.css +0 -7343
  309. package/docs/styles/site.spacelab.css +0 -7055
  310. package/docs/styles/site.superhero.css +0 -7131
  311. package/docs/styles/site.united.css +0 -6895
  312. package/docs/styles/site.yeti.css +0 -7195
  313. package/docs/styles/sunlight.dark.css +0 -345
  314. package/docs/styles/sunlight.default.css +0 -344
package/docs/BaseHub.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: BaseHub</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
+ BaseHub - 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>
66
+ </ul>
67
+ </div>
61
68
 
62
- </div>
63
- </div>
69
+ <nav>
70
+ <h3 class="reference-title">
71
+ node-poweredup Reference
72
+ </h3>
64
73
 
74
+
65
75
 
66
- <div class="container" id="toc-content">
67
- <div class="row">
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>
68
78
 
69
-
70
- <div class="col-md-8">
71
-
72
- <div id="main">
73
-
79
+ <div id="main">
80
+
81
+ <h1 class="page-title">
82
+ BaseHub
83
+ </h1>
84
+
74
85
 
75
- <h1 class="page-title">Class: BaseHub</h1>
76
- <section>
86
+
77
87
 
78
- <header>
88
+ <section>
89
+ <header>
79
90
 
80
- <h2>
91
+ <h2>
92
+
81
93
  BaseHub
82
- </h2>
83
94
 
84
-
85
- </header>
95
+ </h2>
86
96
 
97
+
98
+
99
+ </header>
87
100
 
88
- <article>
101
+ <article>
89
102
  <div class="container-overview">
90
-
103
+
91
104
 
92
- <hr>
93
- <dt>
94
- <h4 class="name" id="BaseHub"><span class="type-signature"></span>new BaseHub()</h4>
95
-
96
-
97
- </dt>
98
- <dd>
99
105
 
100
-
101
106
 
102
-
107
+
103
108
 
104
-
109
+ <span class='name-container'>
110
+ <a class="link-icon" href="#BaseHub">
111
+ <svg height="20" width="20" style="fill: black;">
112
+ <use xlink:href="#linkIcon"></use>
113
+ </svg>
114
+ </a>
115
+ <h4 class="name" id="BaseHub">
116
+ <span class="type-signature"></span>new BaseHub<span class="signature">()</span><span class="type-signature"></span>
117
+ </h4>
118
+ </span>
105
119
 
106
-
107
-
120
+
108
121
 
109
-
110
- <dl class="details">
111
-
112
122
 
113
-
114
123
 
115
-
116
124
 
117
-
118
125
 
119
-
120
126
 
121
-
122
127
 
123
-
124
128
 
125
-
126
129
 
127
-
128
130
 
129
-
130
131
 
131
-
132
132
 
133
-
133
+ <dl class="details">
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
134
148
 
135
-
149
+
136
150
 
151
+
137
152
 
153
+
138
154
 
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_basehub.js.html">hubs/basehub.js</a>,
145
- <a href="hubs_basehub.js.html#sunlight-1-line-59">line 59</a>
146
- </li>
147
- </ul>
148
- </dd>
149
-
155
+
150
156
 
151
-
157
+
152
158
 
153
-
159
+
160
+ <dt class="tag-source">Source:</dt>
161
+ <dd class="tag-source">
162
+ <ul class="dummy">
163
+ <li>
164
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line61">line 61</a>
165
+ </li>
166
+ </ul>
167
+ </dd>
168
+
154
169
 
155
-
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>EventEmitter</li>
185
- </ul>
199
+ <ul>
200
+ <li>EventEmitter</li>
201
+ </ul>
186
202
 
187
203
 
188
204
 
@@ -191,1229 +207,1128 @@
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
+
211
225
 
212
-
213
226
 
214
-
215
- <dl class="details">
216
-
217
227
 
218
- <h5 class="subsection-title">Properties:</h5>
219
228
 
220
- <dl>
221
229
 
222
- <table class="props table table-striped">
223
- <thead>
230
+ <h5 class="subsection-title">Properties:</h5>
231
+
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
-
288
+ <dl class="details">
276
289
 
277
-
290
+
278
291
 
279
-
292
+
280
293
 
281
-
294
+
282
295
 
283
-
296
+
297
+
298
+
284
299
 
285
-
300
+
286
301
 
287
-
302
+
288
303
 
289
-
304
+
290
305
 
291
-
306
+
292
307
 
293
-
308
+
294
309
 
310
+
295
311
 
312
+
296
313
 
297
-
298
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
299
- <dd class="tag-source">
300
- <ul class="dummy">
301
- <li>
302
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
303
- <a href="hubs_basehub.js.html#sunlight-1-line-141">line 141</a>
304
- </li>
305
- </ul>
306
- </dd>
307
-
314
+
315
+ <dt class="tag-source">Source:</dt>
316
+ <dd class="tag-source">
317
+ <ul class="dummy">
318
+ <li>
319
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line143">line 143</a>
320
+ </li>
321
+ </ul>
322
+ </dd>
323
+
308
324
 
309
-
325
+
310
326
 
311
-
327
+
312
328
 
313
-
329
+
314
330
  </dl>
315
331
 
316
332
 
317
-
318
- </dd>
319
333
 
334
+
335
+
336
+
337
+
320
338
 
321
339
 
322
- <hr>
323
- <dt class="name" id="firmwareVersion">
324
- <h4 id="firmwareVersion"><span class="type-signature">&lt;readonly> </span>firmwareVersion<span class="type-signature"></span></h4>
325
340
 
326
-
327
- </dt>
328
- <dd>
329
-
341
+ <h4 class="name" id="firmwareVersion">
342
+ <span class="type-signature">(readonly) </span>firmwareVersion<span class="type-signature"></span>
343
+ </h4>
344
+
345
+
346
+
347
+
330
348
 
331
-
332
349
 
333
-
334
- <dl class="details">
335
-
336
350
 
337
- <h5 class="subsection-title">Properties:</h5>
351
+ <h5 class="subsection-title">Properties:</h5>
338
352
 
339
- <dl>
353
+
340
354
 
341
- <table class="props table table-striped">
342
- <thead>
355
+ <table class="props">
356
+ <thead>
343
357
  <tr>
344
-
358
+
345
359
  <th>Name</th>
346
-
360
+
347
361
 
348
- <th>Type</th>
362
+ <th>Type</th>
349
363
 
350
-
364
+
351
365
 
352
-
366
+
353
367
 
354
- <th class="last">Description</th>
368
+ <th class="last">Description</th>
355
369
  </tr>
356
- </thead>
370
+ </thead>
357
371
 
358
- <tbody>
372
+ <tbody>
359
373
 
360
374
 
361
- <tr>
362
-
363
- <td class="name"><code>firmwareVersion</code></td>
364
-
375
+ <tr>
376
+
377
+ <td class="name"><code>firmwareVersion</code></td>
378
+
365
379
 
366
- <td class="type">
367
-
368
-
369
- <span class="param-type">string</span>
380
+ <td class="type">
381
+
382
+
383
+ <span class="param-type">
384
+ string
385
+ </span>
370
386
 
387
+
371
388
 
372
389
 
373
-
374
- </td>
390
+
391
+ </td>
375
392
 
376
-
393
+
377
394
 
378
-
395
+
379
396
 
380
- <td class="description last"><p>Firmware version of the hub</p></td>
381
- </tr>
397
+ <td class="description last">
398
+ <p>Firmware version of the hub</p>
399
+ </td>
400
+ </tr>
382
401
 
383
-
384
- </tbody>
402
+
403
+ </tbody>
385
404
  </table>
386
- </dl>
387
405
 
388
-
389
406
 
390
-
391
407
 
392
-
393
408
 
394
-
409
+ <dl class="details">
410
+
411
+
395
412
 
396
-
413
+
397
414
 
398
-
415
+
399
416
 
400
-
417
+
401
418
 
402
-
419
+
403
420
 
404
-
421
+
405
422
 
406
-
423
+
407
424
 
408
-
425
+
409
426
 
410
-
427
+
411
428
 
412
-
429
+
413
430
 
431
+
414
432
 
433
+
415
434
 
416
-
417
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
418
- <dd class="tag-source">
419
- <ul class="dummy">
420
- <li>
421
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
422
- <a href="hubs_basehub.js.html#sunlight-1-line-113">line 113</a>
423
- </li>
424
- </ul>
425
- </dd>
426
-
435
+
436
+ <dt class="tag-source">Source:</dt>
437
+ <dd class="tag-source">
438
+ <ul class="dummy">
439
+ <li>
440
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line115">line 115</a>
441
+ </li>
442
+ </ul>
443
+ </dd>
444
+
427
445
 
428
-
446
+
429
447
 
430
-
448
+
431
449
 
432
-
450
+
433
451
  </dl>
434
452
 
435
453
 
436
-
437
- </dd>
438
454
 
455
+
456
+
457
+
458
+
439
459
 
440
460
 
441
- <hr>
442
- <dt class="name" id="hardwareVersion">
443
- <h4 id="hardwareVersion"><span class="type-signature">&lt;readonly> </span>hardwareVersion<span class="type-signature"></span></h4>
444
461
 
445
-
446
- </dt>
447
- <dd>
448
-
462
+ <h4 class="name" id="hardwareVersion">
463
+ <span class="type-signature">(readonly) </span>hardwareVersion<span class="type-signature"></span>
464
+ </h4>
465
+
466
+
467
+
449
468
 
450
-
451
469
 
452
-
453
- <dl class="details">
454
-
455
470
 
456
- <h5 class="subsection-title">Properties:</h5>
457
471
 
458
- <dl>
472
+ <h5 class="subsection-title">Properties:</h5>
459
473
 
460
- <table class="props table table-striped">
461
- <thead>
474
+
475
+
476
+ <table class="props">
477
+ <thead>
462
478
  <tr>
463
-
479
+
464
480
  <th>Name</th>
465
-
481
+
466
482
 
467
- <th>Type</th>
483
+ <th>Type</th>
468
484
 
469
-
485
+
470
486
 
471
-
487
+
472
488
 
473
- <th class="last">Description</th>
489
+ <th class="last">Description</th>
474
490
  </tr>
475
- </thead>
491
+ </thead>
476
492
 
477
- <tbody>
493
+ <tbody>
478
494
 
479
495
 
480
- <tr>
481
-
482
- <td class="name"><code>hardwareVersion</code></td>
483
-
496
+ <tr>
497
+
498
+ <td class="name"><code>hardwareVersion</code></td>
499
+
484
500
 
485
- <td class="type">
486
-
487
-
488
- <span class="param-type">string</span>
501
+ <td class="type">
502
+
503
+
504
+ <span class="param-type">
505
+ string
506
+ </span>
489
507
 
508
+
490
509
 
491
510
 
492
-
493
- </td>
511
+
512
+ </td>
494
513
 
495
-
514
+
496
515
 
497
-
516
+
498
517
 
499
- <td class="description last"><p>Hardware version of the hub</p></td>
500
- </tr>
518
+ <td class="description last">
519
+ <p>Hardware version of the hub</p>
520
+ </td>
521
+ </tr>
501
522
 
502
-
503
- </tbody>
523
+
524
+ </tbody>
504
525
  </table>
505
- </dl>
506
526
 
507
-
508
527
 
509
-
510
528
 
511
-
512
529
 
513
-
530
+ <dl class="details">
514
531
 
515
-
532
+
516
533
 
517
-
534
+
518
535
 
519
-
536
+
520
537
 
521
-
538
+
522
539
 
523
-
540
+
524
541
 
525
-
542
+
526
543
 
527
-
544
+
528
545
 
529
-
546
+
530
547
 
531
-
548
+
532
549
 
550
+
533
551
 
552
+
534
553
 
535
-
536
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
537
- <dd class="tag-source">
538
- <ul class="dummy">
539
- <li>
540
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
541
- <a href="hubs_basehub.js.html#sunlight-1-line-120">line 120</a>
542
- </li>
543
- </ul>
544
- </dd>
545
-
554
+
546
555
 
547
-
556
+
557
+ <dt class="tag-source">Source:</dt>
558
+ <dd class="tag-source">
559
+ <ul class="dummy">
560
+ <li>
561
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line122">line 122</a>
562
+ </li>
563
+ </ul>
564
+ </dd>
565
+
548
566
 
549
-
567
+
550
568
 
551
-
569
+
570
+
571
+
552
572
  </dl>
553
573
 
554
574
 
555
-
556
- </dd>
557
575
 
576
+
577
+
578
+
579
+
558
580
 
559
581
 
560
- <hr>
561
- <dt class="name" id="name">
562
- <h4 id="name"><span class="type-signature">&lt;readonly> </span>name<span class="type-signature"></span></h4>
563
582
 
564
-
565
- </dt>
566
- <dd>
567
-
583
+ <h4 class="name" id="name">
584
+ <span class="type-signature">(readonly) </span>name<span class="type-signature"></span>
585
+ </h4>
586
+
568
587
 
569
-
570
588
 
571
-
572
- <dl class="details">
573
-
574
589
 
575
- <h5 class="subsection-title">Properties:</h5>
576
590
 
577
- <dl>
578
591
 
579
- <table class="props table table-striped">
580
- <thead>
592
+
593
+ <h5 class="subsection-title">Properties:</h5>
594
+
595
+
596
+
597
+ <table class="props">
598
+ <thead>
581
599
  <tr>
582
-
600
+
583
601
  <th>Name</th>
584
-
602
+
585
603
 
586
- <th>Type</th>
604
+ <th>Type</th>
587
605
 
588
-
606
+
589
607
 
590
-
608
+
591
609
 
592
- <th class="last">Description</th>
610
+ <th class="last">Description</th>
593
611
  </tr>
594
- </thead>
612
+ </thead>
595
613
 
596
- <tbody>
614
+ <tbody>
597
615
 
598
616
 
599
- <tr>
600
-
601
- <td class="name"><code>name</code></td>
602
-
617
+ <tr>
618
+
619
+ <td class="name"><code>name</code></td>
620
+
603
621
 
604
- <td class="type">
605
-
606
-
607
- <span class="param-type">string</span>
622
+ <td class="type">
623
+
624
+
625
+ <span class="param-type">
626
+ string
627
+ </span>
608
628
 
629
+
609
630
 
610
631
 
611
-
612
- </td>
632
+
633
+ </td>
613
634
 
614
-
635
+
615
636
 
616
-
637
+
617
638
 
618
- <td class="description last"><p>Name of the hub</p></td>
619
- </tr>
639
+ <td class="description last">
640
+ <p>Name of the hub</p>
641
+ </td>
642
+ </tr>
620
643
 
621
-
622
- </tbody>
644
+
645
+ </tbody>
623
646
  </table>
624
- </dl>
625
647
 
626
-
627
648
 
628
-
629
649
 
630
-
631
650
 
632
-
651
+ <dl class="details">
633
652
 
634
-
653
+
635
654
 
636
-
655
+
637
656
 
638
-
657
+
639
658
 
640
-
659
+
641
660
 
642
-
661
+
643
662
 
644
-
663
+
645
664
 
646
-
665
+
647
666
 
648
-
667
+
649
668
 
650
-
669
+
651
670
 
671
+
652
672
 
673
+
653
674
 
654
-
655
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
656
- <dd class="tag-source">
657
- <ul class="dummy">
658
- <li>
659
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
660
- <a href="hubs_basehub.js.html#sunlight-1-line-92">line 92</a>
661
- </li>
662
- </ul>
663
- </dd>
664
-
675
+
665
676
 
666
-
677
+
678
+ <dt class="tag-source">Source:</dt>
679
+ <dd class="tag-source">
680
+ <ul class="dummy">
681
+ <li>
682
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line94">line 94</a>
683
+ </li>
684
+ </ul>
685
+ </dd>
686
+
667
687
 
668
-
688
+
669
689
 
670
-
690
+
691
+
692
+
671
693
  </dl>
672
694
 
673
695
 
674
-
675
- </dd>
676
696
 
697
+
698
+
699
+
700
+
677
701
 
678
702
 
679
- <hr>
680
- <dt class="name" id="ports">
681
- <h4 id="ports"><span class="type-signature">&lt;readonly> </span>ports<span class="type-signature"></span></h4>
682
703
 
683
-
684
- </dt>
685
- <dd>
686
-
704
+ <h4 class="name" id="ports">
705
+ <span class="type-signature">(readonly) </span>ports<span class="type-signature"></span>
706
+ </h4>
707
+
708
+
709
+
710
+
687
711
 
688
-
689
712
 
690
-
691
- <dl class="details">
692
-
693
713
 
694
- <h5 class="subsection-title">Properties:</h5>
714
+ <h5 class="subsection-title">Properties:</h5>
695
715
 
696
- <dl>
716
+
697
717
 
698
- <table class="props table table-striped">
699
- <thead>
718
+ <table class="props">
719
+ <thead>
700
720
  <tr>
701
-
721
+
702
722
  <th>Name</th>
703
-
723
+
704
724
 
705
- <th>Type</th>
725
+ <th>Type</th>
706
726
 
707
-
727
+
708
728
 
709
-
729
+
710
730
 
711
- <th class="last">Description</th>
731
+ <th class="last">Description</th>
712
732
  </tr>
713
- </thead>
733
+ </thead>
714
734
 
715
- <tbody>
735
+ <tbody>
716
736
 
717
737
 
718
- <tr>
719
-
720
- <td class="name"><code>ports</code></td>
721
-
738
+ <tr>
739
+
740
+ <td class="name"><code>ports</code></td>
741
+
722
742
 
723
- <td class="type">
724
-
725
-
726
- <span class="param-type">Array.&lt;string></span>
743
+ <td class="type">
744
+
745
+
746
+ <span class="param-type">
747
+ Array.&lt;string>
748
+ </span>
727
749
 
750
+
728
751
 
729
752
 
730
-
731
- </td>
753
+
754
+ </td>
732
755
 
733
-
756
+
734
757
 
735
-
758
+
736
759
 
737
- <td class="description last"><p>Array of port names</p></td>
738
- </tr>
760
+ <td class="description last">
761
+ <p>Array of port names</p>
762
+ </td>
763
+ </tr>
739
764
 
740
-
741
- </tbody>
765
+
766
+ </tbody>
742
767
  </table>
743
- </dl>
744
768
 
745
-
746
769
 
747
-
748
770
 
749
-
750
771
 
751
-
772
+ <dl class="details">
752
773
 
753
-
774
+
754
775
 
755
-
776
+
756
777
 
757
-
778
+
758
779
 
759
-
780
+
760
781
 
761
-
782
+
762
783
 
763
-
784
+
764
785
 
765
-
786
+
766
787
 
767
-
788
+
768
789
 
769
-
790
+
770
791
 
792
+
771
793
 
794
+
772
795
 
773
-
774
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
775
- <dd class="tag-source">
776
- <ul class="dummy">
777
- <li>
778
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
779
- <a href="hubs_basehub.js.html#sunlight-1-line-106">line 106</a>
780
- </li>
781
- </ul>
782
- </dd>
783
-
796
+
784
797
 
785
-
798
+
799
+ <dt class="tag-source">Source:</dt>
800
+ <dd class="tag-source">
801
+ <ul class="dummy">
802
+ <li>
803
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line108">line 108</a>
804
+ </li>
805
+ </ul>
806
+ </dd>
807
+
786
808
 
787
-
809
+
788
810
 
789
-
811
+
812
+
813
+
790
814
  </dl>
791
815
 
792
816
 
793
-
794
- </dd>
795
817
 
818
+
819
+
820
+
821
+
796
822
 
797
823
 
798
- <hr>
799
- <dt class="name" id="primaryMACAddress">
800
- <h4 id="primaryMACAddress"><span class="type-signature">&lt;readonly> </span>primaryMACAddress<span class="type-signature"></span></h4>
801
824
 
802
-
803
- </dt>
804
- <dd>
805
-
825
+ <h4 class="name" id="primaryMACAddress">
826
+ <span class="type-signature">(readonly) </span>primaryMACAddress<span class="type-signature"></span>
827
+ </h4>
828
+
829
+
830
+
806
831
 
807
-
808
832
 
809
-
810
- <dl class="details">
811
-
812
833
 
813
- <h5 class="subsection-title">Properties:</h5>
814
834
 
815
- <dl>
835
+ <h5 class="subsection-title">Properties:</h5>
816
836
 
817
- <table class="props table table-striped">
818
- <thead>
837
+
838
+
839
+ <table class="props">
840
+ <thead>
819
841
  <tr>
820
-
842
+
821
843
  <th>Name</th>
822
-
844
+
823
845
 
824
- <th>Type</th>
846
+ <th>Type</th>
825
847
 
826
-
848
+
827
849
 
828
-
850
+
829
851
 
830
- <th class="last">Description</th>
852
+ <th class="last">Description</th>
831
853
  </tr>
832
- </thead>
854
+ </thead>
833
855
 
834
- <tbody>
856
+ <tbody>
835
857
 
836
858
 
837
- <tr>
838
-
839
- <td class="name"><code>primaryMACAddress</code></td>
840
-
859
+ <tr>
860
+
861
+ <td class="name"><code>primaryMACAddress</code></td>
862
+
841
863
 
842
- <td class="type">
843
-
844
-
845
- <span class="param-type">string</span>
864
+ <td class="type">
865
+
866
+
867
+ <span class="param-type">
868
+ string
869
+ </span>
846
870
 
871
+
847
872
 
848
873
 
849
-
850
- </td>
874
+
875
+ </td>
851
876
 
852
-
877
+
853
878
 
854
-
879
+
855
880
 
856
- <td class="description last"><p>Primary MAC address of the hub</p></td>
857
- </tr>
881
+ <td class="description last">
882
+ <p>Primary MAC address of the hub</p>
883
+ </td>
884
+ </tr>
858
885
 
859
-
860
- </tbody>
886
+
887
+ </tbody>
861
888
  </table>
862
- </dl>
863
889
 
864
-
865
890
 
866
-
867
891
 
868
-
869
-
870
-
871
-
872
-
873
892
 
874
-
893
+ <dl class="details">
875
894
 
876
-
895
+
877
896
 
878
-
897
+
879
898
 
880
-
899
+
881
900
 
882
-
901
+
883
902
 
884
-
903
+
885
904
 
886
-
905
+
887
906
 
888
-
907
+
889
908
 
909
+
890
910
 
911
+
891
912
 
892
-
893
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
894
- <dd class="tag-source">
895
- <ul class="dummy">
896
- <li>
897
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
898
- <a href="hubs_basehub.js.html#sunlight-1-line-127">line 127</a>
899
- </li>
900
- </ul>
901
- </dd>
902
-
913
+
903
914
 
904
-
915
+
905
916
 
906
-
917
+
907
918
 
908
-
909
- </dl>
919
+
920
+ <dt class="tag-source">Source:</dt>
921
+ <dd class="tag-source">
922
+ <ul class="dummy">
923
+ <li>
924
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line129">line 129</a>
925
+ </li>
926
+ </ul>
927
+ </dd>
928
+
910
929
 
930
+
911
931
 
912
-
913
- </dd>
932
+
914
933
 
915
-
916
-
917
- <hr>
918
- <dt class="name" id="rssi">
919
- <h4 id="rssi"><span class="type-signature">&lt;readonly> </span>rssi<span class="type-signature"></span></h4>
934
+
935
+ </dl>
920
936
 
921
-
922
- </dt>
923
- <dd>
924
-
925
937
 
926
-
927
938
 
928
-
929
- <dl class="details">
930
-
931
939
 
932
- <h5 class="subsection-title">Properties:</h5>
933
940
 
934
- <dl>
935
941
 
936
- <table class="props table table-striped">
937
- <thead>
938
- <tr>
939
-
940
- <th>Name</th>
942
+
941
943
 
944
+
942
945
 
943
- <th>Type</th>
946
+ <h4 class="name" id="rssi">
947
+ <span class="type-signature">(readonly) </span>rssi<span class="type-signature"></span>
948
+ </h4>
944
949
 
945
-
946
950
 
947
-
948
951
 
949
- <th class="last">Description</th>
950
- </tr>
951
- </thead>
952
952
 
953
- <tbody>
954
-
955
953
 
956
- <tr>
957
-
958
- <td class="name"><code>rssi</code></td>
959
-
960
954
 
961
- <td class="type">
962
-
963
-
964
- <span class="param-type">number</span>
965
955
 
956
+ <h5 class="subsection-title">Properties:</h5>
966
957
 
958
+
967
959
 
968
-
969
- </td>
960
+ <table class="props">
961
+ <thead>
962
+ <tr>
963
+
964
+ <th>Name</th>
965
+
970
966
 
971
-
967
+ <th>Type</th>
972
968
 
973
-
969
+
974
970
 
975
- <td class="description last"><p>Signal strength of the hub</p></td>
976
- </tr>
971
+
977
972
 
978
-
979
- </tbody>
980
- </table>
981
- </dl>
973
+ <th class="last">Description</th>
974
+ </tr>
975
+ </thead>
982
976
 
977
+ <tbody>
983
978
 
984
979
 
985
-
986
-
987
-
988
-
989
-
980
+ <tr>
981
+
982
+ <td class="name"><code>rssi</code></td>
983
+
990
984
 
991
-
985
+ <td class="type">
986
+
987
+
988
+ <span class="param-type">
989
+ number
990
+ </span>
992
991
 
993
992
 
994
993
 
995
-
996
994
 
997
-
998
-
999
-
995
+
996
+ </td>
1000
997
 
1001
-
998
+
1002
999
 
1003
-
1000
+
1004
1001
 
1005
-
1002
+ <td class="description last">
1003
+ <p>Signal strength of the hub</p>
1004
+ </td>
1005
+ </tr>
1006
1006
 
1007
-
1007
+
1008
+ </tbody>
1009
+ </table>
1008
1010
 
1009
1011
 
1010
1012
 
1011
-
1012
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
1013
- <dd class="tag-source">
1014
- <ul class="dummy">
1015
- <li>
1016
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
1017
- <a href="hubs_basehub.js.html#sunlight-1-line-148">line 148</a>
1018
- </li>
1019
- </ul>
1020
- </dd>
1021
-
1022
1013
 
1023
-
1014
+ <dl class="details">
1024
1015
 
1025
-
1016
+
1026
1017
 
1027
-
1028
- </dl>
1018
+
1029
1019
 
1020
+
1030
1021
 
1031
-
1032
- </dd>
1022
+
1033
1023
 
1034
-
1035
-
1036
- <hr>
1037
- <dt class="name" id="type">
1038
- <h4 id="type"><span class="type-signature">&lt;readonly> </span>type<span class="type-signature"></span></h4>
1024
+
1039
1025
 
1040
-
1041
- </dt>
1042
- <dd>
1043
-
1026
+
1044
1027
 
1045
-
1028
+
1046
1029
 
1047
-
1048
- <dl class="details">
1049
-
1030
+
1050
1031
 
1051
- <h5 class="subsection-title">Properties:</h5>
1032
+
1052
1033
 
1053
- <dl>
1034
+
1054
1035
 
1055
- <table class="props table table-striped">
1056
- <thead>
1057
- <tr>
1058
-
1059
- <th>Name</th>
1060
-
1036
+
1061
1037
 
1062
- <th>Type</th>
1038
+
1063
1039
 
1064
-
1040
+
1041
+ <dt class="tag-source">Source:</dt>
1042
+ <dd class="tag-source">
1043
+ <ul class="dummy">
1044
+ <li>
1045
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line150">line 150</a>
1046
+ </li>
1047
+ </ul>
1048
+ </dd>
1049
+
1065
1050
 
1066
-
1051
+
1067
1052
 
1068
- <th class="last">Description</th>
1069
- </tr>
1070
- </thead>
1053
+
1071
1054
 
1072
- <tbody>
1073
-
1055
+
1056
+ </dl>
1074
1057
 
1075
- <tr>
1076
-
1077
- <td class="name"><code>type</code></td>
1078
-
1079
1058
 
1080
- <td class="type">
1081
-
1082
-
1083
- <span class="param-type">string</span>
1084
1059
 
1085
1060
 
1086
1061
 
1087
-
1088
- </td>
1089
1062
 
1063
+
1064
+
1090
1065
 
1091
1066
 
1092
-
1067
+ <h4 class="name" id="type">
1068
+ <span class="type-signature">(readonly) </span>type<span class="type-signature"></span>
1069
+ </h4>
1093
1070
 
1094
- <td class="description last"><p>Hub type</p></td>
1095
- </tr>
1096
1071
 
1097
-
1098
- </tbody>
1099
- </table>
1100
- </dl>
1101
1072
 
1102
-
1103
1073
 
1104
-
1105
1074
 
1106
-
1107
1075
 
1108
-
1109
1076
 
1110
-
1077
+ <h5 class="subsection-title">Properties:</h5>
1111
1078
 
1112
-
1079
+
1113
1080
 
1114
-
1081
+ <table class="props">
1082
+ <thead>
1083
+ <tr>
1084
+
1085
+ <th>Name</th>
1086
+
1115
1087
 
1116
-
1088
+ <th>Type</th>
1117
1089
 
1118
-
1090
+
1119
1091
 
1120
-
1092
+
1121
1093
 
1122
-
1094
+ <th class="last">Description</th>
1095
+ </tr>
1096
+ </thead>
1123
1097
 
1124
-
1098
+ <tbody>
1099
+
1125
1100
 
1126
-
1101
+ <tr>
1102
+
1103
+ <td class="name"><code>type</code></td>
1104
+
1127
1105
 
1106
+ <td class="type">
1107
+
1108
+
1109
+ <span class="param-type">
1110
+ string
1111
+ </span>
1128
1112
 
1113
+
1129
1114
 
1130
-
1131
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
1132
- <dd class="tag-source">
1133
- <ul class="dummy">
1134
- <li>
1135
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
1136
- <a href="hubs_basehub.js.html#sunlight-1-line-99">line 99</a>
1137
- </li>
1138
- </ul>
1139
- </dd>
1140
-
1141
1115
 
1142
-
1116
+
1117
+ </td>
1143
1118
 
1144
-
1119
+
1145
1120
 
1146
-
1147
- </dl>
1121
+
1148
1122
 
1123
+ <td class="description last">
1124
+ <p>Hub type</p>
1125
+ </td>
1126
+ </tr>
1149
1127
 
1150
-
1151
- </dd>
1128
+
1129
+ </tbody>
1130
+ </table>
1152
1131
 
1153
-
1154
-
1155
- <hr>
1156
- <dt class="name" id="uuid">
1157
- <h4 id="uuid"><span class="type-signature">&lt;readonly> </span>uuid<span class="type-signature"></span></h4>
1158
1132
 
1159
-
1160
- </dt>
1161
- <dd>
1162
-
1163
1133
 
1164
-
1165
1134
 
1166
-
1167
1135
  <dl class="details">
1168
-
1169
-
1170
- <h5 class="subsection-title">Properties:</h5>
1171
1136
 
1172
- <dl>
1137
+
1173
1138
 
1174
- <table class="props table table-striped">
1175
- <thead>
1176
- <tr>
1177
-
1178
- <th>Name</th>
1179
-
1139
+
1180
1140
 
1181
- <th>Type</th>
1141
+
1182
1142
 
1183
-
1143
+
1184
1144
 
1185
-
1145
+
1186
1146
 
1187
- <th class="last">Description</th>
1188
- </tr>
1189
- </thead>
1147
+
1190
1148
 
1191
- <tbody>
1192
-
1149
+
1193
1150
 
1194
- <tr>
1195
-
1196
- <td class="name"><code>uuid</code></td>
1197
-
1151
+
1198
1152
 
1199
- <td class="type">
1200
-
1201
-
1202
- <span class="param-type">string</span>
1153
+
1203
1154
 
1155
+
1204
1156
 
1157
+
1205
1158
 
1206
-
1207
- </td>
1159
+
1208
1160
 
1209
-
1161
+
1162
+ <dt class="tag-source">Source:</dt>
1163
+ <dd class="tag-source">
1164
+ <ul class="dummy">
1165
+ <li>
1166
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line101">line 101</a>
1167
+ </li>
1168
+ </ul>
1169
+ </dd>
1170
+
1210
1171
 
1211
-
1172
+
1212
1173
 
1213
- <td class="description last"><p>UUID of the hub</p></td>
1214
- </tr>
1174
+
1215
1175
 
1216
-
1217
- </tbody>
1218
- </table>
1176
+
1219
1177
  </dl>
1220
1178
 
1221
-
1222
1179
 
1223
-
1224
1180
 
1225
-
1226
1181
 
1227
-
1228
1182
 
1229
-
1230
1183
 
1231
-
1184
+
1185
+
1186
+
1232
1187
 
1233
-
1188
+ <h4 class="name" id="uuid">
1189
+ <span class="type-signature">(readonly) </span>uuid<span class="type-signature"></span>
1190
+ </h4>
1234
1191
 
1235
-
1236
1192
 
1237
-
1238
1193
 
1239
-
1240
1194
 
1241
-
1242
1195
 
1243
-
1244
1196
 
1245
-
1246
1197
 
1198
+ <h5 class="subsection-title">Properties:</h5>
1247
1199
 
1200
+
1248
1201
 
1249
-
1250
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
1251
- <dd class="tag-source">
1252
- <ul class="dummy">
1253
- <li>
1254
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
1255
- <a href="hubs_basehub.js.html#sunlight-1-line-134">line 134</a>
1256
- </li>
1257
- </ul>
1258
- </dd>
1259
-
1202
+ <table class="props">
1203
+ <thead>
1204
+ <tr>
1205
+
1206
+ <th>Name</th>
1207
+
1260
1208
 
1261
-
1209
+ <th>Type</th>
1262
1210
 
1263
-
1211
+
1264
1212
 
1265
-
1266
- </dl>
1213
+
1267
1214
 
1215
+ <th class="last">Description</th>
1216
+ </tr>
1217
+ </thead>
1268
1218
 
1219
+ <tbody>
1269
1220
 
1270
- </dd>
1271
1221
 
1272
- </dl>
1273
-
1222
+ <tr>
1223
+
1224
+ <td class="name"><code>uuid</code></td>
1225
+
1274
1226
 
1275
-
1227
+ <td class="type">
1228
+
1229
+
1230
+ <span class="param-type">
1231
+ string
1232
+ </span>
1276
1233
 
1277
1234
 
1278
1235
 
1279
-
1280
- </article>
1281
1236
 
1282
- </section>
1237
+
1238
+ </td>
1239
+
1240
+
1283
1241
 
1242
+
1284
1243
 
1244
+ <td class="description last">
1245
+ <p>UUID of the hub</p>
1246
+ </td>
1247
+ </tr>
1285
1248
 
1249
+
1250
+ </tbody>
1251
+ </table>
1286
1252
 
1287
- </div>
1288
- </div>
1289
1253
 
1290
- <div class="clearfix"></div>
1291
1254
 
1292
-
1293
- <div class="col-md-3">
1294
- <div id="toc" class="col-md-3 hidden-xs hidden-sm hidden-md"></div>
1295
- </div>
1296
-
1297
1255
 
1298
- </div>
1299
- </div>
1256
+ <dl class="details">
1300
1257
 
1258
+
1301
1259
 
1302
- <div class="modal fade" id="searchResults">
1303
- <div class="modal-dialog">
1304
- <div class="modal-content">
1305
- <div class="modal-header">
1306
- <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
1307
- <h4 class="modal-title">Search results</h4>
1308
- </div>
1309
- <div class="modal-body"></div>
1310
- <div class="modal-footer">
1311
- <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
1312
- </div>
1313
- </div><!-- /.modal-content -->
1314
- </div><!-- /.modal-dialog -->
1315
- </div>
1260
+
1261
+
1262
+
1263
+
1264
+
1316
1265
 
1266
+
1317
1267
 
1318
- <footer>
1268
+
1319
1269
 
1270
+
1320
1271
 
1321
- <span class="copyright">
1322
- node-poweredup by Nathan Kellenicki licensed under the MIT license.
1323
- </span>
1272
+
1324
1273
 
1325
- <span class="jsdoc-message">
1326
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a>
1327
-
1328
- on Tue Apr 6th 2021
1329
-
1330
- using the <a href="https://github.com/docstrap/docstrap">DocStrap template</a>.
1331
- </span>
1332
- </footer>
1274
+
1333
1275
 
1334
- <script src="scripts/docstrap.lib.js"></script>
1335
- <script src="scripts/toc.js"></script>
1276
+
1336
1277
 
1337
- <script type="text/javascript" src="scripts/fulltext-search-ui.js"></script>
1278
+
1338
1279
 
1280
+
1339
1281
 
1340
- <script>
1341
- $( function () {
1342
- $( "[id*='$']" ).each( function () {
1343
- var $this = $( this );
1282
+
1283
+ <dt class="tag-source">Source:</dt>
1284
+ <dd class="tag-source">
1285
+ <ul class="dummy">
1286
+ <li>
1287
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line136">line 136</a>
1288
+ </li>
1289
+ </ul>
1290
+ </dd>
1291
+
1344
1292
 
1345
- $this.attr( "id", $this.attr( "id" ).replace( "$", "__" ) );
1346
- } );
1293
+
1347
1294
 
1348
- $( ".tutorial-section pre, .readme-section pre, pre.prettyprint.source" ).each( function () {
1349
- var $this = $( this );
1295
+
1350
1296
 
1351
- var example = $this.find( "code" );
1352
- exampleText = example.html();
1353
- var lang = /{@lang (.*?)}/.exec( exampleText );
1354
- if ( lang && lang[1] ) {
1355
- exampleText = exampleText.replace( lang[0], "" );
1356
- example.html( exampleText );
1357
- lang = lang[1];
1358
- } else {
1359
- var langClassMatch = example.parent()[0].className.match(/lang\-(\S+)/);
1360
- lang = langClassMatch ? langClassMatch[1] : "javascript";
1361
- }
1297
+
1298
+ </dl>
1362
1299
 
1363
- if ( lang ) {
1364
1300
 
1365
- $this
1366
- .addClass( "sunlight-highlight-" + lang )
1367
- .addClass( "linenums" )
1368
- .html( example.html() );
1369
1301
 
1370
- }
1371
- } );
1372
1302
 
1373
- Sunlight.highlightAll( {
1374
- lineNumbers : true,
1375
- showMenu : true,
1376
- enableDoclinks : true
1377
- } );
1378
1303
 
1379
- $.catchAnchorLinks( {
1380
- navbarOffset: 10
1381
- } );
1382
- $( "#toc" ).toc( {
1383
- anchorName : function ( i, heading, prefix ) {
1384
- return $( heading ).attr( "id" ) || ( prefix + i );
1385
- },
1386
- selectors : "#toc-content h1,#toc-content h2,#toc-content h3,#toc-content h4",
1387
- showAndHide : false,
1388
- smoothScrolling: true
1389
- } );
1390
1304
 
1391
- $( "#main span[id^='toc']" ).addClass( "toc-shim" );
1392
- $( '.dropdown-toggle' ).dropdown();
1305
+
1306
+
1307
+
1393
1308
 
1394
- $( "table" ).each( function () {
1395
- var $this = $( this );
1396
- $this.addClass('table');
1397
- } );
1309
+
1398
1310
 
1399
- } );
1400
- </script>
1311
+
1401
1312
 
1313
+
1314
+ </article>
1315
+ </section>
1402
1316
 
1403
1317
 
1404
- <!--Navigation and Symbol Display-->
1405
1318
 
1406
1319
 
1407
- <!--Google Analytics-->
1320
+ </div>
1408
1321
 
1322
+ <br class="clear">
1409
1323
 
1324
+ <footer>
1325
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a>
1326
+ </footer>
1410
1327
 
1411
- <script type="text/javascript">
1412
- $(document).ready(function() {
1413
- SearcherDisplay.init();
1414
- });
1415
- </script>
1328
+ <script src="scripts/linenumber.js"></script>
1329
+ <script src="scripts/pagelocation.js"></script>
1416
1330
 
1331
+
1417
1332
 
1418
1333
  </body>
1419
1334
  </html>