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/Mario.html CHANGED
@@ -1,194 +1,210 @@
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: Mario</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
+ Mario - 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: Mario</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
- Mario
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="Mario"><span class="type-signature"></span>new Mario()</h4>
79
+ <div id="main">
95
80
 
81
+ <h1 class="page-title">
82
+ Mario
83
+ </h1>
96
84
 
97
- </dt>
98
- <dd>
99
85
 
100
86
 
101
- <div class="description">
102
- <p>Mario is emitted if the discovered device is a LEGO Super Mario brick.</p>
103
- </div>
104
-
105
87
 
88
+ <section>
89
+ <header>
106
90
 
91
+ <h2>
92
+
93
+ Mario
94
+
95
+ </h2>
107
96
 
97
+
108
98
 
99
+ </header>
109
100
 
110
-
111
-
101
+ <article>
102
+ <div class="container-overview">
103
+
104
+
112
105
 
113
-
114
- <dl class="details">
115
-
116
106
 
117
-
107
+
118
108
 
119
-
109
+ <span class='name-container'>
110
+ <a class="link-icon" href="#Mario">
111
+ <svg height="20" width="20" style="fill: black;">
112
+ <use xlink:href="#linkIcon"></use>
113
+ </svg>
114
+ </a>
115
+ <h4 class="name" id="Mario">
116
+ <span class="type-signature"></span>new Mario<span class="signature">()</span><span class="type-signature"></span>
117
+ </h4>
118
+ </span>
120
119
 
121
-
120
+
122
121
 
123
-
124
122
 
125
-
126
123
 
127
-
124
+ <div class="description">
125
+ <p>Mario is emitted if the discovered device is a LEGO Super Mario brick.</p>
126
+ </div>
128
127
 
129
-
130
128
 
131
-
132
129
 
133
-
134
130
 
135
-
136
131
 
137
-
138
132
 
139
-
140
133
 
141
134
 
142
135
 
143
-
144
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
145
- <dd class="tag-source">
146
- <ul class="dummy">
147
- <li>
148
- <a href="hubs_mario.js.html">hubs/mario.js</a>,
149
- <a href="hubs_mario.js.html#sunlight-1-line-27">line 27</a>
150
- </li>
151
- </ul>
152
- </dd>
153
-
154
136
 
155
-
137
+ <dl class="details">
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+
152
+
153
+
154
+
155
+
156
+
157
+
156
158
 
157
-
159
+
158
160
 
159
-
161
+
162
+
163
+
164
+ <dt class="tag-source">Source:</dt>
165
+ <dd class="tag-source">
166
+ <ul class="dummy">
167
+ <li>
168
+ <a href="hubs_mario.js.html">hubs/mario.js</a>, <a href="hubs_mario.js.html#line27">line 27</a>
169
+ </li>
170
+ </ul>
171
+ </dd>
172
+
173
+
174
+
175
+
176
+
177
+
178
+
160
179
  </dl>
161
180
 
162
181
 
163
-
164
182
 
165
-
166
183
 
167
-
168
184
 
169
-
170
185
 
171
-
172
186
 
173
-
174
187
 
175
-
176
- </dd>
177
188
 
178
-
189
+
190
+
191
+
192
+
193
+
194
+
179
195
  </div>
180
196
 
181
197
 
182
- <h3 class="subsection-title">Extends</h3>
198
+ <h3 class="subsection-title">Extends</h3>
183
199
 
184
-
200
+
185
201
 
186
202
 
187
- <ul>
188
- <li><a href="LPF2Hub.html">LPF2Hub</a></li>
189
-
190
- <li><a href="BaseHub.html">BaseHub</a></li>
191
- </ul>
203
+ <ul>
204
+ <li><a href="LPF2Hub.html">LPF2Hub</a></li>
205
+
206
+ <li><a href="BaseHub.html">BaseHub</a></li>
207
+ </ul>
192
208
 
193
209
 
194
210
 
@@ -197,2022 +213,1841 @@
197
213
 
198
214
 
199
215
 
200
-
216
+
201
217
 
202
218
 
203
219
 
204
220
 
205
221
  <h3 class="subsection-title">Members</h3>
206
222
 
207
- <dl>
223
+
208
224
 
209
- <hr>
210
- <dt class="name" id="batteryLevel">
211
- <h4 id="batteryLevel"><span class="type-signature">&lt;readonly> </span>batteryLevel<span class="type-signature"></span></h4>
212
225
 
213
-
214
- </dt>
215
- <dd>
216
-
226
+ <h4 class="name" id="batteryLevel">
227
+ <span class="type-signature">(readonly) </span>batteryLevel<span class="type-signature"></span>
228
+ </h4>
217
229
 
218
-
219
230
 
220
-
221
- <dl class="details">
222
-
223
231
 
224
- <h5 class="subsection-title">Properties:</h5>
225
232
 
226
- <dl>
227
233
 
228
- <table class="props table table-striped">
229
- <thead>
234
+
235
+
236
+ <h5 class="subsection-title">Properties:</h5>
237
+
238
+
239
+
240
+ <table class="props">
241
+ <thead>
230
242
  <tr>
231
-
243
+
232
244
  <th>Name</th>
233
-
245
+
234
246
 
235
- <th>Type</th>
247
+ <th>Type</th>
236
248
 
237
-
249
+
238
250
 
239
-
251
+
240
252
 
241
- <th class="last">Description</th>
253
+ <th class="last">Description</th>
242
254
  </tr>
243
- </thead>
255
+ </thead>
244
256
 
245
- <tbody>
257
+ <tbody>
246
258
 
247
259
 
248
- <tr>
249
-
250
- <td class="name"><code>batteryLevel</code></td>
251
-
260
+ <tr>
261
+
262
+ <td class="name"><code>batteryLevel</code></td>
263
+
252
264
 
253
- <td class="type">
254
-
255
-
256
- <span class="param-type">number</span>
265
+ <td class="type">
266
+
267
+
268
+ <span class="param-type">
269
+ number
270
+ </span>
257
271
 
272
+
258
273
 
259
274
 
260
-
261
- </td>
275
+
276
+ </td>
262
277
 
263
-
278
+
264
279
 
265
-
280
+
266
281
 
267
- <td class="description last"><p>Battery level of the hub (Percentage between 0-100)</p></td>
268
- </tr>
282
+ <td class="description last">
283
+ <p>Battery level of the hub (Percentage between 0-100)</p>
284
+ </td>
285
+ </tr>
269
286
 
270
-
271
- </tbody>
287
+
288
+ </tbody>
272
289
  </table>
273
- </dl>
274
290
 
275
-
276
291
 
277
-
278
292
 
279
-
280
293
 
281
-
282
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
283
- <dd class="inherited-from">
284
- <ul class="dummy">
285
- <li>
286
- <a href="BaseHub.html#batteryLevel">BaseHub#batteryLevel</a>
287
- </li>
288
- </ul>
289
- </dd>
290
-
294
+ <dl class="details">
291
295
 
292
-
293
- <dt class="tag-overrides">Overrides:</dt>
294
- <dd class="tag-overrides"><ul class="dummy"><li>
295
- <a href="BaseHub.html#batteryLevel">BaseHub#batteryLevel</a>
296
- </li></ul></dd>
297
-
296
+
298
297
 
299
-
298
+
300
299
 
301
-
300
+
302
301
 
303
-
302
+
303
+ <dt class="tag-overrides">Overrides:</dt>
304
+ <dd class="tag-overrides">
305
+ <ul class="dummy">
306
+ <li>
307
+ <a href="BaseHub.html#batteryLevel">BaseHub#batteryLevel</a>
308
+ </li>
309
+ </ul>
310
+ </dd>
311
+
304
312
 
305
-
313
+
306
314
 
307
-
315
+
308
316
 
309
-
317
+
310
318
 
311
-
319
+
312
320
 
313
-
321
+
314
322
 
323
+
315
324
 
325
+
316
326
 
317
-
318
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
319
- <dd class="tag-source">
320
- <ul class="dummy">
321
- <li>
322
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
323
- <a href="hubs_basehub.js.html#sunlight-1-line-141">line 141</a>
324
- </li>
325
- </ul>
326
- </dd>
327
-
327
+
328
328
 
329
-
329
+
330
+ <dt class="tag-source">Source:</dt>
331
+ <dd class="tag-source">
332
+ <ul class="dummy">
333
+ <li>
334
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line143">line 143</a>
335
+ </li>
336
+ </ul>
337
+ </dd>
338
+
330
339
 
331
-
340
+
332
341
 
333
-
342
+
343
+
344
+
334
345
  </dl>
335
346
 
336
347
 
337
-
338
- </dd>
339
348
 
349
+
350
+
351
+
352
+
340
353
 
341
354
 
342
- <hr>
343
- <dt class="name" id="firmwareVersion">
344
- <h4 id="firmwareVersion"><span class="type-signature">&lt;readonly> </span>firmwareVersion<span class="type-signature"></span></h4>
345
355
 
346
-
347
- </dt>
348
- <dd>
349
-
356
+ <h4 class="name" id="firmwareVersion">
357
+ <span class="type-signature">(readonly) </span>firmwareVersion<span class="type-signature"></span>
358
+ </h4>
359
+
360
+
361
+
350
362
 
351
-
352
363
 
353
-
354
- <dl class="details">
355
-
356
364
 
357
- <h5 class="subsection-title">Properties:</h5>
358
365
 
359
- <dl>
366
+ <h5 class="subsection-title">Properties:</h5>
360
367
 
361
- <table class="props table table-striped">
362
- <thead>
368
+
369
+
370
+ <table class="props">
371
+ <thead>
363
372
  <tr>
