node-poweredup 6.11.0 → 8.0.1

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