node-poweredup 6.10.0 → 8.0.0

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