364
-
373
+
365
374
  <th>Name</th>
366
-
375
+
367
376
 
368
- <th>Type</th>
377
+ <th>Type</th>
369
378
 
370
-
379
+
371
380
 
372
-
381
+
373
382
 
374
- <th class="last">Description</th>
383
+ <th class="last">Description</th>
375
384
  </tr>
376
- </thead>
385
+ </thead>
377
386
 
378
- <tbody>
387
+ <tbody>
379
388
 
380
389
 
381
- <tr>
382
-
383
- <td class="name"><code>firmwareVersion</code></td>
384
-
390
+ <tr>
391
+
392
+ <td class="name"><code>firmwareVersion</code></td>
393
+
385
394
 
386
- <td class="type">
387
-
388
-
389
- <span class="param-type">string</span>
395
+ <td class="type">
396
+
397
+
398
+ <span class="param-type">
399
+ string
400
+ </span>
390
401
 
402
+
391
403
 
392
404
 
393
-
394
- </td>
405
+
406
+ </td>
395
407
 
396
-
408
+
397
409
 
398
-
410
+
399
411
 
400
- <td class="description last"><p>Firmware version of the hub</p></td>
401
- </tr>
412
+ <td class="description last">
413
+ <p>Firmware version of the hub</p>
414
+ </td>
415
+ </tr>
402
416
 
403
-
404
- </tbody>
417
+
418
+ </tbody>
405
419
  </table>
406
- </dl>
407
420
 
408
-
409
421
 
410
-
411
422
 
412
-
413
423
 
414
-
415
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
416
- <dd class="inherited-from">
417
- <ul class="dummy">
418
- <li>
419
- <a href="BaseHub.html#firmwareVersion">BaseHub#firmwareVersion</a>
420
- </li>
421
- </ul>
422
- </dd>
423
-
424
+ <dl class="details">
424
425
 
425
-
426
- <dt class="tag-overrides">Overrides:</dt>
427
- <dd class="tag-overrides"><ul class="dummy"><li>
428
- <a href="BaseHub.html#firmwareVersion">BaseHub#firmwareVersion</a>
429
- </li></ul></dd>
430
-
426
+
431
427
 
432
-
428
+
433
429
 
434
-
430
+
435
431
 
436
-
432
+
433
+ <dt class="tag-overrides">Overrides:</dt>
434
+ <dd class="tag-overrides">
435
+ <ul class="dummy">
436
+ <li>
437
+ <a href="BaseHub.html#firmwareVersion">BaseHub#firmwareVersion</a>
438
+ </li>
439
+ </ul>
440
+ </dd>
441
+
437
442
 
438
-
443
+
439
444
 
440
-
445
+
441
446
 
442
-
447
+
443
448
 
444
-
449
+
445
450
 
446
-
451
+
447
452
 
453
+
448
454
 
455
+
449
456
 
450
-
451
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
452
- <dd class="tag-source">
453
- <ul class="dummy">
454
- <li>
455
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
456
- <a href="hubs_basehub.js.html#sunlight-1-line-113">line 113</a>
457
- </li>
458
- </ul>
459
- </dd>
460
-
457
+
461
458
 
462
-
459
+
460
+ <dt class="tag-source">Source:</dt>
461
+ <dd class="tag-source">
462
+ <ul class="dummy">
463
+ <li>
464
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line115">line 115</a>
465
+ </li>
466
+ </ul>
467
+ </dd>
468
+
469
+
470
+
463
471
 
464
-
472
+
465
473
 
466
-
474
+
467
475
  </dl>
468
476
 
469
477
 
470
-
471
- </dd>
472
478
 
479
+
480
+
481
+
482
+
473
483
 
474
484
 
475
- <hr>
476
- <dt class="name" id="hardwareVersion">
477
- <h4 id="hardwareVersion"><span class="type-signature">&lt;readonly> </span>hardwareVersion<span class="type-signature"></span></h4>
478
485
 
479
-
480
- </dt>
481
- <dd>
482
-
486
+ <h4 class="name" id="hardwareVersion">
487
+ <span class="type-signature">(readonly) </span>hardwareVersion<span class="type-signature"></span>
488
+ </h4>
489
+
490
+
491
+
483
492
 
484
-
485
493
 
486
-
487
- <dl class="details">
488
-
489
494
 
490
- <h5 class="subsection-title">Properties:</h5>
491
495
 
492
- <dl>
496
+ <h5 class="subsection-title">Properties:</h5>
493
497
 
494
- <table class="props table table-striped">
495
- <thead>
498
+
499
+
500
+ <table class="props">
501
+ <thead>
496
502
  <tr>
497
-
503
+
498
504
  <th>Name</th>
499
-
505
+
500
506
 
501
- <th>Type</th>
507
+ <th>Type</th>
502
508
 
503
-
509
+
504
510
 
505
-
511
+
506
512
 
507
- <th class="last">Description</th>
513
+ <th class="last">Description</th>
508
514
  </tr>
509
- </thead>
515
+ </thead>
510
516
 
511
- <tbody>
517
+ <tbody>
512
518
 
513
519
 
514
- <tr>
515
-
516
- <td class="name"><code>hardwareVersion</code></td>
517
-
520
+ <tr>
521
+
522
+ <td class="name"><code>hardwareVersion</code></td>
523
+
518
524
 
519
- <td class="type">
520
-
521
-
522
- <span class="param-type">string</span>
525
+ <td class="type">
526
+
527
+
528
+ <span class="param-type">
529
+ string
530
+ </span>
523
531
 
532
+
524
533
 
525
534
 
526
-
527
- </td>
535
+
536
+ </td>
528
537
 
529
-
538
+
530
539
 
531
-
540
+
532
541
 
533
- <td class="description last"><p>Hardware version of the hub</p></td>
534
- </tr>
542
+ <td class="description last">
543
+ <p>Hardware version of the hub</p>
544
+ </td>
545
+ </tr>
535
546
 
536
-
537
- </tbody>
547
+
548
+ </tbody>
538
549
  </table>
539
- </dl>
540
550
 
541
-
542
551
 
543
-
544
552
 
545
-
546
553
 
547
-
548
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
549
- <dd class="inherited-from">
550
- <ul class="dummy">
551
- <li>
552
- <a href="BaseHub.html#hardwareVersion">BaseHub#hardwareVersion</a>
553
- </li>
554
- </ul>
555
- </dd>
556
-
554
+ <dl class="details">
557
555
 
558
-
559
- <dt class="tag-overrides">Overrides:</dt>
560
- <dd class="tag-overrides"><ul class="dummy"><li>
561
- <a href="BaseHub.html#hardwareVersion">BaseHub#hardwareVersion</a>
562
- </li></ul></dd>
563
-
556
+
564
557
 
565
-
558
+
566
559
 
567
-
560
+
568
561
 
569
-
562
+
563
+ <dt class="tag-overrides">Overrides:</dt>
564
+ <dd class="tag-overrides">
565
+ <ul class="dummy">
566
+ <li>
567
+ <a href="BaseHub.html#hardwareVersion">BaseHub#hardwareVersion</a>
568
+ </li>
569
+ </ul>
570
+ </dd>
571
+
572
+
573
+
570
574
 
571
-
575
+
572
576
 
573
-
577
+
574
578
 
575
-
579
+
576
580
 
577
-
581
+
578
582
 
579
-
583
+
580
584
 
585
+
581
586
 
587
+
582
588
 
583
-
584
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
585
- <dd class="tag-source">
586
- <ul class="dummy">
587
- <li>
588
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
589
- <a href="hubs_basehub.js.html#sunlight-1-line-120">line 120</a>
590
- </li>
591
- </ul>
592
- </dd>
593
-
589
+
590
+ <dt class="tag-source">Source:</dt>
591
+ <dd class="tag-source">
592
+ <ul class="dummy">
593
+ <li>
594
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line122">line 122</a>
595
+ </li>
596
+ </ul>
597
+ </dd>
598
+
594
599
 
595
-
600
+
596
601
 
597
-
602
+
598
603
 
599
-
604
+
600
605
  </dl>
601
606
 
602
607
 
603
-
604
- </dd>
605
608
 
609
+
610
+
611
+
612
+
606
613
 
607
614
 
608
- <hr>
609
- <dt class="name" id="name">
610
- <h4 id="name"><span class="type-signature">&lt;readonly> </span>name<span class="type-signature"></span></h4>
611
615
 
612
-
613
- </dt>
614
- <dd>
615
-
616
+ <h4 class="name" id="name">
617
+ <span class="type-signature">(readonly) </span>name<span class="type-signature"></span>
618
+ </h4>
619
+
620
+
616
621
 
617
-
618
622
 
619
-
620
- <dl class="details">
621
-
622
623
 
623
- <h5 class="subsection-title">Properties:</h5>
624
624
 
625
- <dl>
626
625
 
627
- <table class="props table table-striped">
628
- <thead>
626
+ <h5 class="subsection-title">Properties:</h5>
627
+
628
+
629
+
630
+ <table class="props">
631
+ <thead>
629
632
  <tr>
630
-
633
+
631
634
  <th>Name</th>
632
-
635
+
633
636
 
634
- <th>Type</th>
637
+ <th>Type</th>
635
638
 
636
-
639
+
637
640
 
638
-
641
+
639
642
 
640
- <th class="last">Description</th>
643
+ <th class="last">Description</th>
641
644
  </tr>
642
- </thead>
645
+ </thead>
643
646
 
644
- <tbody>
647
+ <tbody>
645
648
 
646
649
 
