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
@@ -0,0 +1,4322 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+
5
+ <meta charset="utf-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+
8
+ <title>
9
+ PoweredUP - 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>
16
+
17
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
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 -->
31
+ </head>
32
+
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
+
65
+
66
+ </ul>
67
+ </div>
68
+
69
+ <nav>
70
+ <h3 class="reference-title">
71
+ node-poweredup Reference
72
+ </h3>
73
+
74
+
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>
78
+
79
+ <div id="main">
80
+
81
+ <h1 class="page-title">
82
+ PoweredUP
83
+ </h1>
84
+
85
+
86
+
87
+
88
+ <section>
89
+ <header>
90
+
91
+ <h2>
92
+
93
+ PoweredUP
94
+
95
+ </h2>
96
+
97
+
98
+
99
+ </header>
100
+
101
+ <article>
102
+ <div class="container-overview">
103
+
104
+
105
+
106
+
107
+
108
+
109
+ <span class='name-container'>
110
+ <a class="link-icon" href="#PoweredUP">
111
+ <svg height="20" width="20" style="fill: black;">
112
+ <use xlink:href="#linkIcon"></use>
113
+ </svg>
114
+ </a>
115
+ <h4 class="name" id="PoweredUP">
116
+ <span class="type-signature"></span>new PoweredUP<span class="signature">()</span><span class="type-signature"></span>
117
+ </h4>
118
+ </span>
119
+
120
+
121
+
122
+
123
+
124
+
125
+
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+ <dl class="details">
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+
152
+
153
+
154
+
155
+
156
+
157
+
158
+
159
+
160
+ <dt class="tag-source">Source:</dt>
161
+ <dd class="tag-source">
162
+ <ul class="dummy">
163
+ <li>
164
+ <a href="poweredup-node.js.html">poweredup-node.js</a>, <a href="poweredup-node.js.html#line65">line 65</a>
165
+ </li>
166
+ </ul>
167
+ </dd>
168
+
169
+
170
+
171
+
172
+
173
+
174
+
175
+ </dl>
176
+
177
+
178
+
179
+
180
+
181
+
182
+
183
+
184
+
185
+
186
+
187
+
188
+
189
+
190
+
191
+ </div>
192
+
193
+
194
+ <h3 class="subsection-title">Extends</h3>
195
+
196
+
197
+
198
+
199
+ <ul>
200
+ <li>EventEmitter</li>
201
+ </ul>
202
+
203
+
204
+
205
+
206
+
207
+
208
+
209
+
210
+
211
+
212
+
213
+
214
+
215
+
216
+
217
+ <h3 class="subsection-title">Methods</h3>
218
+
219
+
220
+
221
+
222
+
223
+
224
+
225
+ <span class='name-container'>
226
+ <a class="link-icon" href="#getHubByPrimaryMACAddress">
227
+ <svg height="20" width="20" style="fill: black;">
228
+ <use xlink:href="#linkIcon"></use>
229
+ </svg>
230
+ </a>
231
+ <h4 class="name" id="getHubByPrimaryMACAddress">
232
+ <span class="type-signature"></span>getHubByPrimaryMACAddress<span class="signature">(address)</span><span class="type-signature"> &rarr; {<a href="BaseHub.html">BaseHub</a>}</span>
233
+ </h4>
234
+ </span>
235
+
236
+
237
+
238
+
239
+
240
+ <div class="description">
241
+ <p>Retrieve a Powered UP Hub by primary MAC address.</p>
242
+ </div>
243
+
244
+
245
+
246
+
247
+
248
+
249
+
250
+ <h5>Parameters:</h5>
251
+
252
+
253
+ <table class="params">
254
+ <thead>
255
+ <tr>
256
+
257
+ <th>Name</th>
258
+
259
+
260
+ <th>Type</th>
261
+
262
+
263
+
264
+
265
+
266
+ <th class="last">Description</th>
267
+ </tr>
268
+ </thead>
269
+
270
+ <tbody>
271
+
272
+ <tr>
273
+
274
+ <td class="name"><code>address</code></td>
275
+
276
+
277
+ <td class="type">
278
+
279
+
280
+ <span class="param-type">
281
+ string
282
+ </span>
283
+
284
+
285
+
286
+
287
+
288
+ </td>
289
+
290
+
291
+
292
+
293
+
294
+ <td class="description last">
295
+
296
+
297
+ </td>
298
+ </tr>
299
+
300
+
301
+ </tbody>
302
+ </table>
303
+
304
+
305
+
306
+
307
+
308
+ <dl class="details">
309
+
310
+
311
+
312
+
313
+
314
+
315
+
316
+
317
+
318
+
319
+
320
+
321
+
322
+
323
+
324
+
325
+
326
+
327
+
328
+
329
+
330
+
331
+
332
+
333
+
334
+
335
+ <dt class="tag-source">Source:</dt>
336
+ <dd class="tag-source">
337
+ <ul class="dummy">
338
+ <li>
339
+ <a href="poweredup-browser.js.html">poweredup-browser.js</a>, <a href="poweredup-browser.js.html#line97">line 97</a>
340
+ </li>
341
+ </ul>
342
+ </dd>
343
+
344
+
345
+
346
+
347
+
348
+
349
+
350
+ </dl>
351
+
352
+
353
+
354
+
355
+
356
+
357
+
358
+
359
+
360
+
361
+
362
+
363
+
364
+
365
+
366
+
367
+
368
+
369
+
370
+
371
+ <span class='name-container'>
372
+ <a class="link-icon" href="#getHubByPrimaryMACAddress">
373
+ <svg height="20" width="20" style="fill: black;">
374
+ <use xlink:href="#linkIcon"></use>
375
+ </svg>
376
+ </a>
377
+ <h4 class="name" id="getHubByPrimaryMACAddress">
378
+ <span class="type-signature"></span>getHubByPrimaryMACAddress<span class="signature">(address)</span><span class="type-signature"> &rarr; {<a href="BaseHub.html">BaseHub</a>}</span>
379
+ </h4>
380
+ </span>
381
+
382
+
383
+
384
+
385
+
386
+ <div class="description">
387
+ <p>Retrieve a Powered UP Hub by primary MAC address.</p>
388
+ </div>
389
+
390
+
391
+
392
+
393
+
394
+
395
+
396
+ <h5>Parameters:</h5>
397
+
398
+
399
+ <table class="params">
400
+ <thead>
401
+ <tr>
402
+
403
+ <th>Name</th>
404
+
405
+
406
+ <th>Type</th>
407
+
408
+
409
+
410
+
411
+
412
+ <th class="last">Description</th>
413
+ </tr>
414
+ </thead>
415
+
416
+ <tbody>
417
+
418
+ <tr>
419
+
420
+ <td class="name"><code>address</code></td>
421
+
422
+
423
+ <td class="type">
424
+
425
+
426
+ <span class="param-type">
427
+ string
428
+ </span>
429
+
430
+
431
+
432
+
433
+
434
+ </td>
435
+
436
+
437
+
438
+
439
+
440
+ <td class="description last">
441
+
442
+
443
+ </td>
444
+ </tr>
445
+
446
+
447
+ </tbody>
448
+ </table>
449
+
450
+
451
+
452
+
453
+
454
+ <dl class="details">
455
+
456
+
457
+
458
+
459
+
460
+
461
+
462
+
463
+
464
+
465
+
466
+
467
+
468
+
469
+
470
+
471
+
472
+
473
+
474
+
475
+
476
+
477
+
478
+
479
+
480
+
481
+ <dt class="tag-source">Source:</dt>
482
+ <dd class="tag-source">
483
+ <ul class="dummy">
484
+ <li>
485
+ <a href="poweredup-node.js.html">poweredup-node.js</a>, <a href="poweredup-node.js.html#line120">line 120</a>
486
+ </li>
487
+ </ul>
488
+ </dd>
489
+
490
+
491
+
492
+
493
+
494
+
495
+
496
+ </dl>
497
+
498
+
499
+
500
+
501
+
502
+
503
+
504
+
505
+
506
+
507
+
508
+
509
+
510
+
511
+
512
+
513
+
514
+
515
+
516
+
517
+ <span class='name-container'>
518
+ <a class="link-icon" href="#getHubByUUID">
519
+ <svg height="20" width="20" style="fill: black;">
520
+ <use xlink:href="#linkIcon"></use>
521
+ </svg>
522
+ </a>
523
+ <h4 class="name" id="getHubByUUID">
524
+ <span class="type-signature"></span>getHubByUUID<span class="signature">(uuid)</span><span class="type-signature"> &rarr; {<a href="BaseHub.html">BaseHub</a>|null}</span>
525
+ </h4>
526
+ </span>
527
+
528
+
529
+
530
+
531
+
532
+ <div class="description">
533
+ <p>Retrieve a Powered UP Hub by UUID.</p>
534
+ </div>
535
+
536
+
537
+
538
+
539
+
540
+
541
+
542
+ <h5>Parameters:</h5>
543
+
544
+
545
+ <table class="params">
546
+ <thead>
547
+ <tr>
548
+
549
+ <th>Name</th>
550
+
551
+
552
+ <th>Type</th>
553
+
554
+
555
+
556
+
557
+
558
+ <th class="last">Description</th>
559
+ </tr>
560
+ </thead>
561
+
562
+ <tbody>
563
+
564
+ <tr>
565
+
566
+ <td class="name"><code>uuid</code></td>
567
+
568
+
569
+ <td class="type">
570
+
571
+
572
+ <span class="param-type">
573
+ string
574
+ </span>
575
+
576
+
577
+
578
+
579
+
580
+ </td>
581
+
582
+
583
+
584
+
585
+
586
+ <td class="description last">
587
+
588
+
589
+ </td>
590
+ </tr>
591
+
592
+
593
+ </tbody>
594
+ </table>
595
+
596
+
597
+
598
+
599
+
600
+ <dl class="details">
601
+
602
+
603
+
604
+
605
+
606
+
607
+
608
+
609
+
610
+
611
+
612
+
613
+
614
+
615
+
616
+
617
+
618
+
619
+
620
+
621
+
622
+
623
+
624
+
625
+
626
+
627
+ <dt class="tag-source">Source:</dt>
628
+ <dd class="tag-source">
629
+ <ul class="dummy">
630
+ <li>
631
+ <a href="poweredup-browser.js.html">poweredup-browser.js</a>, <a href="poweredup-browser.js.html#line88">line 88</a>
632
+ </li>
633
+ </ul>
634
+ </dd>
635
+
636
+
637
+
638
+
639
+
640
+
641
+
642
+ </dl>
643
+
644
+
645
+
646
+
647
+
648
+
649
+
650
+
651
+
652
+
653
+
654
+
655
+
656
+
657
+
658
+
659
+
660
+
661
+
662
+
663
+ <span class='name-container'>
664
+ <a class="link-icon" href="#getHubByUUID">
665
+ <svg height="20" width="20" style="fill: black;">
666
+ <use xlink:href="#linkIcon"></use>
667
+ </svg>
668
+ </a>
669
+ <h4 class="name" id="getHubByUUID">
670
+ <span class="type-signature"></span>getHubByUUID<span class="signature">(uuid)</span><span class="type-signature"> &rarr; {<a href="BaseHub.html">BaseHub</a>|null}</span>
671
+ </h4>
672
+ </span>
673
+
674
+
675
+
676
+
677
+
678
+ <div class="description">
679
+ <p>Retrieve a Powered UP Hub by UUID.</p>
680
+ </div>
681
+
682
+
683
+
684
+
685
+
686
+
687
+
688
+ <h5>Parameters:</h5>
689
+
690
+
691
+ <table class="params">
692
+ <thead>
693
+ <tr>
694
+
695
+ <th>Name</th>
696
+
697
+
698
+ <th>Type</th>
699
+
700
+
701
+
702
+
703
+
704
+ <th class="last">Description</th>
705
+ </tr>
706
+ </thead>
707
+
708
+ <tbody>
709
+
710
+ <tr>
711
+
712
+ <td class="name"><code>uuid</code></td>
713
+
714
+
715
+ <td class="type">
716
+
717
+
718
+ <span class="param-type">
719
+ string
720
+ </span>
721
+
722
+
723
+
724
+
725
+
726
+ </td>
727
+
728
+
729
+
730
+
731
+
732
+ <td class="description last">
733
+
734
+
735
+ </td>
736
+ </tr>
737
+
738
+
739
+ </tbody>
740
+ </table>
741
+
742
+
743
+
744
+
745
+
746
+ <dl class="details">
747
+
748
+
749
+
750
+
751
+
752
+
753
+
754
+
755
+
756
+
757
+
758
+
759
+
760
+
761
+
762
+
763
+
764
+
765
+
766
+
767
+
768
+
769
+
770
+
771
+
772
+
773
+ <dt class="tag-source">Source:</dt>
774
+ <dd class="tag-source">
775
+ <ul class="dummy">
776
+ <li>
777
+ <a href="poweredup-node.js.html">poweredup-node.js</a>, <a href="poweredup-node.js.html#line111">line 111</a>
778
+ </li>
779
+ </ul>
780
+ </dd>
781
+
782
+
783
+
784
+
785
+
786
+
787
+
788
+ </dl>
789
+
790
+
791
+
792
+
793
+
794
+
795
+
796
+
797
+
798
+
799
+
800
+
801
+
802
+
803
+
804
+
805
+
806
+
807
+
808
+
809
+ <span class='name-container'>
810
+ <a class="link-icon" href="#getHubs">
811
+ <svg height="20" width="20" style="fill: black;">
812
+ <use xlink:href="#linkIcon"></use>
813
+ </svg>
814
+ </a>
815
+ <h4 class="name" id="getHubs">
816
+ <span class="type-signature"></span>getHubs<span class="signature">()</span><span class="type-signature"> &rarr; {Array.&lt;<a href="BaseHub.html">BaseHub</a>>}</span>
817
+ </h4>
818
+ </span>
819
+
820
+
821
+
822
+
823
+
824
+ <div class="description">
825
+ <p>Retrieve a list of Powered UP Hubs.</p>
826
+ </div>
827
+
828
+
829
+
830
+
831
+
832
+
833
+
834
+
835
+
836
+
837
+ <dl class="details">
838
+
839
+
840
+
841
+
842
+
843
+
844
+
845
+
846
+
847
+
848
+
849
+
850
+
851
+
852
+
853
+
854
+
855
+
856
+
857
+
858
+
859
+
860
+
861
+
862
+
863
+
864
+ <dt class="tag-source">Source:</dt>
865
+ <dd class="tag-source">
866
+ <ul class="dummy">
867
+ <li>
868
+ <a href="poweredup-node.js.html">poweredup-node.js</a>, <a href="poweredup-node.js.html#line103">line 103</a>
869
+ </li>
870
+ </ul>
871
+ </dd>
872
+
873
+
874
+
875
+
876
+
877
+
878
+
879
+ </dl>
880
+
881
+
882
+
883
+
884
+
885
+
886
+
887
+
888
+
889
+
890
+
891
+
892
+
893
+
894
+
895
+
896
+
897
+
898
+
899
+
900
+ <span class='name-container'>
901
+ <a class="link-icon" href="#getHubs">
902
+ <svg height="20" width="20" style="fill: black;">
903
+ <use xlink:href="#linkIcon"></use>
904
+ </svg>
905
+ </a>
906
+ <h4 class="name" id="getHubs">
907
+ <span class="type-signature"></span>getHubs<span class="signature">()</span><span class="type-signature"> &rarr; {Array.&lt;<a href="BaseHub.html">BaseHub</a>>}</span>
908
+ </h4>
909
+ </span>
910
+
911
+
912
+
913
+
914
+
915
+ <div class="description">
916
+ <p>Retrieve a list of Powered UP Hubs.</p>
917
+ </div>
918
+
919
+
920
+
921
+
922
+
923
+
924
+
925
+
926
+
927
+
928
+ <dl class="details">
929
+
930
+
931
+
932
+
933
+
934
+
935
+
936
+
937
+
938
+
939
+
940
+
941
+
942
+
943
+
944
+
945
+
946
+
947
+
948
+
949
+
950
+
951
+
952
+
953
+
954
+
955
+ <dt class="tag-source">Source:</dt>
956
+ <dd class="tag-source">
957
+ <ul class="dummy">
958
+ <li>
959
+ <a href="poweredup-browser.js.html">poweredup-browser.js</a>, <a href="poweredup-browser.js.html#line80">line 80</a>
960
+ </li>
961
+ </ul>
962
+ </dd>
963
+
964
+
965
+
966
+
967
+
968
+
969
+
970
+ </dl>
971
+
972
+
973
+
974
+
975
+
976
+
977
+
978
+
979
+
980
+
981
+
982
+
983
+
984
+
985
+
986
+
987
+
988
+
989
+
990
+
991
+ <span class='name-container'>
992
+ <a class="link-icon" href="#getHubsByName">
993
+ <svg height="20" width="20" style="fill: black;">
994
+ <use xlink:href="#linkIcon"></use>
995
+ </svg>
996
+ </a>
997
+ <h4 class="name" id="getHubsByName">
998
+ <span class="type-signature"></span>getHubsByName<span class="signature">(name)</span><span class="type-signature"> &rarr; {Array.&lt;<a href="BaseHub.html">BaseHub</a>>}</span>
999
+ </h4>
1000
+ </span>
1001
+
1002
+
1003
+
1004
+
1005
+
1006
+ <div class="description">
1007
+ <p>Retrieve a list of Powered UP Hub by name.</p>
1008
+ </div>
1009
+
1010
+
1011
+
1012
+
1013
+
1014
+
1015
+
1016
+ <h5>Parameters:</h5>
1017
+
1018
+
1019
+ <table class="params">
1020
+ <thead>
1021
+ <tr>
1022
+
1023
+ <th>Name</th>
1024
+
1025
+
1026
+ <th>Type</th>
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+ <th class="last">Description</th>
1033
+ </tr>
1034
+ </thead>
1035
+
1036
+ <tbody>
1037
+
1038
+ <tr>
1039
+
1040
+ <td class="name"><code>name</code></td>
1041
+
1042
+
1043
+ <td class="type">
1044
+
1045
+
1046
+ <span class="param-type">
1047
+ string
1048
+ </span>
1049
+
1050
+
1051
+
1052
+
1053
+
1054
+ </td>
1055
+
1056
+
1057
+
1058
+
1059
+
1060
+ <td class="description last">
1061
+
1062
+
1063
+ </td>
1064
+ </tr>
1065
+
1066
+
1067
+ </tbody>
1068
+ </table>
1069
+
1070
+
1071
+
1072
+
1073
+
1074
+ <dl class="details">
1075
+
1076
+
1077
+
1078
+
1079
+
1080
+
1081
+
1082
+
1083
+
1084
+
1085
+
1086
+
1087
+
1088
+
1089
+
1090
+
1091
+
1092
+
1093
+
1094
+
1095
+
1096
+
1097
+
1098
+
1099
+
1100
+
1101
+ <dt class="tag-source">Source:</dt>
1102
+ <dd class="tag-source">
1103
+ <ul class="dummy">
1104
+ <li>
1105
+ <a href="poweredup-node.js.html">poweredup-node.js</a>, <a href="poweredup-node.js.html#line129">line 129</a>
1106
+ </li>
1107
+ </ul>
1108
+ </dd>
1109
+
1110
+
1111
+
1112
+
1113
+
1114
+
1115
+
1116
+ </dl>
1117
+
1118
+
1119
+
1120
+
1121
+
1122
+
1123
+
1124
+
1125
+
1126
+
1127
+
1128
+
1129
+
1130
+
1131
+
1132
+
1133
+
1134
+
1135
+
1136
+
1137
+ <span class='name-container'>
1138
+ <a class="link-icon" href="#getHubsByName">
1139
+ <svg height="20" width="20" style="fill: black;">
1140
+ <use xlink:href="#linkIcon"></use>
1141
+ </svg>
1142
+ </a>
1143
+ <h4 class="name" id="getHubsByName">
1144
+ <span class="type-signature"></span>getHubsByName<span class="signature">(name)</span><span class="type-signature"> &rarr; {Array.&lt;<a href="BaseHub.html">BaseHub</a>>}</span>
1145
+ </h4>
1146
+ </span>
1147
+
1148
+
1149
+
1150
+
1151
+
1152
+ <div class="description">
1153
+ <p>Retrieve a list of Powered UP Hub by name.</p>
1154
+ </div>
1155
+
1156
+
1157
+
1158
+
1159
+
1160
+
1161
+
1162
+ <h5>Parameters:</h5>
1163
+
1164
+
1165
+ <table class="params">
1166
+ <thead>
1167
+ <tr>
1168
+
1169
+ <th>Name</th>
1170
+
1171
+
1172
+ <th>Type</th>
1173
+
1174
+
1175
+
1176
+
1177
+
1178
+ <th class="last">Description</th>
1179
+ </tr>
1180
+ </thead>
1181
+
1182
+ <tbody>
1183
+
1184
+ <tr>
1185
+
1186
+ <td class="name"><code>name</code></td>
1187
+
1188
+
1189
+ <td class="type">
1190
+
1191
+
1192
+ <span class="param-type">
1193
+ string
1194
+ </span>
1195
+
1196
+
1197
+
1198
+
1199
+
1200
+ </td>
1201
+
1202
+
1203
+
1204
+
1205
+
1206
+ <td class="description last">
1207
+
1208
+
1209
+ </td>
1210
+ </tr>
1211
+
1212
+
1213
+ </tbody>
1214
+ </table>
1215
+
1216
+
1217
+
1218
+
1219
+
1220
+ <dl class="details">
1221
+
1222
+
1223
+
1224
+
1225
+
1226
+
1227
+
1228
+
1229
+
1230
+
1231
+
1232
+
1233
+
1234
+
1235
+
1236
+
1237
+
1238
+
1239
+
1240
+
1241
+
1242
+
1243
+
1244
+
1245
+
1246
+
1247
+ <dt class="tag-source">Source:</dt>
1248
+ <dd class="tag-source">
1249
+ <ul class="dummy">
1250
+ <li>
1251
+ <a href="poweredup-browser.js.html">poweredup-browser.js</a>, <a href="poweredup-browser.js.html#line106">line 106</a>
1252
+ </li>
1253
+ </ul>
1254
+ </dd>
1255
+
1256
+
1257
+
1258
+
1259
+
1260
+
1261
+
1262
+ </dl>
1263
+
1264
+
1265
+
1266
+
1267
+
1268
+
1269
+
1270
+
1271
+
1272
+
1273
+
1274
+
1275
+
1276
+
1277
+
1278
+
1279
+
1280
+
1281
+
1282
+
1283
+ <span class='name-container'>
1284
+ <a class="link-icon" href="#getHubsByType">
1285
+ <svg height="20" width="20" style="fill: black;">
1286
+ <use xlink:href="#linkIcon"></use>
1287
+ </svg>
1288
+ </a>
1289
+ <h4 class="name" id="getHubsByType">
1290
+ <span class="type-signature"></span>getHubsByType<span class="signature">(name)</span><span class="type-signature"> &rarr; {Array.&lt;<a href="BaseHub.html">BaseHub</a>>}</span>
1291
+ </h4>
1292
+ </span>
1293
+
1294
+
1295
+
1296
+
1297
+
1298
+ <div class="description">
1299
+ <p>Retrieve a list of Powered UP Hub by type.</p>
1300
+ </div>
1301
+
1302
+
1303
+
1304
+
1305
+
1306
+
1307
+
1308
+ <h5>Parameters:</h5>
1309
+
1310
+
1311
+ <table class="params">
1312
+ <thead>
1313
+ <tr>
1314
+
1315
+ <th>Name</th>
1316
+
1317
+
1318
+ <th>Type</th>
1319
+
1320
+
1321
+
1322
+
1323
+
1324
+ <th class="last">Description</th>
1325
+ </tr>
1326
+ </thead>
1327
+
1328
+ <tbody>
1329
+
1330
+ <tr>
1331
+
1332
+ <td class="name"><code>name</code></td>
1333
+
1334
+
1335
+ <td class="type">
1336
+
1337
+
1338
+ <span class="param-type">
1339
+ string
1340
+ </span>
1341
+
1342
+
1343
+
1344
+
1345
+
1346
+ </td>
1347
+
1348
+
1349
+
1350
+
1351
+
1352
+ <td class="description last">
1353
+
1354
+
1355
+ </td>
1356
+ </tr>
1357
+
1358
+
1359
+ </tbody>
1360
+ </table>
1361
+
1362
+
1363
+
1364
+
1365
+
1366
+ <dl class="details">
1367
+
1368
+
1369
+
1370
+
1371
+
1372
+
1373
+
1374
+
1375
+
1376
+
1377
+
1378
+
1379
+
1380
+
1381
+
1382
+
1383
+
1384
+
1385
+
1386
+
1387
+
1388
+
1389
+
1390
+
1391
+
1392
+
1393
+ <dt class="tag-source">Source:</dt>
1394
+ <dd class="tag-source">
1395
+ <ul class="dummy">
1396
+ <li>
1397
+ <a href="poweredup-browser.js.html">poweredup-browser.js</a>, <a href="poweredup-browser.js.html#line115">line 115</a>
1398
+ </li>
1399
+ </ul>
1400
+ </dd>
1401
+
1402
+
1403
+
1404
+
1405
+
1406
+
1407
+
1408
+ </dl>
1409
+
1410
+
1411
+
1412
+
1413
+
1414
+
1415
+
1416
+
1417
+
1418
+
1419
+
1420
+
1421
+
1422
+
1423
+
1424
+
1425
+
1426
+
1427
+
1428
+
1429
+ <span class='name-container'>
1430
+ <a class="link-icon" href="#getHubsByType">
1431
+ <svg height="20" width="20" style="fill: black;">
1432
+ <use xlink:href="#linkIcon"></use>
1433
+ </svg>
1434
+ </a>
1435
+ <h4 class="name" id="getHubsByType">
1436
+ <span class="type-signature"></span>getHubsByType<span class="signature">(name)</span><span class="type-signature"> &rarr; {Array.&lt;<a href="BaseHub.html">BaseHub</a>>}</span>
1437
+ </h4>
1438
+ </span>
1439
+
1440
+
1441
+
1442
+
1443
+
1444
+ <div class="description">
1445
+ <p>Retrieve a list of Powered UP Hub by type.</p>
1446
+ </div>
1447
+
1448
+
1449
+
1450
+
1451
+
1452
+
1453
+
1454
+ <h5>Parameters:</h5>
1455
+
1456
+
1457
+ <table class="params">
1458
+ <thead>
1459
+ <tr>
1460
+
1461
+ <th>Name</th>
1462
+
1463
+
1464
+ <th>Type</th>
1465
+
1466
+
1467
+
1468
+
1469
+
1470
+ <th class="last">Description</th>
1471
+ </tr>
1472
+ </thead>
1473
+
1474
+ <tbody>
1475
+
1476
+ <tr>
1477
+
1478
+ <td class="name"><code>name</code></td>
1479
+
1480
+
1481
+ <td class="type">
1482
+
1483
+
1484
+ <span class="param-type">
1485
+ string
1486
+ </span>
1487
+
1488
+
1489
+
1490
+
1491
+
1492
+ </td>
1493
+
1494
+
1495
+
1496
+
1497
+
1498
+ <td class="description last">
1499
+
1500
+
1501
+ </td>
1502
+ </tr>
1503
+
1504
+
1505
+ </tbody>
1506
+ </table>
1507
+
1508
+
1509
+
1510
+
1511
+
1512
+ <dl class="details">
1513
+
1514
+
1515
+
1516
+
1517
+
1518
+
1519
+
1520
+
1521
+
1522
+
1523
+
1524
+
1525
+
1526
+
1527
+
1528
+
1529
+
1530
+
1531
+
1532
+
1533
+
1534
+
1535
+
1536
+
1537
+
1538
+
1539
+ <dt class="tag-source">Source:</dt>
1540
+ <dd class="tag-source">
1541
+ <ul class="dummy">
1542
+ <li>
1543
+ <a href="poweredup-node.js.html">poweredup-node.js</a>, <a href="poweredup-node.js.html#line138">line 138</a>
1544
+ </li>
1545
+ </ul>
1546
+ </dd>
1547
+
1548
+
1549
+
1550
+
1551
+
1552
+
1553
+
1554
+ </dl>
1555
+
1556
+
1557
+
1558
+
1559
+
1560
+
1561
+
1562
+
1563
+
1564
+
1565
+
1566
+
1567
+
1568
+
1569
+
1570
+
1571
+
1572
+
1573
+
1574
+
1575
+ <span class='name-container'>
1576
+ <a class="link-icon" href="#scan">
1577
+ <svg height="20" width="20" style="fill: black;">
1578
+ <use xlink:href="#linkIcon"></use>
1579
+ </svg>
1580
+ </a>
1581
+ <h4 class="name" id="scan">
1582
+ <span class="type-signature"></span>scan<span class="signature">()</span><span class="type-signature"></span>
1583
+ </h4>
1584
+ </span>
1585
+
1586
+
1587
+
1588
+
1589
+
1590
+ <div class="description">
1591
+ <p>Begin scanning for Powered UP Hub devices.</p>
1592
+ </div>
1593
+
1594
+
1595
+
1596
+
1597
+
1598
+
1599
+
1600
+
1601
+
1602
+
1603
+ <dl class="details">
1604
+
1605
+
1606
+
1607
+
1608
+
1609
+
1610
+
1611
+
1612
+
1613
+
1614
+
1615
+
1616
+
1617
+
1618
+
1619
+
1620
+
1621
+
1622
+
1623
+
1624
+
1625
+
1626
+
1627
+
1628
+
1629
+
1630
+ <dt class="tag-source">Source:</dt>
1631
+ <dd class="tag-source">
1632
+ <ul class="dummy">
1633
+ <li>
1634
+ <a href="poweredup-node.js.html">poweredup-node.js</a>, <a href="poweredup-node.js.html#line75">line 75</a>
1635
+ </li>
1636
+ </ul>
1637
+ </dd>
1638
+
1639
+
1640
+
1641
+
1642
+
1643
+
1644
+
1645
+ </dl>
1646
+
1647
+
1648
+
1649
+
1650
+
1651
+
1652
+
1653
+
1654
+
1655
+
1656
+
1657
+
1658
+
1659
+
1660
+
1661
+
1662
+
1663
+
1664
+
1665
+
1666
+ <span class='name-container'>
1667
+ <a class="link-icon" href="#scan">
1668
+ <svg height="20" width="20" style="fill: black;">
1669
+ <use xlink:href="#linkIcon"></use>
1670
+ </svg>
1671
+ </a>
1672
+ <h4 class="name" id="scan">
1673
+ <span class="type-signature"></span>scan<span class="signature">()</span><span class="type-signature"></span>
1674
+ </h4>
1675
+ </span>
1676
+
1677
+
1678
+
1679
+
1680
+
1681
+ <div class="description">
1682
+ <p>Begin scanning for Powered UP Hub devices.</p>
1683
+ </div>
1684
+
1685
+
1686
+
1687
+
1688
+
1689
+
1690
+
1691
+
1692
+
1693
+
1694
+ <dl class="details">
1695
+
1696
+
1697
+
1698
+
1699
+
1700
+
1701
+
1702
+
1703
+
1704
+
1705
+
1706
+
1707
+
1708
+
1709
+
1710
+
1711
+
1712
+
1713
+
1714
+
1715
+
1716
+
1717
+
1718
+
1719
+
1720
+
1721
+ <dt class="tag-source">Source:</dt>
1722
+ <dd class="tag-source">
1723
+ <ul class="dummy">
1724
+ <li>
1725
+ <a href="poweredup-browser.js.html">poweredup-browser.js</a>, <a href="poweredup-browser.js.html#line46">line 46</a>
1726
+ </li>
1727
+ </ul>
1728
+ </dd>
1729
+
1730
+
1731
+
1732
+
1733
+
1734
+
1735
+
1736
+ </dl>
1737
+
1738
+
1739
+
1740
+
1741
+
1742
+
1743
+
1744
+
1745
+
1746
+
1747
+
1748
+
1749
+
1750
+
1751
+
1752
+
1753
+
1754
+
1755
+
1756
+
1757
+ <span class='name-container'>
1758
+ <a class="link-icon" href="#stop">
1759
+ <svg height="20" width="20" style="fill: black;">
1760
+ <use xlink:href="#linkIcon"></use>
1761
+ </svg>
1762
+ </a>
1763
+ <h4 class="name" id="stop">
1764
+ <span class="type-signature"></span>stop<span class="signature">()</span><span class="type-signature"></span>
1765
+ </h4>
1766
+ </span>
1767
+
1768
+
1769
+
1770
+
1771
+
1772
+ <div class="description">
1773
+ <p>Stop scanning for Powered UP Hub devices.</p>
1774
+ </div>
1775
+
1776
+
1777
+
1778
+
1779
+
1780
+
1781
+
1782
+
1783
+
1784
+
1785
+ <dl class="details">
1786
+
1787
+
1788
+
1789
+
1790
+
1791
+
1792
+
1793
+
1794
+
1795
+
1796
+
1797
+
1798
+
1799
+
1800
+
1801
+
1802
+
1803
+
1804
+
1805
+
1806
+
1807
+
1808
+
1809
+
1810
+
1811
+
1812
+ <dt class="tag-source">Source:</dt>
1813
+ <dd class="tag-source">
1814
+ <ul class="dummy">
1815
+ <li>
1816
+ <a href="poweredup-node.js.html">poweredup-node.js</a>, <a href="poweredup-node.js.html#line91">line 91</a>
1817
+ </li>
1818
+ </ul>
1819
+ </dd>
1820
+
1821
+
1822
+
1823
+
1824
+
1825
+
1826
+
1827
+ </dl>
1828
+
1829
+
1830
+
1831
+
1832
+
1833
+
1834
+
1835
+
1836
+
1837
+
1838
+
1839
+
1840
+
1841
+
1842
+
1843
+
1844
+
1845
+
1846
+
1847
+
1848
+ <h3 class="subsection-title">Events</h3>
1849
+
1850
+
1851
+
1852
+
1853
+
1854
+
1855
+
1856
+ <span class='name-container'>
1857
+ <a class="link-icon" href="#event:discover">
1858
+ <svg height="20" width="20" style="fill: black;">
1859
+ <use xlink:href="#linkIcon"></use>
1860
+ </svg>
1861
+ </a>
1862
+ <h4 class="name" id="event:discover">
1863
+ <span class="type-signature"></span>discover<span class="type-signature"></span>
1864
+ </h4>
1865
+ </span>
1866
+
1867
+
1868
+
1869
+
1870
+
1871
+ <div class="description">
1872
+ <p>Emits when a Powered UP Hub device is found.</p>
1873
+ </div>
1874
+
1875
+
1876
+
1877
+
1878
+
1879
+
1880
+
1881
+ <h5>Parameters:</h5>
1882
+
1883
+
1884
+ <table class="params">
1885
+ <thead>
1886
+ <tr>
1887
+
1888
+ <th>Name</th>
1889
+
1890
+
1891
+ <th>Type</th>
1892
+
1893
+
1894
+
1895
+
1896
+
1897
+ <th class="last">Description</th>
1898
+ </tr>
1899
+ </thead>
1900
+
1901
+ <tbody>
1902
+
1903
+ <tr>
1904
+
1905
+ <td class="name"><code>hub</code></td>
1906
+
1907
+
1908
+ <td class="type">
1909
+
1910
+
1911
+ <span class="param-type">
1912
+ <a href="WeDo2SmartHub.html">WeDo2SmartHub</a>
1913
+ </span>
1914
+
1915
+ |
1916
+
1917
+ <span class="param-type">
1918
+ <a href="MoveHub.html">MoveHub</a>
1919
+ </span>
1920
+
1921
+ |
1922
+
1923
+ <span class="param-type">
1924
+ <a href="TechnicMediumHub.html">TechnicMediumHub</a>
1925
+ </span>
1926
+
1927
+ |
1928
+
1929
+ <span class="param-type">
1930
+ <a href="RemoteControl.html">RemoteControl</a>
1931
+ </span>
1932
+
1933
+ |
1934
+
1935
+ <span class="param-type">
1936
+ <a href="DuploTrainBase.html">DuploTrainBase</a>
1937
+ </span>
1938
+
1939
+
1940
+
1941
+
1942
+
1943
+ </td>
1944
+
1945
+
1946
+
1947
+
1948
+
1949
+ <td class="description last">
1950
+
1951
+
1952
+ </td>
1953
+ </tr>
1954
+
1955
+
1956
+ </tbody>
1957
+ </table>
1958
+
1959
+
1960
+
1961
+
1962
+
1963
+ <dl class="details">
1964
+
1965
+
1966
+
1967
+
1968
+
1969
+
1970
+
1971
+
1972
+
1973
+
1974
+
1975
+
1976
+
1977
+
1978
+
1979
+
1980
+
1981
+
1982
+
1983
+
1984
+
1985
+
1986
+
1987
+
1988
+
1989
+
1990
+ <dt class="tag-source">Source:</dt>
1991
+ <dd class="tag-source">
1992
+ <ul class="dummy">
1993
+ <li>
1994
+ <a href="poweredup-node.js.html">poweredup-node.js</a>, <a href="poweredup-node.js.html#line191">line 191</a>
1995
+ </li>
1996
+ </ul>
1997
+ </dd>
1998
+
1999
+
2000
+
2001
+
2002
+
2003
+
2004
+
2005
+ </dl>
2006
+
2007
+
2008
+
2009
+
2010
+
2011
+
2012
+
2013
+
2014
+
2015
+
2016
+
2017
+
2018
+
2019
+
2020
+
2021
+
2022
+
2023
+
2024
+
2025
+
2026
+ <span class='name-container'>
2027
+ <a class="link-icon" href="#event:discover">
2028
+ <svg height="20" width="20" style="fill: black;">
2029
+ <use xlink:href="#linkIcon"></use>
2030
+ </svg>
2031
+ </a>
2032
+ <h4 class="name" id="event:discover">
2033
+ <span class="type-signature"></span>discover<span class="type-signature"></span>
2034
+ </h4>
2035
+ </span>
2036
+
2037
+
2038
+
2039
+
2040
+
2041
+ <div class="description">
2042
+ <p>Emits when a Powered UP Hub device is found.</p>
2043
+ </div>
2044
+
2045
+
2046
+
2047
+
2048
+
2049
+
2050
+
2051
+ <h5>Parameters:</h5>
2052
+
2053
+
2054
+ <table class="params">
2055
+ <thead>
2056
+ <tr>
2057
+
2058
+ <th>Name</th>
2059
+
2060
+
2061
+ <th>Type</th>
2062
+
2063
+
2064
+
2065
+
2066
+
2067
+ <th class="last">Description</th>
2068
+ </tr>
2069
+ </thead>
2070
+
2071
+ <tbody>
2072
+
2073
+ <tr>
2074
+
2075
+ <td class="name"><code>hub</code></td>
2076
+
2077
+
2078
+ <td class="type">
2079
+
2080
+
2081
+ <span class="param-type">
2082
+ <a href="WeDo2SmartHub.html">WeDo2SmartHub</a>
2083
+ </span>
2084
+
2085
+ |
2086
+
2087
+ <span class="param-type">
2088
+ <a href="MoveHub.html">MoveHub</a>
2089
+ </span>
2090
+
2091
+ |
2092
+
2093
+ <span class="param-type">
2094
+ <a href="TechnicMediumHub.html">TechnicMediumHub</a>
2095
+ </span>
2096
+
2097
+ |
2098
+
2099
+ <span class="param-type">
2100
+ <a href="RemoteControl.html">RemoteControl</a>
2101
+ </span>
2102
+
2103
+ |
2104
+
2105
+ <span class="param-type">
2106
+ <a href="DuploTrainBase.html">DuploTrainBase</a>
2107
+ </span>
2108
+
2109
+
2110
+
2111
+
2112
+
2113
+ </td>
2114
+
2115
+
2116
+
2117
+
2118
+
2119
+ <td class="description last">
2120
+
2121
+
2122
+ </td>
2123
+ </tr>
2124
+
2125
+
2126
+ </tbody>
2127
+ </table>
2128
+
2129
+
2130
+
2131
+
2132
+
2133
+ <dl class="details">
2134
+
2135
+
2136
+
2137
+
2138
+
2139
+
2140
+
2141
+
2142
+
2143
+
2144
+
2145
+
2146
+
2147
+
2148
+
2149
+
2150
+
2151
+
2152
+
2153
+
2154
+
2155
+
2156
+
2157
+
2158
+
2159
+
2160
+ <dt class="tag-source">Source:</dt>
2161
+ <dd class="tag-source">
2162
+ <ul class="dummy">
2163
+ <li>
2164
+ <a href="poweredup-browser.js.html">poweredup-browser.js</a>, <a href="poweredup-browser.js.html#line225">line 225</a>
2165
+ </li>
2166
+ </ul>
2167
+ </dd>
2168
+
2169
+
2170
+
2171
+
2172
+
2173
+
2174
+
2175
+ </dl>
2176
+
2177
+
2178
+
2179
+
2180
+
2181
+
2182
+
2183
+
2184
+
2185
+
2186
+
2187
+
2188
+
2189
+
2190
+
2191
+
2192
+ </article>
2193
+ </section>
2194
+
2195
+
2196
+
2197
+
2198
+ <section>
2199
+ <header>
2200
+
2201
+ <h2>
2202
+
2203
+ PoweredUP
2204
+
2205
+ </h2>
2206
+
2207
+
2208
+
2209
+ </header>
2210
+
2211
+ <article>
2212
+ <div class="container-overview">
2213
+
2214
+
2215
+
2216
+
2217
+
2218
+
2219
+ <span class='name-container'>
2220
+ <a class="link-icon" href="#PoweredUP">
2221
+ <svg height="20" width="20" style="fill: black;">
2222
+ <use xlink:href="#linkIcon"></use>
2223
+ </svg>
2224
+ </a>
2225
+ <h4 class="name" id="PoweredUP">
2226
+ <span class="type-signature"></span>new PoweredUP<span class="signature">()</span><span class="type-signature"></span>
2227
+ </h4>
2228
+ </span>
2229
+
2230
+
2231
+
2232
+
2233
+
2234
+
2235
+
2236
+
2237
+
2238
+
2239
+
2240
+
2241
+
2242
+
2243
+ <dl class="details">
2244
+
2245
+
2246
+
2247
+
2248
+
2249
+
2250
+
2251
+
2252
+
2253
+
2254
+
2255
+
2256
+
2257
+
2258
+
2259
+
2260
+
2261
+
2262
+
2263
+
2264
+
2265
+
2266
+
2267
+
2268
+
2269
+
2270
+ <dt class="tag-source">Source:</dt>
2271
+ <dd class="tag-source">
2272
+ <ul class="dummy">
2273
+ <li>
2274
+ <a href="poweredup-browser.js.html">poweredup-browser.js</a>, <a href="poweredup-browser.js.html#line36">line 36</a>
2275
+ </li>
2276
+ </ul>
2277
+ </dd>
2278
+
2279
+
2280
+
2281
+
2282
+
2283
+
2284
+
2285
+ </dl>
2286
+
2287
+
2288
+
2289
+
2290
+
2291
+
2292
+
2293
+
2294
+
2295
+
2296
+
2297
+
2298
+
2299
+
2300
+
2301
+ </div>
2302
+
2303
+
2304
+ <h3 class="subsection-title">Extends</h3>
2305
+
2306
+
2307
+
2308
+
2309
+ <ul>
2310
+ <li>EventEmitter</li>
2311
+ </ul>
2312
+
2313
+
2314
+
2315
+
2316
+
2317
+
2318
+
2319
+
2320
+
2321
+
2322
+
2323
+
2324
+
2325
+
2326
+
2327
+ <h3 class="subsection-title">Methods</h3>
2328
+
2329
+
2330
+
2331
+
2332
+
2333
+
2334
+
2335
+ <span class='name-container'>
2336
+ <a class="link-icon" href="#getHubByPrimaryMACAddress">
2337
+ <svg height="20" width="20" style="fill: black;">
2338
+ <use xlink:href="#linkIcon"></use>
2339
+ </svg>
2340
+ </a>
2341
+ <h4 class="name" id="getHubByPrimaryMACAddress">
2342
+ <span class="type-signature"></span>getHubByPrimaryMACAddress<span class="signature">(address)</span><span class="type-signature"> &rarr; {<a href="BaseHub.html">BaseHub</a>}</span>
2343
+ </h4>
2344
+ </span>
2345
+
2346
+
2347
+
2348
+
2349
+
2350
+ <div class="description">
2351
+ <p>Retrieve a Powered UP Hub by primary MAC address.</p>
2352
+ </div>
2353
+
2354
+
2355
+
2356
+
2357
+
2358
+
2359
+
2360
+ <h5>Parameters:</h5>
2361
+
2362
+
2363
+ <table class="params">
2364
+ <thead>
2365
+ <tr>
2366
+
2367
+ <th>Name</th>
2368
+
2369
+
2370
+ <th>Type</th>
2371
+
2372
+
2373
+
2374
+
2375
+
2376
+ <th class="last">Description</th>
2377
+ </tr>
2378
+ </thead>
2379
+
2380
+ <tbody>
2381
+
2382
+ <tr>
2383
+
2384
+ <td class="name"><code>address</code></td>
2385
+
2386
+
2387
+ <td class="type">
2388
+
2389
+
2390
+ <span class="param-type">
2391
+ string
2392
+ </span>
2393
+
2394
+
2395
+
2396
+
2397
+
2398
+ </td>
2399
+
2400
+
2401
+
2402
+
2403
+
2404
+ <td class="description last">
2405
+
2406
+
2407
+ </td>
2408
+ </tr>
2409
+
2410
+
2411
+ </tbody>
2412
+ </table>
2413
+
2414
+
2415
+
2416
+
2417
+
2418
+ <dl class="details">
2419
+
2420
+
2421
+
2422
+
2423
+
2424
+
2425
+
2426
+
2427
+
2428
+
2429
+
2430
+
2431
+
2432
+
2433
+
2434
+
2435
+
2436
+
2437
+
2438
+
2439
+
2440
+
2441
+
2442
+
2443
+
2444
+
2445
+ <dt class="tag-source">Source:</dt>
2446
+ <dd class="tag-source">
2447
+ <ul class="dummy">
2448
+ <li>
2449
+ <a href="poweredup-browser.js.html">poweredup-browser.js</a>, <a href="poweredup-browser.js.html#line97">line 97</a>
2450
+ </li>
2451
+ </ul>
2452
+ </dd>
2453
+
2454
+
2455
+
2456
+
2457
+
2458
+
2459
+
2460
+ </dl>
2461
+
2462
+
2463
+
2464
+
2465
+
2466
+
2467
+
2468
+
2469
+
2470
+
2471
+
2472
+
2473
+
2474
+
2475
+
2476
+
2477
+
2478
+
2479
+
2480
+
2481
+ <span class='name-container'>
2482
+ <a class="link-icon" href="#getHubByPrimaryMACAddress">
2483
+ <svg height="20" width="20" style="fill: black;">
2484
+ <use xlink:href="#linkIcon"></use>
2485
+ </svg>
2486
+ </a>
2487
+ <h4 class="name" id="getHubByPrimaryMACAddress">
2488
+ <span class="type-signature"></span>getHubByPrimaryMACAddress<span class="signature">(address)</span><span class="type-signature"> &rarr; {<a href="BaseHub.html">BaseHub</a>}</span>
2489
+ </h4>
2490
+ </span>
2491
+
2492
+
2493
+
2494
+
2495
+
2496
+ <div class="description">
2497
+ <p>Retrieve a Powered UP Hub by primary MAC address.</p>
2498
+ </div>
2499
+
2500
+
2501
+
2502
+
2503
+
2504
+
2505
+
2506
+ <h5>Parameters:</h5>
2507
+
2508
+
2509
+ <table class="params">
2510
+ <thead>
2511
+ <tr>
2512
+
2513
+ <th>Name</th>
2514
+
2515
+
2516
+ <th>Type</th>
2517
+
2518
+
2519
+
2520
+
2521
+
2522
+ <th class="last">Description</th>
2523
+ </tr>
2524
+ </thead>
2525
+
2526
+ <tbody>
2527
+
2528
+ <tr>
2529
+
2530
+ <td class="name"><code>address</code></td>
2531
+
2532
+
2533
+ <td class="type">
2534
+
2535
+
2536
+ <span class="param-type">
2537
+ string
2538
+ </span>
2539
+
2540
+
2541
+
2542
+
2543
+
2544
+ </td>
2545
+
2546
+
2547
+
2548
+
2549
+
2550
+ <td class="description last">
2551
+
2552
+
2553
+ </td>
2554
+ </tr>
2555
+
2556
+
2557
+ </tbody>
2558
+ </table>
2559
+
2560
+
2561
+
2562
+
2563
+
2564
+ <dl class="details">
2565
+
2566
+
2567
+
2568
+
2569
+
2570
+
2571
+
2572
+
2573
+
2574
+
2575
+
2576
+
2577
+
2578
+
2579
+
2580
+
2581
+
2582
+
2583
+
2584
+
2585
+
2586
+
2587
+
2588
+
2589
+
2590
+
2591
+ <dt class="tag-source">Source:</dt>
2592
+ <dd class="tag-source">
2593
+ <ul class="dummy">
2594
+ <li>
2595
+ <a href="poweredup-node.js.html">poweredup-node.js</a>, <a href="poweredup-node.js.html#line120">line 120</a>
2596
+ </li>
2597
+ </ul>
2598
+ </dd>
2599
+
2600
+
2601
+
2602
+
2603
+
2604
+
2605
+
2606
+ </dl>
2607
+
2608
+
2609
+
2610
+
2611
+
2612
+
2613
+
2614
+
2615
+
2616
+
2617
+
2618
+
2619
+
2620
+
2621
+
2622
+
2623
+
2624
+
2625
+
2626
+
2627
+ <span class='name-container'>
2628
+ <a class="link-icon" href="#getHubByUUID">
2629
+ <svg height="20" width="20" style="fill: black;">
2630
+ <use xlink:href="#linkIcon"></use>
2631
+ </svg>
2632
+ </a>
2633
+ <h4 class="name" id="getHubByUUID">
2634
+ <span class="type-signature"></span>getHubByUUID<span class="signature">(uuid)</span><span class="type-signature"> &rarr; {<a href="BaseHub.html">BaseHub</a>|null}</span>
2635
+ </h4>
2636
+ </span>
2637
+
2638
+
2639
+
2640
+
2641
+
2642
+ <div class="description">
2643
+ <p>Retrieve a Powered UP Hub by UUID.</p>
2644
+ </div>
2645
+
2646
+
2647
+
2648
+
2649
+
2650
+
2651
+
2652
+ <h5>Parameters:</h5>
2653
+
2654
+
2655
+ <table class="params">
2656
+ <thead>
2657
+ <tr>
2658
+
2659
+ <th>Name</th>
2660
+
2661
+
2662
+ <th>Type</th>
2663
+
2664
+
2665
+
2666
+
2667
+
2668
+ <th class="last">Description</th>
2669
+ </tr>
2670
+ </thead>
2671
+
2672
+ <tbody>
2673
+
2674
+ <tr>
2675
+
2676
+ <td class="name"><code>uuid</code></td>
2677
+
2678
+
2679
+ <td class="type">
2680
+
2681
+
2682
+ <span class="param-type">
2683
+ string
2684
+ </span>
2685
+
2686
+
2687
+
2688
+
2689
+
2690
+ </td>
2691
+
2692
+
2693
+
2694
+
2695
+
2696
+ <td class="description last">
2697
+
2698
+
2699
+ </td>
2700
+ </tr>
2701
+
2702
+
2703
+ </tbody>
2704
+ </table>
2705
+
2706
+
2707
+
2708
+
2709
+
2710
+ <dl class="details">
2711
+
2712
+
2713
+
2714
+
2715
+
2716
+
2717
+
2718
+
2719
+
2720
+
2721
+
2722
+
2723
+
2724
+
2725
+
2726
+
2727
+
2728
+
2729
+
2730
+
2731
+
2732
+
2733
+
2734
+
2735
+
2736
+
2737
+ <dt class="tag-source">Source:</dt>
2738
+ <dd class="tag-source">
2739
+ <ul class="dummy">
2740
+ <li>
2741
+ <a href="poweredup-browser.js.html">poweredup-browser.js</a>, <a href="poweredup-browser.js.html#line88">line 88</a>
2742
+ </li>
2743
+ </ul>
2744
+ </dd>
2745
+
2746
+
2747
+
2748
+
2749
+
2750
+
2751
+
2752
+ </dl>
2753
+
2754
+
2755
+
2756
+
2757
+
2758
+
2759
+
2760
+
2761
+
2762
+
2763
+
2764
+
2765
+
2766
+
2767
+
2768
+
2769
+
2770
+
2771
+
2772
+
2773
+ <span class='name-container'>
2774
+ <a class="link-icon" href="#getHubByUUID">
2775
+ <svg height="20" width="20" style="fill: black;">
2776
+ <use xlink:href="#linkIcon"></use>
2777
+ </svg>
2778
+ </a>
2779
+ <h4 class="name" id="getHubByUUID">
2780
+ <span class="type-signature"></span>getHubByUUID<span class="signature">(uuid)</span><span class="type-signature"> &rarr; {<a href="BaseHub.html">BaseHub</a>|null}</span>
2781
+ </h4>
2782
+ </span>
2783
+
2784
+
2785
+
2786
+
2787
+
2788
+ <div class="description">
2789
+ <p>Retrieve a Powered UP Hub by UUID.</p>
2790
+ </div>
2791
+
2792
+
2793
+
2794
+
2795
+
2796
+
2797
+
2798
+ <h5>Parameters:</h5>
2799
+
2800
+
2801
+ <table class="params">
2802
+ <thead>
2803
+ <tr>
2804
+
2805
+ <th>Name</th>
2806
+
2807
+
2808
+ <th>Type</th>
2809
+
2810
+
2811
+
2812
+
2813
+
2814
+ <th class="last">Description</th>
2815
+ </tr>
2816
+ </thead>
2817
+
2818
+ <tbody>
2819
+
2820
+ <tr>
2821
+
2822
+ <td class="name"><code>uuid</code></td>
2823
+
2824
+
2825
+ <td class="type">
2826
+
2827
+
2828
+ <span class="param-type">
2829
+ string
2830
+ </span>
2831
+
2832
+
2833
+
2834
+
2835
+
2836
+ </td>
2837
+
2838
+
2839
+
2840
+
2841
+
2842
+ <td class="description last">
2843
+
2844
+
2845
+ </td>
2846
+ </tr>
2847
+
2848
+
2849
+ </tbody>
2850
+ </table>
2851
+
2852
+
2853
+
2854
+
2855
+
2856
+ <dl class="details">
2857
+
2858
+
2859
+
2860
+
2861
+
2862
+
2863
+
2864
+
2865
+
2866
+
2867
+
2868
+
2869
+
2870
+
2871
+
2872
+
2873
+
2874
+
2875
+
2876
+
2877
+
2878
+
2879
+
2880
+
2881
+
2882
+
2883
+ <dt class="tag-source">Source:</dt>
2884
+ <dd class="tag-source">
2885
+ <ul class="dummy">
2886
+ <li>
2887
+ <a href="poweredup-node.js.html">poweredup-node.js</a>, <a href="poweredup-node.js.html#line111">line 111</a>
2888
+ </li>
2889
+ </ul>
2890
+ </dd>
2891
+
2892
+
2893
+
2894
+
2895
+
2896
+
2897
+
2898
+ </dl>
2899
+
2900
+
2901
+
2902
+
2903
+
2904
+
2905
+
2906
+
2907
+
2908
+
2909
+
2910
+
2911
+
2912
+
2913
+
2914
+
2915
+
2916
+
2917
+
2918
+
2919
+ <span class='name-container'>
2920
+ <a class="link-icon" href="#getHubs">
2921
+ <svg height="20" width="20" style="fill: black;">
2922
+ <use xlink:href="#linkIcon"></use>
2923
+ </svg>
2924
+ </a>
2925
+ <h4 class="name" id="getHubs">
2926
+ <span class="type-signature"></span>getHubs<span class="signature">()</span><span class="type-signature"> &rarr; {Array.&lt;<a href="BaseHub.html">BaseHub</a>>}</span>
2927
+ </h4>
2928
+ </span>
2929
+
2930
+
2931
+
2932
+
2933
+
2934
+ <div class="description">
2935
+ <p>Retrieve a list of Powered UP Hubs.</p>
2936
+ </div>
2937
+
2938
+
2939
+
2940
+
2941
+
2942
+
2943
+
2944
+
2945
+
2946
+
2947
+ <dl class="details">
2948
+
2949
+
2950
+
2951
+
2952
+
2953
+
2954
+
2955
+
2956
+
2957
+
2958
+
2959
+
2960
+
2961
+
2962
+
2963
+
2964
+
2965
+
2966
+
2967
+
2968
+
2969
+
2970
+
2971
+
2972
+
2973
+
2974
+ <dt class="tag-source">Source:</dt>
2975
+ <dd class="tag-source">
2976
+ <ul class="dummy">
2977
+ <li>
2978
+ <a href="poweredup-node.js.html">poweredup-node.js</a>, <a href="poweredup-node.js.html#line103">line 103</a>
2979
+ </li>
2980
+ </ul>
2981
+ </dd>
2982
+
2983
+
2984
+
2985
+
2986
+
2987
+
2988
+
2989
+ </dl>
2990
+
2991
+
2992
+
2993
+
2994
+
2995
+
2996
+
2997
+
2998
+
2999
+
3000
+
3001
+
3002
+
3003
+
3004
+
3005
+
3006
+
3007
+
3008
+
3009
+
3010
+ <span class='name-container'>
3011
+ <a class="link-icon" href="#getHubs">
3012
+ <svg height="20" width="20" style="fill: black;">
3013
+ <use xlink:href="#linkIcon"></use>
3014
+ </svg>
3015
+ </a>
3016
+ <h4 class="name" id="getHubs">
3017
+ <span class="type-signature"></span>getHubs<span class="signature">()</span><span class="type-signature"> &rarr; {Array.&lt;<a href="BaseHub.html">BaseHub</a>>}</span>
3018
+ </h4>
3019
+ </span>
3020
+
3021
+
3022
+
3023
+
3024
+
3025
+ <div class="description">
3026
+ <p>Retrieve a list of Powered UP Hubs.</p>
3027
+ </div>
3028
+
3029
+
3030
+
3031
+
3032
+
3033
+
3034
+
3035
+
3036
+
3037
+
3038
+ <dl class="details">
3039
+
3040
+
3041
+
3042
+
3043
+
3044
+
3045
+
3046
+
3047
+
3048
+
3049
+
3050
+
3051
+
3052
+
3053
+
3054
+
3055
+
3056
+
3057
+
3058
+
3059
+
3060
+
3061
+
3062
+
3063
+
3064
+
3065
+ <dt class="tag-source">Source:</dt>
3066
+ <dd class="tag-source">
3067
+ <ul class="dummy">
3068
+ <li>
3069
+ <a href="poweredup-browser.js.html">poweredup-browser.js</a>, <a href="poweredup-browser.js.html#line80">line 80</a>
3070
+ </li>
3071
+ </ul>
3072
+ </dd>
3073
+
3074
+
3075
+
3076
+
3077
+
3078
+
3079
+
3080
+ </dl>
3081
+
3082
+
3083
+
3084
+
3085
+
3086
+
3087
+
3088
+
3089
+
3090
+
3091
+
3092
+
3093
+
3094
+
3095
+
3096
+
3097
+
3098
+
3099
+
3100
+
3101
+ <span class='name-container'>
3102
+ <a class="link-icon" href="#getHubsByName">
3103
+ <svg height="20" width="20" style="fill: black;">
3104
+ <use xlink:href="#linkIcon"></use>
3105
+ </svg>
3106
+ </a>
3107
+ <h4 class="name" id="getHubsByName">
3108
+ <span class="type-signature"></span>getHubsByName<span class="signature">(name)</span><span class="type-signature"> &rarr; {Array.&lt;<a href="BaseHub.html">BaseHub</a>>}</span>
3109
+ </h4>
3110
+ </span>
3111
+
3112
+
3113
+
3114
+
3115
+
3116
+ <div class="description">
3117
+ <p>Retrieve a list of Powered UP Hub by name.</p>
3118
+ </div>
3119
+
3120
+
3121
+
3122
+
3123
+
3124
+
3125
+
3126
+ <h5>Parameters:</h5>
3127
+
3128
+
3129
+ <table class="params">
3130
+ <thead>
3131
+ <tr>
3132
+
3133
+ <th>Name</th>
3134
+
3135
+
3136
+ <th>Type</th>
3137
+
3138
+
3139
+
3140
+
3141
+
3142
+ <th class="last">Description</th>
3143
+ </tr>
3144
+ </thead>
3145
+
3146
+ <tbody>
3147
+
3148
+ <tr>
3149
+
3150
+ <td class="name"><code>name</code></td>
3151
+
3152
+
3153
+ <td class="type">
3154
+
3155
+
3156
+ <span class="param-type">
3157
+ string
3158
+ </span>
3159
+
3160
+
3161
+
3162
+
3163
+
3164
+ </td>
3165
+
3166
+
3167
+
3168
+
3169
+
3170
+ <td class="description last">
3171
+
3172
+
3173
+ </td>
3174
+ </tr>
3175
+
3176
+
3177
+ </tbody>
3178
+ </table>
3179
+
3180
+
3181
+
3182
+
3183
+
3184
+ <dl class="details">
3185
+
3186
+
3187
+
3188
+
3189
+
3190
+
3191
+
3192
+
3193
+
3194
+
3195
+
3196
+
3197
+
3198
+
3199
+
3200
+
3201
+
3202
+
3203
+
3204
+
3205
+
3206
+
3207
+
3208
+
3209
+
3210
+
3211
+ <dt class="tag-source">Source:</dt>
3212
+ <dd class="tag-source">
3213
+ <ul class="dummy">
3214
+ <li>
3215
+ <a href="poweredup-node.js.html">poweredup-node.js</a>, <a href="poweredup-node.js.html#line129">line 129</a>
3216
+ </li>
3217
+ </ul>
3218
+ </dd>
3219
+
3220
+
3221
+
3222
+
3223
+
3224
+
3225
+
3226
+ </dl>
3227
+
3228
+
3229
+
3230
+
3231
+
3232
+
3233
+
3234
+
3235
+
3236
+
3237
+
3238
+
3239
+
3240
+
3241
+
3242
+
3243
+
3244
+
3245
+
3246
+
3247
+ <span class='name-container'>
3248
+ <a class="link-icon" href="#getHubsByName">
3249
+ <svg height="20" width="20" style="fill: black;">
3250
+ <use xlink:href="#linkIcon"></use>
3251
+ </svg>
3252
+ </a>
3253
+ <h4 class="name" id="getHubsByName">
3254
+ <span class="type-signature"></span>getHubsByName<span class="signature">(name)</span><span class="type-signature"> &rarr; {Array.&lt;<a href="BaseHub.html">BaseHub</a>>}</span>
3255
+ </h4>
3256
+ </span>
3257
+
3258
+
3259
+
3260
+
3261
+
3262
+ <div class="description">
3263
+ <p>Retrieve a list of Powered UP Hub by name.</p>
3264
+ </div>
3265
+
3266
+
3267
+
3268
+
3269
+
3270
+
3271
+
3272
+ <h5>Parameters:</h5>
3273
+
3274
+
3275
+ <table class="params">
3276
+ <thead>
3277
+ <tr>
3278
+
3279
+ <th>Name</th>
3280
+
3281
+
3282
+ <th>Type</th>
3283
+
3284
+
3285
+
3286
+
3287
+
3288
+ <th class="last">Description</th>
3289
+ </tr>
3290
+ </thead>
3291
+
3292
+ <tbody>
3293
+
3294
+ <tr>
3295
+
3296
+ <td class="name"><code>name</code></td>
3297
+
3298
+
3299
+ <td class="type">
3300
+
3301
+
3302
+ <span class="param-type">
3303
+ string
3304
+ </span>
3305
+
3306
+
3307
+
3308
+
3309
+
3310
+ </td>
3311
+
3312
+
3313
+
3314
+
3315
+
3316
+ <td class="description last">
3317
+
3318
+
3319
+ </td>
3320
+ </tr>
3321
+
3322
+
3323
+ </tbody>
3324
+ </table>
3325
+
3326
+
3327
+
3328
+
3329
+
3330
+ <dl class="details">
3331
+
3332
+
3333
+
3334
+
3335
+
3336
+
3337
+
3338
+
3339
+
3340
+
3341
+
3342
+
3343
+
3344
+
3345
+
3346
+
3347
+
3348
+
3349
+
3350
+
3351
+
3352
+
3353
+
3354
+
3355
+
3356
+
3357
+ <dt class="tag-source">Source:</dt>
3358
+ <dd class="tag-source">
3359
+ <ul class="dummy">
3360
+ <li>
3361
+ <a href="poweredup-browser.js.html">poweredup-browser.js</a>, <a href="poweredup-browser.js.html#line106">line 106</a>
3362
+ </li>
3363
+ </ul>
3364
+ </dd>
3365
+
3366
+
3367
+
3368
+
3369
+
3370
+
3371
+
3372
+ </dl>
3373
+
3374
+
3375
+
3376
+
3377
+
3378
+
3379
+
3380
+
3381
+
3382
+
3383
+
3384
+
3385
+
3386
+
3387
+
3388
+
3389
+
3390
+
3391
+
3392
+
3393
+ <span class='name-container'>
3394
+ <a class="link-icon" href="#getHubsByType">
3395
+ <svg height="20" width="20" style="fill: black;">
3396
+ <use xlink:href="#linkIcon"></use>
3397
+ </svg>
3398
+ </a>
3399
+ <h4 class="name" id="getHubsByType">
3400
+ <span class="type-signature"></span>getHubsByType<span class="signature">(name)</span><span class="type-signature"> &rarr; {Array.&lt;<a href="BaseHub.html">BaseHub</a>>}</span>
3401
+ </h4>
3402
+ </span>
3403
+
3404
+
3405
+
3406
+
3407
+
3408
+ <div class="description">
3409
+ <p>Retrieve a list of Powered UP Hub by type.</p>
3410
+ </div>
3411
+
3412
+
3413
+
3414
+
3415
+
3416
+
3417
+
3418
+ <h5>Parameters:</h5>
3419
+
3420
+
3421
+ <table class="params">
3422
+ <thead>
3423
+ <tr>
3424
+
3425
+ <th>Name</th>
3426
+
3427
+
3428
+ <th>Type</th>
3429
+
3430
+
3431
+
3432
+
3433
+
3434
+ <th class="last">Description</th>
3435
+ </tr>
3436
+ </thead>
3437
+
3438
+ <tbody>
3439
+
3440
+ <tr>
3441
+
3442
+ <td class="name"><code>name</code></td>
3443
+
3444
+
3445
+ <td class="type">
3446
+
3447
+
3448
+ <span class="param-type">
3449
+ string
3450
+ </span>
3451
+
3452
+
3453
+
3454
+
3455
+
3456
+ </td>
3457
+
3458
+
3459
+
3460
+
3461
+
3462
+ <td class="description last">
3463
+
3464
+
3465
+ </td>
3466
+ </tr>
3467
+
3468
+
3469
+ </tbody>
3470
+ </table>
3471
+
3472
+
3473
+
3474
+
3475
+
3476
+ <dl class="details">
3477
+
3478
+
3479
+
3480
+
3481
+
3482
+
3483
+
3484
+
3485
+
3486
+
3487
+
3488
+
3489
+
3490
+
3491
+
3492
+
3493
+
3494
+
3495
+
3496
+
3497
+
3498
+
3499
+
3500
+
3501
+
3502
+
3503
+ <dt class="tag-source">Source:</dt>
3504
+ <dd class="tag-source">
3505
+ <ul class="dummy">
3506
+ <li>
3507
+ <a href="poweredup-browser.js.html">poweredup-browser.js</a>, <a href="poweredup-browser.js.html#line115">line 115</a>
3508
+ </li>
3509
+ </ul>
3510
+ </dd>
3511
+
3512
+
3513
+
3514
+
3515
+
3516
+
3517
+
3518
+ </dl>
3519
+
3520
+
3521
+
3522
+
3523
+
3524
+
3525
+
3526
+
3527
+
3528
+
3529
+
3530
+
3531
+
3532
+
3533
+
3534
+
3535
+
3536
+
3537
+
3538
+
3539
+ <span class='name-container'>
3540
+ <a class="link-icon" href="#getHubsByType">
3541
+ <svg height="20" width="20" style="fill: black;">
3542
+ <use xlink:href="#linkIcon"></use>
3543
+ </svg>
3544
+ </a>
3545
+ <h4 class="name" id="getHubsByType">
3546
+ <span class="type-signature"></span>getHubsByType<span class="signature">(name)</span><span class="type-signature"> &rarr; {Array.&lt;<a href="BaseHub.html">BaseHub</a>>}</span>
3547
+ </h4>
3548
+ </span>
3549
+
3550
+
3551
+
3552
+
3553
+
3554
+ <div class="description">
3555
+ <p>Retrieve a list of Powered UP Hub by type.</p>
3556
+ </div>
3557
+
3558
+
3559
+
3560
+
3561
+
3562
+
3563
+
3564
+ <h5>Parameters:</h5>
3565
+
3566
+
3567
+ <table class="params">
3568
+ <thead>
3569
+ <tr>
3570
+
3571
+ <th>Name</th>
3572
+
3573
+
3574
+ <th>Type</th>
3575
+
3576
+
3577
+
3578
+
3579
+
3580
+ <th class="last">Description</th>
3581
+ </tr>
3582
+ </thead>
3583
+
3584
+ <tbody>
3585
+
3586
+ <tr>
3587
+
3588
+ <td class="name"><code>name</code></td>
3589
+
3590
+
3591
+ <td class="type">
3592
+
3593
+
3594
+ <span class="param-type">
3595
+ string
3596
+ </span>
3597
+
3598
+
3599
+
3600
+
3601
+
3602
+ </td>
3603
+
3604
+
3605
+
3606
+
3607
+
3608
+ <td class="description last">
3609
+
3610
+
3611
+ </td>
3612
+ </tr>
3613
+
3614
+
3615
+ </tbody>
3616
+ </table>
3617
+
3618
+
3619
+
3620
+
3621
+
3622
+ <dl class="details">
3623
+
3624
+
3625
+
3626
+
3627
+
3628
+
3629
+
3630
+
3631
+
3632
+
3633
+
3634
+
3635
+
3636
+
3637
+
3638
+
3639
+
3640
+
3641
+
3642
+
3643
+
3644
+
3645
+
3646
+
3647
+
3648
+
3649
+ <dt class="tag-source">Source:</dt>
3650
+ <dd class="tag-source">
3651
+ <ul class="dummy">
3652
+ <li>
3653
+ <a href="poweredup-node.js.html">poweredup-node.js</a>, <a href="poweredup-node.js.html#line138">line 138</a>
3654
+ </li>
3655
+ </ul>
3656
+ </dd>
3657
+
3658
+
3659
+
3660
+
3661
+
3662
+
3663
+
3664
+ </dl>
3665
+
3666
+
3667
+
3668
+
3669
+
3670
+
3671
+
3672
+
3673
+
3674
+
3675
+
3676
+
3677
+
3678
+
3679
+
3680
+
3681
+
3682
+
3683
+
3684
+
3685
+ <span class='name-container'>
3686
+ <a class="link-icon" href="#scan">
3687
+ <svg height="20" width="20" style="fill: black;">
3688
+ <use xlink:href="#linkIcon"></use>
3689
+ </svg>
3690
+ </a>
3691
+ <h4 class="name" id="scan">
3692
+ <span class="type-signature"></span>scan<span class="signature">()</span><span class="type-signature"></span>
3693
+ </h4>
3694
+ </span>
3695
+
3696
+
3697
+
3698
+
3699
+
3700
+ <div class="description">
3701
+ <p>Begin scanning for Powered UP Hub devices.</p>
3702
+ </div>
3703
+
3704
+
3705
+
3706
+
3707
+
3708
+
3709
+
3710
+
3711
+
3712
+
3713
+ <dl class="details">
3714
+
3715
+
3716
+
3717
+
3718
+
3719
+
3720
+
3721
+
3722
+
3723
+
3724
+
3725
+
3726
+
3727
+
3728
+
3729
+
3730
+
3731
+
3732
+
3733
+
3734
+
3735
+
3736
+
3737
+
3738
+
3739
+
3740
+ <dt class="tag-source">Source:</dt>
3741
+ <dd class="tag-source">
3742
+ <ul class="dummy">
3743
+ <li>
3744
+ <a href="poweredup-node.js.html">poweredup-node.js</a>, <a href="poweredup-node.js.html#line75">line 75</a>
3745
+ </li>
3746
+ </ul>
3747
+ </dd>
3748
+
3749
+
3750
+
3751
+
3752
+
3753
+
3754
+
3755
+ </dl>
3756
+
3757
+
3758
+
3759
+
3760
+
3761
+
3762
+
3763
+
3764
+
3765
+
3766
+
3767
+
3768
+
3769
+
3770
+
3771
+
3772
+
3773
+
3774
+
3775
+
3776
+ <span class='name-container'>
3777
+ <a class="link-icon" href="#scan">
3778
+ <svg height="20" width="20" style="fill: black;">
3779
+ <use xlink:href="#linkIcon"></use>
3780
+ </svg>
3781
+ </a>
3782
+ <h4 class="name" id="scan">
3783
+ <span class="type-signature"></span>scan<span class="signature">()</span><span class="type-signature"></span>
3784
+ </h4>
3785
+ </span>
3786
+
3787
+
3788
+
3789
+
3790
+
3791
+ <div class="description">
3792
+ <p>Begin scanning for Powered UP Hub devices.</p>
3793
+ </div>
3794
+
3795
+
3796
+
3797
+
3798
+
3799
+
3800
+
3801
+
3802
+
3803
+
3804
+ <dl class="details">
3805
+
3806
+
3807
+
3808
+
3809
+
3810
+
3811
+
3812
+
3813
+
3814
+
3815
+
3816
+
3817
+
3818
+
3819
+
3820
+
3821
+
3822
+
3823
+
3824
+
3825
+
3826
+
3827
+
3828
+
3829
+
3830
+
3831
+ <dt class="tag-source">Source:</dt>
3832
+ <dd class="tag-source">
3833
+ <ul class="dummy">
3834
+ <li>
3835
+ <a href="poweredup-browser.js.html">poweredup-browser.js</a>, <a href="poweredup-browser.js.html#line46">line 46</a>
3836
+ </li>
3837
+ </ul>
3838
+ </dd>
3839
+
3840
+
3841
+
3842
+
3843
+
3844
+
3845
+
3846
+ </dl>
3847
+
3848
+
3849
+
3850
+
3851
+
3852
+
3853
+
3854
+
3855
+
3856
+
3857
+
3858
+
3859
+
3860
+
3861
+
3862
+
3863
+
3864
+
3865
+
3866
+
3867
+ <span class='name-container'>
3868
+ <a class="link-icon" href="#stop">
3869
+ <svg height="20" width="20" style="fill: black;">
3870
+ <use xlink:href="#linkIcon"></use>
3871
+ </svg>
3872
+ </a>
3873
+ <h4 class="name" id="stop">
3874
+ <span class="type-signature"></span>stop<span class="signature">()</span><span class="type-signature"></span>
3875
+ </h4>
3876
+ </span>
3877
+
3878
+
3879
+
3880
+
3881
+
3882
+ <div class="description">
3883
+ <p>Stop scanning for Powered UP Hub devices.</p>
3884
+ </div>
3885
+
3886
+
3887
+
3888
+
3889
+
3890
+
3891
+
3892
+
3893
+
3894
+
3895
+ <dl class="details">
3896
+
3897
+
3898
+
3899
+
3900
+
3901
+
3902
+
3903
+
3904
+
3905
+
3906
+
3907
+
3908
+
3909
+
3910
+
3911
+
3912
+
3913
+
3914
+
3915
+
3916
+
3917
+
3918
+
3919
+
3920
+
3921
+
3922
+ <dt class="tag-source">Source:</dt>
3923
+ <dd class="tag-source">
3924
+ <ul class="dummy">
3925
+ <li>
3926
+ <a href="poweredup-node.js.html">poweredup-node.js</a>, <a href="poweredup-node.js.html#line91">line 91</a>
3927
+ </li>
3928
+ </ul>
3929
+ </dd>
3930
+
3931
+
3932
+
3933
+
3934
+
3935
+
3936
+
3937
+ </dl>
3938
+
3939
+
3940
+
3941
+
3942
+
3943
+
3944
+
3945
+
3946
+
3947
+
3948
+
3949
+
3950
+
3951
+
3952
+
3953
+
3954
+
3955
+
3956
+
3957
+
3958
+ <h3 class="subsection-title">Events</h3>
3959
+
3960
+
3961
+
3962
+
3963
+
3964
+
3965
+
3966
+ <span class='name-container'>
3967
+ <a class="link-icon" href="#event:discover">
3968
+ <svg height="20" width="20" style="fill: black;">
3969
+ <use xlink:href="#linkIcon"></use>
3970
+ </svg>
3971
+ </a>
3972
+ <h4 class="name" id="event:discover">
3973
+ <span class="type-signature"></span>discover<span class="type-signature"></span>
3974
+ </h4>
3975
+ </span>
3976
+
3977
+
3978
+
3979
+
3980
+
3981
+ <div class="description">
3982
+ <p>Emits when a Powered UP Hub device is found.</p>
3983
+ </div>
3984
+
3985
+
3986
+
3987
+
3988
+
3989
+
3990
+
3991
+ <h5>Parameters:</h5>
3992
+
3993
+
3994
+ <table class="params">
3995
+ <thead>
3996
+ <tr>
3997
+
3998
+ <th>Name</th>
3999
+
4000
+
4001
+ <th>Type</th>
4002
+
4003
+
4004
+
4005
+
4006
+
4007
+ <th class="last">Description</th>
4008
+ </tr>
4009
+ </thead>
4010
+
4011
+ <tbody>
4012
+
4013
+ <tr>
4014
+
4015
+ <td class="name"><code>hub</code></td>
4016
+
4017
+
4018
+ <td class="type">
4019
+
4020
+
4021
+ <span class="param-type">
4022
+ <a href="WeDo2SmartHub.html">WeDo2SmartHub</a>
4023
+ </span>
4024
+
4025
+ |
4026
+
4027
+ <span class="param-type">
4028
+ <a href="MoveHub.html">MoveHub</a>
4029
+ </span>
4030
+
4031
+ |
4032
+
4033
+ <span class="param-type">
4034
+ <a href="TechnicMediumHub.html">TechnicMediumHub</a>
4035
+ </span>
4036
+
4037
+ |
4038
+
4039
+ <span class="param-type">
4040
+ <a href="RemoteControl.html">RemoteControl</a>
4041
+ </span>
4042
+
4043
+ |
4044
+
4045
+ <span class="param-type">
4046
+ <a href="DuploTrainBase.html">DuploTrainBase</a>
4047
+ </span>
4048
+
4049
+
4050
+
4051
+
4052
+
4053
+ </td>
4054
+
4055
+
4056
+
4057
+
4058
+
4059
+ <td class="description last">
4060
+
4061
+
4062
+ </td>
4063
+ </tr>
4064
+
4065
+
4066
+ </tbody>
4067
+ </table>
4068
+
4069
+
4070
+
4071
+
4072
+
4073
+ <dl class="details">
4074
+
4075
+
4076
+
4077
+
4078
+
4079
+
4080
+
4081
+
4082
+
4083
+
4084
+
4085
+
4086
+
4087
+
4088
+
4089
+
4090
+
4091
+
4092
+
4093
+
4094
+
4095
+
4096
+
4097
+
4098
+
4099
+
4100
+ <dt class="tag-source">Source:</dt>
4101
+ <dd class="tag-source">
4102
+ <ul class="dummy">
4103
+ <li>
4104
+ <a href="poweredup-node.js.html">poweredup-node.js</a>, <a href="poweredup-node.js.html#line191">line 191</a>
4105
+ </li>
4106
+ </ul>
4107
+ </dd>
4108
+
4109
+
4110
+
4111
+
4112
+
4113
+
4114
+
4115
+ </dl>
4116
+
4117
+
4118
+
4119
+
4120
+
4121
+
4122
+
4123
+
4124
+
4125
+
4126
+
4127
+
4128
+
4129
+
4130
+
4131
+
4132
+
4133
+
4134
+
4135
+
4136
+ <span class='name-container'>
4137
+ <a class="link-icon" href="#event:discover">
4138
+ <svg height="20" width="20" style="fill: black;">
4139
+ <use xlink:href="#linkIcon"></use>
4140
+ </svg>
4141
+ </a>
4142
+ <h4 class="name" id="event:discover">
4143
+ <span class="type-signature"></span>discover<span class="type-signature"></span>
4144
+ </h4>
4145
+ </span>
4146
+
4147
+
4148
+
4149
+
4150
+
4151
+ <div class="description">
4152
+ <p>Emits when a Powered UP Hub device is found.</p>
4153
+ </div>
4154
+
4155
+
4156
+
4157
+
4158
+
4159
+
4160
+
4161
+ <h5>Parameters:</h5>
4162
+
4163
+
4164
+ <table class="params">
4165
+ <thead>
4166
+ <tr>
4167
+
4168
+ <th>Name</th>
4169
+
4170
+
4171
+ <th>Type</th>
4172
+
4173
+
4174
+
4175
+
4176
+
4177
+ <th class="last">Description</th>
4178
+ </tr>
4179
+ </thead>
4180
+
4181
+ <tbody>
4182
+
4183
+ <tr>
4184
+
4185
+ <td class="name"><code>hub</code></td>
4186
+
4187
+
4188
+ <td class="type">
4189
+
4190
+
4191
+ <span class="param-type">
4192
+ <a href="WeDo2SmartHub.html">WeDo2SmartHub</a>
4193
+ </span>
4194
+
4195
+ |
4196
+
4197
+ <span class="param-type">
4198
+ <a href="MoveHub.html">MoveHub</a>
4199
+ </span>
4200
+
4201
+ |
4202
+
4203
+ <span class="param-type">
4204
+ <a href="TechnicMediumHub.html">TechnicMediumHub</a>
4205
+ </span>
4206
+
4207
+ |
4208
+
4209
+ <span class="param-type">
4210
+ <a href="RemoteControl.html">RemoteControl</a>
4211
+ </span>
4212
+
4213
+ |
4214
+
4215
+ <span class="param-type">
4216
+ <a href="DuploTrainBase.html">DuploTrainBase</a>
4217
+ </span>
4218
+
4219
+
4220
+
4221
+
4222
+
4223
+ </td>
4224
+
4225
+
4226
+
4227
+
4228
+
4229
+ <td class="description last">
4230
+
4231
+
4232
+ </td>
4233
+ </tr>
4234
+
4235
+
4236
+ </tbody>
4237
+ </table>
4238
+
4239
+
4240
+
4241
+
4242
+
4243
+ <dl class="details">
4244
+
4245
+
4246
+
4247
+
4248
+
4249
+
4250
+
4251
+
4252
+
4253
+
4254
+
4255
+
4256
+
4257
+
4258
+
4259
+
4260
+
4261
+
4262
+
4263
+
4264
+
4265
+
4266
+
4267
+
4268
+
4269
+
4270
+ <dt class="tag-source">Source:</dt>
4271
+ <dd class="tag-source">
4272
+ <ul class="dummy">
4273
+ <li>
4274
+ <a href="poweredup-browser.js.html">poweredup-browser.js</a>, <a href="poweredup-browser.js.html#line225">line 225</a>
4275
+ </li>
4276
+ </ul>
4277
+ </dd>
4278
+
4279
+
4280
+
4281
+
4282
+
4283
+
4284
+
4285
+ </dl>
4286
+
4287
+
4288
+
4289
+
4290
+
4291
+
4292
+
4293
+
4294
+
4295
+
4296
+
4297
+
4298
+
4299
+
4300
+
4301
+
4302
+ </article>
4303
+ </section>
4304
+
4305
+
4306
+
4307
+
4308
+ </div>
4309
+
4310
+ <br class="clear">
4311
+
4312
+ <footer>
4313
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a>
4314
+ </footer>
4315
+
4316
+ <script src="scripts/linenumber.js"></script>
4317
+ <script src="scripts/pagelocation.js"></script>
4318
+
4319
+
4320
+
4321
+ </body>
4322
+ </html>