647
- <tr>
648
-
649
- <td class="name"><code>name</code></td>
650
-
650
+ <tr>
651
+
652
+ <td class="name"><code>name</code></td>
653
+
651
654
 
652
- <td class="type">
653
-
654
-
655
- <span class="param-type">string</span>
655
+ <td class="type">
656
+
657
+
658
+ <span class="param-type">
659
+ string
660
+ </span>
656
661
 
662
+
657
663
 
658
664
 
659
-
660
- </td>
665
+
666
+ </td>
661
667
 
662
-
668
+
663
669
 
664
-
670
+
665
671
 
666
- <td class="description last"><p>Name of the hub</p></td>
667
- </tr>
672
+ <td class="description last">
673
+ <p>Name of the hub</p>
674
+ </td>
675
+ </tr>
668
676
 
669
-
670
- </tbody>
677
+
678
+ </tbody>
671
679
  </table>
672
- </dl>
673
680
 
674
-
675
681
 
676
-
677
682
 
678
-
679
683
 
680
-
681
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
682
- <dd class="inherited-from">
683
- <ul class="dummy">
684
- <li>
685
- <a href="BaseHub.html#name">BaseHub#name</a>
686
- </li>
687
- </ul>
688
- </dd>
689
-
684
+ <dl class="details">
690
685
 
691
-
692
- <dt class="tag-overrides">Overrides:</dt>
693
- <dd class="tag-overrides"><ul class="dummy"><li>
694
- <a href="BaseHub.html#name">BaseHub#name</a>
695
- </li></ul></dd>
696
-
686
+
697
687
 
698
-
688
+
699
689
 
700
-
690
+
701
691
 
702
-
692
+
693
+ <dt class="tag-overrides">Overrides:</dt>
694
+ <dd class="tag-overrides">
695
+ <ul class="dummy">
696
+ <li>
697
+ <a href="BaseHub.html#name">BaseHub#name</a>
698
+ </li>
699
+ </ul>
700
+ </dd>
701
+
703
702
 
704
-
703
+
705
704
 
706
-
705
+
707
706
 
708
-
707
+
709
708
 
710
-
709
+
711
710
 
712
-
711
+
713
712
 
713
+
714
714
 
715
+
715
716
 
716
-
717
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
718
- <dd class="tag-source">
719
- <ul class="dummy">
720
- <li>
721
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
722
- <a href="hubs_basehub.js.html#sunlight-1-line-92">line 92</a>
723
- </li>
724
- </ul>
725
- </dd>
726
-
717
+
718
+
719
+
720
+ <dt class="tag-source">Source:</dt>
721
+ <dd class="tag-source">
722
+ <ul class="dummy">
723
+ <li>
724
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line94">line 94</a>
725
+ </li>
726
+ </ul>
727
+ </dd>
728
+
727
729
 
728
-
730
+
729
731
 
730
-
732
+
731
733
 
732
-
734
+
733
735
  </dl>
734
736
 
735
737
 
736
-
737
- </dd>
738
738
 
739
+
740
+
741
+
742
+
739
743
 
740
744
 
741
- <hr>
742
- <dt class="name" id="ports">
743
- <h4 id="ports"><span class="type-signature">&lt;readonly> </span>ports<span class="type-signature"></span></h4>
744
745
 
745
-
746
- </dt>
747
- <dd>
748
-
746
+ <h4 class="name" id="ports">
747
+ <span class="type-signature">(readonly) </span>ports<span class="type-signature"></span>
748
+ </h4>
749
+
749
750
 
750
-
751
751
 
752
-
753
- <dl class="details">
754
-
755
752
 
756
- <h5 class="subsection-title">Properties:</h5>
757
753
 
758
- <dl>
759
754
 
760
- <table class="props table table-striped">
761
- <thead>
755
+
756
+ <h5 class="subsection-title">Properties:</h5>
757
+
758
+
759
+
760
+ <table class="props">
761
+ <thead>
762
762
  <tr>
763
-
763
+
764
764
  <th>Name</th>
765
-
765
+
766
766
 
767
- <th>Type</th>
767
+ <th>Type</th>
768
768
 
769
-
769
+
770
770
 
771
-
771
+
772
772
 
773
- <th class="last">Description</th>
773
+ <th class="last">Description</th>
774
774
  </tr>
775
- </thead>
775
+ </thead>
776
776
 
777
- <tbody>
777
+ <tbody>
778
778
 
779
779
 
780
- <tr>
781
-
782
- <td class="name"><code>ports</code></td>
783
-
780
+ <tr>
781
+
782
+ <td class="name"><code>ports</code></td>
783
+
784
784
 
785
- <td class="type">
786
-
787
-
788
- <span class="param-type">Array.&lt;string></span>
785
+ <td class="type">
786
+
787
+
788
+ <span class="param-type">
789
+ Array.&lt;string>
790
+ </span>
789
791
 
792
+
790
793
 
791
794
 
792
-
793
- </td>
795
+
796
+ </td>
794
797
 
795
-
798
+
796
799
 
797
-
800
+
798
801
 
799
- <td class="description last"><p>Array of port names</p></td>
800
- </tr>
802
+ <td class="description last">
803
+ <p>Array of port names</p>
804
+ </td>
805
+ </tr>
801
806
 
802
-
803
- </tbody>
807
+
808
+ </tbody>
804
809
  </table>
805
- </dl>
806
810
 
807
-
808
811
 
809
-
810
812
 
811
-
812
813
 
813
-
814
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
815
- <dd class="inherited-from">
816
- <ul class="dummy">
817
- <li>
818
- <a href="BaseHub.html#ports">BaseHub#ports</a>
819
- </li>
820
- </ul>
821
- </dd>
822
-
814
+ <dl class="details">
823
815
 
824
-
825
- <dt class="tag-overrides">Overrides:</dt>
826
- <dd class="tag-overrides"><ul class="dummy"><li>
827
- <a href="BaseHub.html#ports">BaseHub#ports</a>
828
- </li></ul></dd>
829
-
816
+
830
817
 
831
-
818
+
832
819
 
833
-
820
+
834
821
 
835
-
822
+
823
+ <dt class="tag-overrides">Overrides:</dt>
824
+ <dd class="tag-overrides">
825
+ <ul class="dummy">
826
+ <li>
827
+ <a href="BaseHub.html#ports">BaseHub#ports</a>
828
+ </li>
829
+ </ul>
830
+ </dd>
831
+
832
+
833
+
836
834
 
837
-
835
+
838
836
 
839
-
837
+
840
838
 
841
-
839
+
842
840
 
843
-
841
+
844
842
 
845
-
843
+
846
844
 
845
+
847
846
 
847
+
848
848
 
849
-
850
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
851
- <dd class="tag-source">
852
- <ul class="dummy">
853
- <li>
854
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
855
- <a href="hubs_basehub.js.html#sunlight-1-line-106">line 106</a>
856
- </li>
857
- </ul>
858
- </dd>
859
-
849
+
850
+ <dt class="tag-source">Source:</dt>
851
+ <dd class="tag-source">
852
+ <ul class="dummy">
853
+ <li>
854
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line108">line 108</a>
855
+ </li>
856
+ </ul>
857
+ </dd>
858
+
860
859
 
861
-
860
+
862
861
 
863
-
862
+
864
863
 
865
-
864
+
866
865
  </dl>
867
866
 
868
867
 
869
-
870
- </dd>
871
868
 
869
+
870
+
871
+
872
+
872
873
 
873
874
 
874
- <hr>
875
- <dt class="name" id="primaryMACAddress">
876
- <h4 id="primaryMACAddress"><span class="type-signature">&lt;readonly> </span>primaryMACAddress<span class="type-signature"></span></h4>
877
875
 
878
-
879
- </dt>
880
- <dd>
881
-
876
+ <h4 class="name" id="primaryMACAddress">
877
+ <span class="type-signature">(readonly) </span>primaryMACAddress<span class="type-signature"></span>
878
+ </h4>
879
+
880
+
881
+
882
+
882
883
 
883
-
884
884
 
885
-
886
- <dl class="details">
887
-
888
885
 
889
- <h5 class="subsection-title">Properties:</h5>
886
+ <h5 class="subsection-title">Properties:</h5>
890
887
 
891
- <dl>
888
+
892
889
 
893
- <table class="props table table-striped">
894
- <thead>
890
+ <table class="props">
891
+ <thead>
895
892
  <tr>
896
-
893
+
897
894
  <th>Name</th>
898
-
895
+
899
896
 
900
- <th>Type</th>
897
+ <th>Type</th>
901
898
 
902
-
899
+
903
900
 
904
-
901
+
905
902
 
906
- <th class="last">Description</th>
903
+ <th class="last">Description</th>
907
904
  </tr>
908
- </thead>
905
+ </thead>
909
906
 
910
- <tbody>
907
+ <tbody>
911
908
 
912
909
 
913
- <tr>
914
-
915
- <td class="name"><code>primaryMACAddress</code></td>
916
-
910
+ <tr>
911
+
912
+ <td class="name"><code>primaryMACAddress</code></td>
913
+
917
914
 
918
- <td class="type">
919
-
920
-
921
- <span class="param-type">string</span>
915
+ <td class="type">
916
+
917
+
918
+ <span class="param-type">
919
+ string
920
+ </span>
922
921
 
922
+
923
923
 
924
924
 
925
-
926
- </td>
925
+
926
+ </td>
927
927
 
928
-
928
+
929
929
 
930
-
930
+
931
931
 
932
- <td class="description last"><p>Primary MAC address of the hub</p></td>
933
- </tr>
932
+ <td class="description last">
933
+ <p>Primary MAC address of the hub</p>
934
+ </td>
935
+ </tr>
934
936
 
935
-
936
- </tbody>
937
+
938
+ </tbody>
937
939
  </table>
938
- </dl>
939
940
 
940
-
941
941
 
942
-
943
942
 
944
-
945
943
 
946
-
947
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
948
- <dd class="inherited-from">
949
- <ul class="dummy">
950
- <li>
951
- <a href="BaseHub.html#primaryMACAddress">BaseHub#primaryMACAddress</a>
952
- </li>
953
- </ul>
954
- </dd>
955
-
944
+ <dl class="details">
956
945
 
957
-
958
- <dt class="tag-overrides">Overrides:</dt>
959
- <dd class="tag-overrides"><ul class="dummy"><li>
960
- <a href="BaseHub.html#primaryMACAddress">BaseHub#primaryMACAddress</a>
961
- </li></ul></dd>
962
-
946
+
963
947
 
964
-
948
+
965
949
 
966
-
950
+
967
951
 
968
-
952
+
953
+ <dt class="tag-overrides">Overrides:</dt>
954
+ <dd class="tag-overrides">
955
+ <ul class="dummy">
956
+ <li>
957
+ <a href="BaseHub.html#primaryMACAddress">BaseHub#primaryMACAddress</a>
958
+ </li>
959
+ </ul>
960
+ </dd>
961
+
969
962
 
970
-
963
+
971
964
 
972
-
965
+
973
966
 
974
-
967
+
975
968
 
976
-
969
+
977
970
 
978
-
971
+
979
972
 
973
+
980
974
 
975
+
981
976
 
982
-
983
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
984
- <dd class="tag-source">
985
- <ul class="dummy">
986
- <li>
987
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
988
- <a href="hubs_basehub.js.html#sunlight-1-line-127">line 127</a>
989
- </li>
990
- </ul>
991
- </dd>
992
-
977
+
993
978
 
994
-
979
+
980
+ <dt class="tag-source">Source:</dt>
981
+ <dd class="tag-source">
982
+ <ul class="dummy">
983
+ <li>
984
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line129">line 129</a>
985
+ </li>
986
+ </ul>
987
+ </dd>
988
+
995
989
 
996
-
990
+
997
991
 
998
-
992
+
993
+
994
+
999
995
  </dl>
1000
996
 
1001
997
 
1002
-
1003
- </dd>
1004
998
 
999
+
1000
+
1001
+
1002
+
1005
1003
 
1006
1004
 
1007
- <hr>
1008
- <dt class="name" id="rssi">
1009
- <h4 id="rssi"><span class="type-signature">&lt;readonly> </span>rssi<span class="type-signature"></span></h4>
1010
1005
 
1011
-
1012
- </dt>
1013
- <dd>
1014
-
1006
+ <h4 class="name" id="rssi">
1007
+ <span class="type-signature">(readonly) </span>rssi<span class="type-signature"></span>
1008
+ </h4>
1009
+
1010
+
1011
+
1015
1012
 
1016
-
1017
1013
 
1018
-
1019
- <dl class="details">
1020
-
1021
1014
 
1022
- <h5 class="subsection-title">Properties:</h5>
1023
1015
 
1024
- <dl>
1016
+ <h5 class="subsection-title">Properties:</h5>
1025
1017
 
1026
- <table class="props table table-striped">
1027
- <thead>
1018
+
1019
+
1020
+ <table class="props">
1021
+ <thead>
1028
1022
  <tr>
1029
-
1023
+
1030
1024
  <th>Name</th>
1031
-
1025
+
1032
1026
 
1033
- <th>Type</th>
1027
+ <th>Type</th>
1034
1028
 
1035
-
1029
+
1036
1030
 
1037
-
1031
+
1038
1032
 
1039
- <th class="last">Description</th>
1033
+ <th class="last">Description</th>
1040
1034
  </tr>
1041
- </thead>
1035
+ </thead>
1042
1036
 
1043
- <tbody>
1037
+ <tbody>
1044
1038
 
1045
1039
 
1046
- <tr>
1047
-
1048
- <td class="name"><code>rssi</code></td>
1049
-
1040
+ <tr>
1041
+
1042
+ <td class="name"><code>rssi</code></td>
1043
+
1050
1044
 
1051
- <td class="type">
1052
-
1053
-
1054
- <span class="param-type">number</span>
1045
+ <td class="type">
1046
+
1047
+
1048
+ <span class="param-type">
1049
+ number
1050
+ </span>
1055
1051
 
1052
+
1056
1053
 
1057
1054
 
1058
-
1059
- </td>
1055
+
1056
+ </td>
1060
1057
 
1061
-
1058
+
1062
1059
 
1063
-
1060
+
1064
1061
 
1065
- <td class="description last"><p>Signal strength of the hub</p></td>
1066
- </tr>
1062
+ <td class="description last">
1063
+ <p>Signal strength of the hub</p>
1064
+ </td>
1065
+ </tr>
1067
1066
 
1068
-
1069
- </tbody>
1067
+
1068
+ </tbody>
1070
1069
  </table>
1071
- </dl>
1072
1070
 
1073
-
1074
1071
 
1075
-
1076
1072
 
1077
-
1078
1073
 
1079
-
1080
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
1081
- <dd class="inherited-from">
1082
- <ul class="dummy">
1083
- <li>
1084
- <a href="BaseHub.html#rssi">BaseHub#rssi</a>
1085
- </li>
1086
- </ul>
1087
- </dd>
1088
-
1074
+ <dl class="details">
1075
+
1076
+
1089
1077
 
1090
-
1091
- <dt class="tag-overrides">Overrides:</dt>
1092
- <dd class="tag-overrides"><ul class="dummy"><li>
1093
- <a href="BaseHub.html#rssi">BaseHub#rssi</a>
1094
- </li></ul></dd>
1095
-
1078
+
1096
1079
 
1097
-
1080
+
1098
1081
 
1099
-
1082
+
1083
+ <dt class="tag-overrides">Overrides:</dt>
1084
+ <dd class="tag-overrides">
1085
+ <ul class="dummy">
1086
+ <li>
1087
+ <a href="BaseHub.html#rssi">BaseHub#rssi</a>
1088
+ </li>
1089
+ </ul>
1090
+ </dd>
1091
+
1100
1092
 
1101
-
1093
+
1102
1094
 
1103
-
1095
+
1104
1096
 
1105
-
1097
+
1106
1098
 
1107
-
1099
+
1108
1100
 
1109
-
1101
+
1110
1102
 
1111
-
1103
+
1112
1104
 
1105
+
1113
1106
 
1107
+
1114
1108
 
1115
-
1116
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
1117
- <dd class="tag-source">
1118
- <ul class="dummy">
1119
- <li>
1120
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
1121
- <a href="hubs_basehub.js.html#sunlight-1-line-148">line 148</a>
1122
- </li>
1123
- </ul>
1124
- </dd>
1125
-
1109
+
1110
+ <dt class="tag-source">Source:</dt>
1111
+ <dd class="tag-source">
1112
+ <ul class="dummy">
1113
+ <li>
1114
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line150">line 150</a>
1115
+ </li>
1116
+ </ul>
1117
+ </dd>
1118
+
1126
1119
 
1127
-
1120
+
1128
1121
 
1129
-
1122
+
1130
1123
 
1131
-
1124
+
1132
1125
  </dl>
1133
1126
 
1134
1127
 
1135
-
1136
- </dd>
1137
1128
 
1129
+
1130
+
1131
+
1132
+
1138
1133
 
1139
1134
 
1140
- <hr>
1141
- <dt class="name" id="type">
1142
- <h4 id="type"><span class="type-signature">&lt;readonly> </span>type<span class="type-signature"></span></h4>
1143
1135
 
1144
-
1145
- </dt>
1146
- <dd>
1147
-
1136
+ <h4 class="name" id="type">
1137
+ <span class="type-signature">(readonly) </span>type<span class="type-signature"></span>
1138
+ </h4>
1139
+
1140
+
1141
+
1148
1142
 
1149
-
1150
1143
 
1151
-
1152
- <dl class="details">
1153
-
1154
1144
 
1155
- <h5 class="subsection-title">Properties:</h5>
1156
1145
 
1157
- <dl>
1146
+ <h5 class="subsection-title">Properties:</h5>
1158
1147
 
1159
- <table class="props table table-striped">
1160
- <thead>
1148
+
1149
+
1150
+ <table class="props">
1151
+ <thead>
1161
1152
  <tr>
1162
-
1153
+
1163
1154
  <th>Name</th>
1164
-
1155
+
1165
1156
 
1166
- <th>Type</th>
1157
+ <th>Type</th>
1167
1158
 
1168
-
1159
+
1169
1160
 
1170
-
1161
+
1171
1162
 
1172
- <th class="last">Description</th>
1163
+ <th class="last">Description</th>
1173
1164
  </tr>
1174
- </thead>
1165
+ </thead>
1175
1166
 
1176
- <tbody>
1167
+ <tbody>
1177
1168
 
1178
1169
 
1179
- <tr>
1180
-
1181
- <td class="name"><code>type</code></td>
1182
-
1170
+ <tr>
1171
+
1172
+ <td class="name"><code>type</code></td>
1173
+
1183
1174
 
1184
- <td class="type">
1185
-
1186
-
1187
- <span class="param-type">string</span>
1175
+ <td class="type">
1176
+
1177
+
1178
+ <span class="param-type">
1179
+ string
1180
+ </span>
1188
1181
 
1182
+
1189
1183
 
1190
1184
 
1191
-
1192
- </td>
1185
+
1186
+ </td>
1193
1187
 
1194
-
1188
+
1195
1189
 
1196
-
1190
+
1197
1191
 
1198
- <td class="description last"><p>Hub type</p></td>
1199
- </tr>
1192
+ <td class="description last">
1193
+ <p>Hub type</p>
1194
+ </td>
1195
+ </tr>
1200
1196
 
1201
-
1202
- </tbody>
1197
+
1198
+ </tbody>
1203
1199
  </table>
1204
- </dl>
1205
1200
 
1206
-
1207
1201
 
1208
-
1209
1202
 
1210
-
1211
1203
 
1212
-
1213
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
1214
- <dd class="inherited-from">
1215
- <ul class="dummy">
1216
- <li>
1217
- <a href="BaseHub.html#type">BaseHub#type</a>
1218
- </li>
1219
- </ul>
1220
- </dd>
1221
-
1204
+ <dl class="details">
1222
1205
 
1223
-
1224
- <dt class="tag-overrides">Overrides:</dt>
1225
- <dd class="tag-overrides"><ul class="dummy"><li>
1226
- <a href="BaseHub.html#type">BaseHub#type</a>
1227
- </li></ul></dd>
1228
-
1206
+
1229
1207
 
1230
-
1208
+
1231
1209
 
1232
-
1210
+
1233
1211
 
1234
-
1212
+
1213
+ <dt class="tag-overrides">Overrides:</dt>
1214
+ <dd class="tag-overrides">
1215
+ <ul class="dummy">
1216
+ <li>
1217
+ <a href="BaseHub.html#type">BaseHub#type</a>
1218
+ </li>
1219
+ </ul>
1220
+ </dd>
1221
+
1222
+
1223
+
1235
1224
 
1236
-
1225
+
1237
1226
 
1238
-
1227
+
1239
1228
 
1240
-
1229
+
1241
1230
 
1242
-
1231
+
1243
1232
 
1244
-
1233
+
1245
1234
 
1235
+
1246
1236
 
1237
+
1247
1238
 
1248
-
1249
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
1250
- <dd class="tag-source">
1251
- <ul class="dummy">
1252
- <li>
1253
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
1254
- <a href="hubs_basehub.js.html#sunlight-1-line-99">line 99</a>
1255
- </li>
1256
- </ul>
1257
- </dd>
1258
-
1239
+
1240
+ <dt class="tag-source">Source:</dt>
1241
+ <dd class="tag-source">
1242
+ <ul class="dummy">
1243
+ <li>
1244
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line101">line 101</a>
1245
+ </li>
1246
+ </ul>
1247
+ </dd>
1248
+
1259
1249
 
1260
-
1250
+
1261
1251
 
1262
-
1252
+
1263
1253
 
1264
-
1254
+
1265
1255
  </dl>
1266
1256
 
1267
1257
 
1268
-
1269
- </dd>
1270
1258
 
1259
+
1260
+
1261
+
1262
+
1271
1263
 
1272
1264
 
1273
- <hr>
1274
- <dt class="name" id="uuid">
1275
- <h4 id="uuid"><span class="type-signature">&lt;readonly> </span>uuid<span class="type-signature"></span></h4>
1276
1265
 
1277
-
1278
- </dt>
1279
- <dd>
1280
-
1266
+ <h4 class="name" id="uuid">
1267
+ <span class="type-signature">(readonly) </span>uuid<span class="type-signature"></span>
1268
+ </h4>
1269
+
1270
+
1281
1271
 
1282
-
1283
1272
 
1284
-
1285
- <dl class="details">
1286
-
1287
1273
 
1288
- <h5 class="subsection-title">Properties:</h5>
1289
1274
 
1290
- <dl>
1291
1275
 
1292
- <table class="props table table-striped">
1293
- <thead>
1276
+ <h5 class="subsection-title">Properties:</h5>
1277
+
1278
+
1279
+
1280
+ <table class="props">
1281
+ <thead>
1294
1282
  <tr>
1295
-
1283
+
1296
1284
  <th>Name</th>
1285
+
1286
+
1287
+ <th>Type</th>
1288
+
1289
+
1290
+
1291
+
1292
+
1293
+ <th class="last">Description</th>
1294
+ </tr>
1295
+ </thead>
1296
+
1297
+ <tbody>
1298
+
1299
+
1300
+ <tr>
1301
+
1302
+ <td class="name"><code>uuid</code></td>
1303
+
1304
+
1305
+ <td class="type">
1297
1306
 
1307
+
1308
+ <span class="param-type">
1309
+ string
1310
+ </span>
1311
+
1312
+
1298
1313
 
1299
- <th>Type</th>
1300
1314
 
1301
1315
 
1316
+ </td>
1302
1317
 
1303
1318
 
1304
1319
 
1305
- <th class="last">Description</th>
1320
+
1321
+
1322
+ <td class="description last">
1323
+ <p>UUID of the hub</p>
1324
+ </td>
1306
1325
  </tr>
1307
- </thead>
1308
1326
 
1309
- <tbody>
1310
-
1327
+
1328
+ </tbody>
1329
+ </table>
1311
1330
 
1312
- <tr>
1313
-
1314
- <td class="name"><code>uuid</code></td>
1315
-
1316
1331
 
1317
- <td class="type">
1318
-
1319
-
1320
- <span class="param-type">string</span>
1321
1332
 
1322
1333
 
1334
+ <dl class="details">
1335
+
1336
+
1337
+
1338
+
1339
+
1340
+
1341
+
1342
+
1343
+ <dt class="tag-overrides">Overrides:</dt>
1344
+ <dd class="tag-overrides">
1345
+ <ul class="dummy">
1346
+ <li>
1347
+ <a href="BaseHub.html#uuid">BaseHub#uuid</a>
1348
+ </li>
1349
+ </ul>
1350
+ </dd>
1351
+
1352
+
1353
+
1354
+
1355
+
1356
+
1357
+
1358
+
1359
+
1360
+
1361
+
1362
+
1363
+
1364
+
1365
+
1323
1366
 
1324
-
1325
- </td>
1367
+
1326
1368
 
1327
-
1369
+
1370
+ <dt class="tag-source">Source:</dt>
1371
+ <dd class="tag-source">
1372
+ <ul class="dummy">
1373
+ <li>
1374
+ <a href="hubs_basehub.js.html">hubs/basehub.js</a>, <a href="hubs_basehub.js.html#line136">line 136</a>
1375
+ </li>
1376
+ </ul>
1377
+ </dd>
1378
+
1328
1379
 
1329
-
1380
+
1330
1381
 
1331
- <td class="description last"><p>UUID of the hub</p></td>
1332
- </tr>
1382
+
1333
1383
 
1334
-
1335
- </tbody>
1336
- </table>
1384
+
1337
1385
  </dl>
1338
1386
 
1339
-
1340
1387
 
1341
-
1342
1388
 
1343
-
1344
1389
 
1345
-
1346
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
1347
- <dd class="inherited-from">
1348
- <ul class="dummy">
1349
- <li>
1350
- <a href="BaseHub.html#uuid">BaseHub#uuid</a>
1351
- </li>
1352
- </ul>
1353
- </dd>
1354
-
1355
1390
 
1356
-
1357
- <dt class="tag-overrides">Overrides:</dt>
1358
- <dd class="tag-overrides"><ul class="dummy"><li>
1359
- <a href="BaseHub.html#uuid">BaseHub#uuid</a>
1360
- </li></ul></dd>
1361
-
1362
1391
 
1392
+
1393
+
1363
1394
 
1364
1395
 
1365
1396
 
1397
+ <h3 class="subsection-title">Methods</h3>
1366
1398
 
1367
-
1399
+
1400
+
1368
1401
 
1369
-
1370
1402
 
1371
-
1403
+
1372
1404
 
1373
-
1405
+ <span class='name-container'>
1406
+ <a class="link-icon" href="#createVirtualPort">
1407
+ <svg height="20" width="20" style="fill: black;">
1408
+ <use xlink:href="#linkIcon"></use>
1409
+ </svg>
1410
+ </a>
1411
+ <h4 class="name" id="createVirtualPort">
1412
+ <span class="type-signature"></span>createVirtualPort<span class="signature">(firstPortName, secondPortName)</span><span class="type-signature"> &rarr; {Promise}</span>
1413
+ </h4>
1414
+ </span>
1374
1415
 
1375
-
1416
+
1376
1417
 
1377
-
1378
1418
 
1379
1419
 
1420
+ <div class="description">
1421
+ <p>Combines two ports with into a single virtual port.</p>
1422
+ <p>Note: The devices attached to the ports must be of the same device type.</p>
1423
+ </div>
1380
1424
 
1381
-
1382
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
1383
- <dd class="tag-source">
1384
- <ul class="dummy">
1385
- <li>
1386
- <a href="hubs_basehub.js.html">hubs/basehub.js</a>,
1387
- <a href="hubs_basehub.js.html#sunlight-1-line-134">line 134</a>
1388
- </li>
1389
- </ul>
1390
- </dd>
1391
-
1392
1425
 
1393
-
1394
1426
 
1395
-
1396
1427
 
1397
-
1398
- </dl>
1399
1428
 
1400
1429
 
1401
-
1402
- </dd>
1403
1430
 
1404
- </dl>
1405
-
1431
+ <h5>Parameters:</h5>
1432
+
1406
1433
 
1407
-
1408
- <h3 class="subsection-title">Methods</h3>
1434
+ <table class="params">
1435
+ <thead>
1436
+ <tr>
1437
+
1438
+ <th>Name</th>
1439
+
1409
1440
 
1410
- <dl>
1411
-
1412
- <hr>
1413
- <dt>
1414
- <h4 class="name" id="createVirtualPort"><span class="type-signature"></span>createVirtualPort(firstPortName, secondPortName)</h4>
1415
-
1416
-
1417
- </dt>
1418
- <dd>
1441
+ <th>Type</th>
1419
1442
 
1420
-
1421
- <div class="description">
1422
- <p>Combines two ports with into a single virtual port.</p>
1423
- <p>Note: The devices attached to the ports must be of the same device type.</p>
1424
- </div>
1425
-
1443
+
1426
1444
 
1427
-
1445
+
1428
1446
 
1429
-
1447
+ <th class="last">Description</th>
1448
+ </tr>
1449
+ </thead>
1430
1450
 
1451
+ <tbody>
1431
1452
 
1432
-
1433
- <h5>Parameters:</h5>
1434
-
1435
-
1436
- <table class="params table table-striped">
1437
- <thead>
1438
- <tr>
1453
+ <tr>
1439
1454
 
1440
- <th>Name</th>
1455
+ <td class="name"><code>firstPortName</code></td>
1441
1456
 
1442
1457
 
1443
- <th>Type</th>
1458
+ <td class="type">
1459
+
1460
+
1461
+ <span class="param-type">
1462
+ string
1463
+ </span>
1464
+
1465
+
1466
+
1467
+
1468
+
1469
+ </td>
1444
1470
 
1445
1471
 
1446
1472
 
1447
1473
 
1448
1474
 
1449
- <th class="last">Description</th>
1450
- </tr>
1451
- </thead>
1475
+ <td class="description last">
1476
+ <p>First port name</p>
1477
+
1478
+ </td>
1479
+ </tr>
1452
1480
 
1453
- <tbody>
1454
1481
 
1482
+ <tr>
1483
+
1484
+ <td class="name"><code>secondPortName</code></td>
1485
+
1455
1486
 
1456
- <tr>
1457
-
1458
- <td class="name"><code>firstPortName</code></td>
1459
-
1460
-
1461
- <td class="type">
1487
+ <td class="type">
1488
+
1462
1489
 
1463
-
1464
- <span class="param-type">string</span>
1490
+ <span class="param-type">
1491
+ string
1492
+ </span>
1465
1493
 
1494
+
1466
1495
 
1467
1496
 
1468
-
1469
- </td>
1497
+
1498
+ </td>
1470
1499
 
1471
-
1500
+
1472
1501
 
1473
-
1502
+
1474
1503
 
1475
- <td class="description last"><p>First port name</p></td>
1476
- </tr>
1504
+ <td class="description last">
1505
+ <p>Second port name</p>
1506
+
1507
+ </td>
1508
+ </tr>
1477
1509
 
1478
1510
 
1511
+ </tbody>
1512
+ </table>
1479
1513
 
1480
- <tr>
1481
-
1482
- <td class="name"><code>secondPortName</code></td>
1483
-
1484
-
1485
- <td class="type">
1486
-
1487
-
1488
- <span class="param-type">string</span>
1489
1514
 
1490
1515
 
1491
1516
 
1492
-
1493
- </td>
1494
1517
 
1495
-
1518
+ <dl class="details">
1496
1519
 
1497
-
1520
+
1498
1521
 
1499
- <td class="description last"><p>Second port name</p></td>
1500
- </tr>
1522
+
1501
1523
 
1502
-
1503
- </tbody>
1504
- </table>
1524
+
1525
+ <dt class="inherited-from">Inherited From:</dt>
1526
+ <dd class="inherited-from">
1527
+ <ul class="dummy">
1528
+ <li>
1529
+ <a href="LPF2Hub.html#createVirtualPort">LPF2Hub#createVirtualPort</a>
1530
+ </li>
1531
+ </ul>
1532
+ </dd>
1533
+
1505
1534
 
1506
-
1535
+
1507
1536
 
1508
-
1509
- <dl class="details">
1510
-
1537
+
1511
1538
 
1512
-
1539
+
1513
1540
 
1514
-
1541
+
1515
1542
 
1516
-
1517
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
1518
- <dd class="inherited-from">
1519
- <ul class="dummy">
1520
- <li>
1521
- <a href="LPF2Hub.html#createVirtualPort">LPF2Hub#createVirtualPort</a>
1522
- </li>
1523
- </ul>
1524
- </dd>
1525
-
1543
+
1526
1544
 
1527
-
1545
+
1528
1546
 
1529
-
1547
+
1530
1548
 
1531
-
1549
+
1532
1550
 
1533
-
1551
+
1534
1552
 
1535
-
1553
+
1554
+ <dt class="tag-source">Source:</dt>
1555
+ <dd class="tag-source">
1556
+ <ul class="dummy">
1557
+ <li>
1558
+ <a href="hubs_lpf2hub.js.html">hubs/lpf2hub.js</a>, <a href="hubs_lpf2hub.js.html#line90">line 90</a>
1559
+ </li>
1560
+ </ul>
1561
+ </dd>
1562
+
1536
1563
 
1537
-
1564
+
1538
1565
 
1539
-
1566
+
1540
1567
 
1541
-
1568
+
1569
+ </dl>
1542
1570
 
1543
-
1544
1571
 
1545
1572
 
1546
1573
 
1547
-
1548
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
1549
- <dd class="tag-source">
1550
- <ul class="dummy">
1551
- <li>
1552
- <a href="hubs_lpf2hub.js.html">hubs/lpf2hub.js</a>,
1553
- <a href="hubs_lpf2hub.js.html#sunlight-1-line-90">line 90</a>
1554
- </li>
1555
- </ul>
1556
- </dd>
1557
-
1558
1574
 
1559
-
1560
1575
 
1561
-
1562
1576
 
1563
-
1564
- </dl>
1565
1577
 
1566
1578
 
1567
-
1568
1579
 
1569
-
1570
1580
 
1571
-
1572
1581
 
1573
-
1574
1582
 
1575
-
1576
1583
 
1577
-
1578
- <h5>Returns:</h5>
1579
-
1580
-
1581
- <div class="param-desc">
1582
- <p>Resolved upon successful issuance of command.</p>
1583
- </div>
1584
+
1585
+
1584
1586
 
1585
1587
 
1588
+
1586
1589
 
1587
- <dl>
1588
- <dt>
1589
- Type
1590
- </dt>
1591
- <dd>
1592
-
1593
- <span class="param-type">Promise</span>
1590
+ <span class='name-container'>
1591
+ <a class="link-icon" href="#setName">
1592
+ <svg height="20" width="20" style="fill: black;">
1593
+ <use xlink:href="#linkIcon"></use>
1594
+ </svg>
1595
+ </a>
1596
+ <h4 class="name" id="setName">
1597
+ <span class="type-signature"></span>setName<span class="signature">(name)</span><span class="type-signature"> &rarr; {Promise}</span>
1598
+ </h4>
1599
+ </span>
1594
1600
 
1601
+
1595
1602
 
1596
1603
 
1597
- </dd>
1598
- </dl>
1599
1604
 
1605
+ <div class="description">
1606
+ <p>Set the name of the Hub.</p>
1607
+ </div>
1600
1608
 
1601
-
1602
1609
 
1603
-
1604
- </dd>
1605
1610
 
1606
-
1607
-
1608
- <hr>
1609
- <dt>
1610
- <h4 class="name" id="setName"><span class="type-signature"></span>setName(name)</h4>
1611
-
1612
-
1613
- </dt>
1614
- <dd>
1615
1611
 
1616
-
1617
- <div class="description">
1618
- <p>Set the name of the Hub.</p>
1619
- </div>
1620
-
1621
1612
 
1622
-
1623
1613
 
1624
-
1625
1614
 
1626
-
1627
-
1628
- <h5>Parameters:</h5>
1629
-
1615
+ <h5>Parameters:</h5>
1616
+
1630
1617
 
1631
- <table class="params table table-striped">
1632
- <thead>
1618
+ <table class="params">
1619
+ <thead>
1633
1620
  <tr>
1634
-
1621
+
1635
1622
  <th>Name</th>
1636
-
1623
+
1637
1624
 
1638
- <th>Type</th>
1625
+ <th>Type</th>
1639
1626
 
1640
-
1627
+
1641
1628
 
1642
-
1629
+
1643
1630
 
1644
- <th class="last">Description</th>
1631
+ <th class="last">Description</th>
1645
1632
  </tr>
1646
- </thead>
1633
+ </thead>
1647
1634
 
1648
- <tbody>
1635
+ <tbody>
1649
1636
 
1637
+ <tr>
1638
+
1639
+ <td class="name"><code>name</code></td>
1640
+
1650
1641
 
1651
- <tr>
1652
-
1653
- <td class="name"><code>name</code></td>
1654
-
1655
-
1656
- <td class="type">
1642
+ <td class="type">
1643
+
1657
1644
 
1658
-
1659
- <span class="param-type">string</span>
1645
+ <span class="param-type">
1646
+ string
1647
+ </span>
1660
1648
 
1649
+
1661
1650
 
1662
1651
 
1663
-
1664
- </td>
1652
+
1653
+ </td>
1665
1654
 
1666
-
1655
+
1667
1656
 
1668
-
1657
+
1669
1658
 
1670
- <td class="description last"><p>New name of the hub (14 characters or less, ASCII only).</p></td>
1671
- </tr>
1659
+ <td class="description last">
1660
+ <p>New name of the hub (14 characters or less, ASCII only).</p>
1661
+
1662
+ </td>
1663
+ </tr>
1672
1664
 
1673
1665
 
1674
- </tbody>
1666
+ </tbody>
1675
1667
  </table>
1676
1668
 
1677
-
1678
1669
 
1679
-
1680
- <dl class="details">
1681
-
1682
1670
 
1683
-
1684
1671
 
1685
-
1686
1672
 
1687
-
1688
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
1689
- <dd class="inherited-from">
1690
- <ul class="dummy">
1691
- <li>
1692
- <a href="LPF2Hub.html#setName">LPF2Hub#setName</a>
1693
- </li>
1694
- </ul>
1695
- </dd>
1696
-
1673
+ <dl class="details">
1697
1674
 
1698
-
1675
+
1699
1676
 
1700
-
1677
+
1701
1678
 
1702
-
1679
+
1680
+ <dt class="inherited-from">Inherited From:</dt>
1681
+ <dd class="inherited-from">
1682
+ <ul class="dummy">
1683
+ <li>
1684
+ <a href="LPF2Hub.html#setName">LPF2Hub#setName</a>
1685
+ </li>
1686
+ </ul>
1687
+ </dd>
1688
+
1703
1689
 
1704
-
1690
+
1705
1691
 
1706
-
1692
+
1707
1693
 
1708
-
1694
+
1709
1695
 
1710
-
1696
+
1711
1697
 
1712
-
1698
+
1713
1699
 
1714
-
1700
+
1715
1701
 
1702
+
1716
1703
 
1704
+
1717
1705
 
1718
-
1719
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
1720
- <dd class="tag-source">
1721
- <ul class="dummy">
1722
- <li>
1723
- <a href="hubs_lpf2hub.js.html">hubs/lpf2hub.js</a>,
1724
- <a href="hubs_lpf2hub.js.html#sunlight-1-line-61">line 61</a>
1725
- </li>
1726
- </ul>
1727
- </dd>
1728
-
1706
+
1729
1707
 
1730
-
1708
+
1709
+ <dt class="tag-source">Source:</dt>
1710
+ <dd class="tag-source">
1711
+ <ul class="dummy">
1712
+ <li>
1713
+ <a href="hubs_lpf2hub.js.html">hubs/lpf2hub.js</a>, <a href="hubs_lpf2hub.js.html#line61">line 61</a>
1714
+ </li>
1715
+ </ul>
1716
+ </dd>
1717
+
1731
1718
 
1732
-
1719
+
1733
1720
 
1734
-
1735
- </dl>
1721
+
1736
1722
 
1723
+
1724
+ </dl>
1737
1725
 
1738
-
1739
1726
 
1740
-
1741
1727
 
1742
-
1743
1728
 
1744
-
1745
1729
 
1746
-
1747
1730
 
1748
-
1749
- <h5>Returns:</h5>
1750
-
1751
-
1752
- <div class="param-desc">
1753
- <p>Resolved upon successful issuance of command.</p>
1754
- </div>
1755
1731
 
1756
1732
 
1757
1733
 
1758
- <dl>
1759
- <dt>
1760
- Type
1761
- </dt>
1762
- <dd>
1763
-
1764
- <span class="param-type">Promise</span>
1765
1734
 
1766
1735
 
1767
1736
 
1768
- </dd>
1769
- </dl>
1770
1737
 
1771
1738
 
1739
+
1772
1740
 
1773
1741
 
1774
-
1775
- </dd>
1776
1742
 
1777
-
1778
-
1779
- <hr>
1780
- <dt>
1781
- <h4 class="name" id="shutdown"><span class="type-signature"></span>shutdown()</h4>
1782
-
1783
-
1784
- </dt>
1785
- <dd>
1743
+
1786
1744
 
1787
-
1788
- <div class="description">
1789
- <p>Shutdown the Hub.</p>
1790
- </div>
1791
-
1745
+ <span class='name-container'>
1746
+ <a class="link-icon" href="#shutdown">
1747
+ <svg height="20" width="20" style="fill: black;">
1748
+ <use xlink:href="#linkIcon"></use>
1749
+ </svg>
1750
+ </a>
1751
+ <h4 class="name" id="shutdown">
1752
+ <span class="type-signature"></span>shutdown<span class="signature">()</span><span class="type-signature"> &rarr; {Promise}</span>
1753
+ </h4>
1754
+ </span>
1792
1755
 
1793
-
1756
+
1794
1757
 
1795
-
1796
1758
 
1797
-
1798
-
1799
1759
 
1800
-
1801
- <dl class="details">
1802
-
1760
+ <div class="description">
1761
+ <p>Shutdown the Hub.</p>
1762
+ </div>
1803
1763
 
1804
-
1805
1764
 
1806
-
1807
1765
 
1808
-
1809
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
1810
- <dd class="inherited-from">
1811
- <ul class="dummy">
1812
- <li>
1813
- <a href="LPF2Hub.html#shutdown">LPF2Hub#shutdown</a>
1814
- </li>
1815
- </ul>
1816
- </dd>
1817
-
1818
1766
 
1819
-
1820
1767
 
1821
-
1822
1768
 
1823
-
1824
1769
 
1825
-
1826
1770
 
1827
-
1828
1771
 
1829
-
1830
1772
 
1831
-
1773
+ <dl class="details">
1832
1774
 
1833
-
1775
+
1834
1776
 
1835
-
1777
+
1836
1778
 
1779
+
1780
+ <dt class="inherited-from">Inherited From:</dt>
1781
+ <dd class="inherited-from">
1782
+ <ul class="dummy">
1783
+ <li>
1784
+ <a href="LPF2Hub.html#shutdown">LPF2Hub#shutdown</a>
1785
+ </li>
1786
+ </ul>
1787
+ </dd>
1788
+
1837
1789
 
1790
+
1838
1791
 
1839
-
1840
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
1841
- <dd class="tag-source">
1842
- <ul class="dummy">
1843
- <li>
1844
- <a href="hubs_lpf2hub.js.html">hubs/lpf2hub.js</a>,
1845
- <a href="hubs_lpf2hub.js.html#sunlight-1-line-53">line 53</a>
1846
- </li>
1847
- </ul>
1848
- </dd>
1849
-
1792
+
1850
1793
 
1851
-
1794
+
1852
1795
 
1853
-
1796
+
1854
1797
 
1855
-
1856
- </dl>
1798
+
1857
1799
 
1800
+
1858
1801
 
1859
-
1802
+
1860
1803
 
1861
-
1804
+
1862
1805
 
1863
-
1806
+
1864
1807
 
1865
-
1808
+
1809
+ <dt class="tag-source">Source:</dt>
1810
+ <dd class="tag-source">
1811
+ <ul class="dummy">
1812
+ <li>
1813
+ <a href="hubs_lpf2hub.js.html">hubs/lpf2hub.js</a>, <a href="hubs_lpf2hub.js.html#line53">line 53</a>
1814
+ </li>
1815
+ </ul>
1816
+ </dd>
1817
+
1866
1818
 
1867
-
1819
+
1868
1820
 
1869
-
1870
- <h5>Returns:</h5>
1871
-
1872
-
1873
- <div class="param-desc">
1874
- <p>Resolved upon successful disconnect.</p>
1875
- </div>
1821
+
1876
1822
 
1823
+
1824
+ </dl>
1877
1825
 
1878
1826
 
1879
- <dl>
1880
- <dt>
1881
- Type
1882
- </dt>
1883
- <dd>
1884
-
1885
- <span class="param-type">Promise</span>
1886
1827
 
1887
1828
 
1888
1829
 
1889
- </dd>
1890
- </dl>
1891
1830
 
1892
1831
 
1893
-
1894
1832
 
1895
-
1896
- </dd>
1897
1833
 
1898
- </dl>
1899
-
1900
1834
 
1901
-
1902
1835
 
1903
-
1904
- <h3 class="subsection-title">Events</h3>
1905
1836
 
1906
- <dl>
1907
-
1908
- <hr>
1909
- <dt>
1910
- <h4 class="name" id="event:button">button</h4>
1911
-
1912
-
1913
- </dt>
1914
- <dd>
1915
1837
 
1916
-
1917
- <div class="description">
1918
- <p>Emits when a button is pressed.</p>
1919
- </div>
1920
-
1921
1838
 
1839
+
1922
1840
 
1923
1841
 
1924
1842
 
1925
1843
 
1926
1844
 
1927
-
1928
- <h5>Parameters:</h5>
1929
-
1845
+ <h3 class="subsection-title">Events</h3>
1930
1846
 
1931
- <table class="params table table-striped">
1932
- <thead>
1933
- <tr>
1934
-
1935
- <th>Name</th>
1847
+
1936
1848
 
1937
1849
 
1938
- <th>Type</th>
1939
1850
 
1940
-
1851
+
1941
1852
 
1942
-
1853
+ <span class='name-container'>
1854
+ <a class="link-icon" href="#event:button">
1855
+ <svg height="20" width="20" style="fill: black;">
1856
+ <use xlink:href="#linkIcon"></use>
1857
+ </svg>
1858
+ </a>
1859
+ <h4 class="name" id="event:button">
1860
+ <span class="type-signature"></span>button<span class="type-signature"></span>
1861
+ </h4>
1862
+ </span>
1943
1863
 
1944
- <th class="last">Description</th>
1945
- </tr>
1946
- </thead>
1864
+
1947
1865
 
1948
- <tbody>
1949
-
1950
1866
 
1951
- <tr>
1952
-
1953
- <td class="name"><code>button</code></td>
1954
-
1955
1867
 
1956
- <td class="type">
1957
-
1958
-
1959
- <span class="param-type">string</span>
1868
+ <div class="description">
1869
+ <p>Emits when a button is pressed.</p>
1870
+ </div>
1960
1871
 
1961
1872
 
1962
1873
 
1963
-
1964
- </td>
1965
1874
 
1966
-
1967
1875
 
1968
-
1969
1876
 
1970
- <td class="description last"></td>
1971
- </tr>
1972
1877
 
1973
-
1878
+ <h5>Parameters:</h5>
1879
+
1974
1880
 
1975
- <tr>
1976
-
1977
- <td class="name"><code>state</code></td>
1978
-
1881
+ <table class="params">
1882
+ <thead>
1883
+ <tr>
1884
+
1885
+ <th>Name</th>
1886
+
1979
1887
 
1980
- <td class="type">
1981
-
1982
-
1983
- <span class="param-type">ButtonState</span>
1888
+ <th>Type</th>
1984
1889
 
1890
+
1985
1891
 
1892
+
1986
1893
 
1987
-
1988
- </td>
1894
+ <th class="last">Description</th>
1895
+ </tr>
1896
+ </thead>
1989
1897
 
1990
-
1898
+ <tbody>
1899
+
1900
+ <tr>
1901
+
1902
+ <td class="name"><code>button</code></td>
1903
+
1991
1904
 
1905
+ <td class="type">
1906
+
1992
1907
 
1993
-
1994
- <td class="description last"></td>
1995
- </tr>
1996
-
1997
-
1998
- </tbody>
1999
- </table>
1908
+ <span class="param-type">
1909
+ string
1910
+ </span>
2000
1911
 
2001
1912
 
2002
1913
 
2003
-
2004
- <dl class="details">
2005
-
2006
1914
 
2007
-
1915
+
1916
+ </td>
2008
1917
 
2009
-
1918
+
2010
1919
 
2011
-
2012
- <dt class="inherited-from method-doc-label method-doc-details-label">Inherited From:</dt>
2013
- <dd class="inherited-from">
2014
- <ul class="dummy">
2015
- <li>
2016
- <a href="LPF2Hub.html#event:button">LPF2Hub#event:button</a>
2017
- </li>
2018
- </ul>
2019
- </dd>
2020
-
1920
+
2021
1921
 
2022
-
1922
+ <td class="description last">
1923
+
1924
+
1925
+ </td>
1926
+ </tr>
2023
1927
 
2024
1928
 
1929
+ <tr>
1930
+
1931
+ <td class="name"><code>state</code></td>
1932
+
2025
1933
 
2026
-
1934
+ <td class="type">
1935
+
1936
+
1937
+ <span class="param-type">
1938
+ <a href="global.html#ButtonState">ButtonState</a>
1939
+ </span>
2027
1940
 
2028
1941
 
2029
1942
 
2030
-
2031
-
2032
-
2033
-
2034
-
2035
-
2036
-
2037
-
2038
-
2039
-
2040
1943
 
1944
+
1945
+ </td>
2041
1946
 
2042
-
2043
- <dt class="tag-source method-doc-label method-doc-details-label">Source:</dt>
2044
- <dd class="tag-source">
2045
- <ul class="dummy">
2046
- <li>
2047
- <a href="hubs_lpf2hub.js.html">hubs/lpf2hub.js</a>,
2048
- <a href="hubs_lpf2hub.js.html#sunlight-1-line-182">line 182</a>
2049
- </li>
2050
- </ul>
2051
- </dd>
2052
-
2053
-
2054
-
2055
-
2056
-
2057
-
2058
-
2059
- </dl>
2060
-
2061
-
2062
-
1947
+
2063
1948
 
2064
-
1949
+
2065
1950
 
2066
-
1951
+ <td class="description last">
1952
+
1953
+
1954
+ </td>
1955
+ </tr>
2067
1956
 
2068
1957
 
1958
+ </tbody>
1959
+ </table>
2069
1960
 
2070
-
2071
1961
 
2072
-
2073
1962
 
2074
-
2075
- </dd>
2076
1963
 
2077
- </dl>
2078
-
2079
- </article>
2080
1964
 
2081
- </section>
1965
+ <dl class="details">
2082
1966
 
1967
+
2083
1968
 
1969
+
2084
1970
 
1971
+
1972
+ <dt class="inherited-from">Inherited From:</dt>
1973
+ <dd class="inherited-from">
1974
+ <ul class="dummy">
1975
+ <li>
1976
+ <a href="LPF2Hub.html#event:button">LPF2Hub#event:button</a>
1977
+ </li>
1978
+ </ul>
1979
+ </dd>
1980
+
2085
1981
 
2086
- </div>
2087
- </div>
1982
+
2088
1983
 
2089
- <div class="clearfix"></div>
1984
+
2090
1985
 
2091
-
2092
- <div class="col-md-3">
2093
- <div id="toc" class="col-md-3 hidden-xs hidden-sm hidden-md"></div>
2094
- </div>
2095
-
1986
+
2096
1987
 
2097
- </div>
2098
- </div>
1988
+
2099
1989
 
1990
+
2100
1991
 
2101
- <div class="modal fade" id="searchResults">
2102
- <div class="modal-dialog">
2103
- <div class="modal-content">
2104
- <div class="modal-header">
2105
- <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
2106
- <h4 class="modal-title">Search results</h4>
2107
- </div>
2108
- <div class="modal-body"></div>
2109
- <div class="modal-footer">
2110
- <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
2111
- </div>
2112
- </div><!-- /.modal-content -->
2113
- </div><!-- /.modal-dialog -->
2114
- </div>
1992
+
2115
1993
 
1994
+
2116
1995
 
2117
- <footer>
1996
+
2118
1997
 
1998
+
2119
1999
 
2120
- <span class="copyright">
2121
- node-poweredup by Nathan Kellenicki licensed under the MIT license.
2122
- </span>
2000
+
2001
+ <dt class="tag-source">Source:</dt>
2002
+ <dd class="tag-source">
2003
+ <ul class="dummy">
2004
+ <li>
2005
+ <a href="hubs_lpf2hub.js.html">hubs/lpf2hub.js</a>, <a href="hubs_lpf2hub.js.html#line182">line 182</a>
2006
+ </li>
2007
+ </ul>
2008
+ </dd>
2009
+
2123
2010
 
2124
- <span class="jsdoc-message">
2125
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a>
2126
-
2127
- on Tue Apr 6th 2021
2128
-
2129
- using the <a href="https://github.com/docstrap/docstrap">DocStrap template</a>.
2130
- </span>
2131
- </footer>
2011
+
2132
2012
 
2133
- <script src="scripts/docstrap.lib.js"></script>
2134
- <script src="scripts/toc.js"></script>
2013
+
2135
2014
 
2136
- <script type="text/javascript" src="scripts/fulltext-search-ui.js"></script>
2015
+
2016
+ </dl>
2137
2017
 
2138
2018
 
2139
- <script>
2140
- $( function () {
2141
- $( "[id*='$']" ).each( function () {
2142
- var $this = $( this );
2143
2019
 
2144
- $this.attr( "id", $this.attr( "id" ).replace( "$", "__" ) );
2145
- } );
2146
2020
 
2147
- $( ".tutorial-section pre, .readme-section pre, pre.prettyprint.source" ).each( function () {
2148
- var $this = $( this );
2149
2021
 
2150
- var example = $this.find( "code" );
2151
- exampleText = example.html();
2152
- var lang = /{@lang (.*?)}/.exec( exampleText );
2153
- if ( lang && lang[1] ) {
2154
- exampleText = exampleText.replace( lang[0], "" );
2155
- example.html( exampleText );
2156
- lang = lang[1];
2157
- } else {
2158
- var langClassMatch = example.parent()[0].className.match(/lang\-(\S+)/);
2159
- lang = langClassMatch ? langClassMatch[1] : "javascript";
2160
- }
2161
2022
 
2162
- if ( lang ) {
2163
2023
 
2164
- $this
2165
- .addClass( "sunlight-highlight-" + lang )
2166
- .addClass( "linenums" )
2167
- .html( example.html() );
2168
2024
 
2169
- }
2170
- } );
2171
2025
 
2172
- Sunlight.highlightAll( {
2173
- lineNumbers : true,
2174
- showMenu : true,
2175
- enableDoclinks : true
2176
- } );
2177
2026
 
2178
- $.catchAnchorLinks( {
2179
- navbarOffset: 10
2180
- } );
2181
- $( "#toc" ).toc( {
2182
- anchorName : function ( i, heading, prefix ) {
2183
- return $( heading ).attr( "id" ) || ( prefix + i );
2184
- },
2185
- selectors : "#toc-content h1,#toc-content h2,#toc-content h3,#toc-content h4",
2186
- showAndHide : false,
2187
- smoothScrolling: true
2188
- } );
2189
2027
 
2190
- $( "#main span[id^='toc']" ).addClass( "toc-shim" );
2191
- $( '.dropdown-toggle' ).dropdown();
2192
2028
 
2193
- $( "table" ).each( function () {
2194
- var $this = $( this );
2195
- $this.addClass('table');
2196
- } );
2197
2029
 
2198
- } );
2199
- </script>
2200
2030
 
2031
+
2032
+
2033
+ </article>
2034
+ </section>
2201
2035
 
2202
2036
 
2203
- <!--Navigation and Symbol Display-->
2204
2037
 
2205
2038
 
2206
- <!--Google Analytics-->
2039
+ </div>
2207
2040
 
2041
+ <br class="clear">
2208
2042
 
2043
+ <footer>
2044
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a>
2045
+ </footer>
2209
2046
 
2210
- <script type="text/javascript">
2211
- $(document).ready(function() {
2212
- SearcherDisplay.init();
2213
- });
2214
- </script>
2047
+ <script src="scripts/linenumber.js"></script>
2048
+ <script src="scripts/pagelocation.js"></script>
2215
2049
 
2050
+
2216
2051
 
2217
2052
  </body>
2218
2053
  </html>