@switchbot/homebridge-switchbot 5.0.0-beta.7 → 5.0.0-beta.71

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 (446) hide show
  1. package/.github/ISSUE_TEMPLATE/e2e-verification.md +36 -0
  2. package/.github/workflows/ci.yml +61 -0
  3. package/.github/workflows/manual-e2e.yml +103 -0
  4. package/CHANGELOG.md +35 -0
  5. package/E2E-VERIFICATION.md +121 -0
  6. package/MIGRATION.md +44 -0
  7. package/README.md +56 -3
  8. package/config.schema.json +99 -14823
  9. package/dist/deviceFactory.d.ts +13 -0
  10. package/dist/deviceFactory.d.ts.map +1 -0
  11. package/dist/deviceFactory.js +81 -0
  12. package/dist/deviceFactory.js.map +1 -0
  13. package/dist/devices/deviceBase.d.ts +50 -0
  14. package/dist/devices/deviceBase.d.ts.map +1 -0
  15. package/dist/devices/deviceBase.js +119 -0
  16. package/dist/devices/deviceBase.js.map +1 -0
  17. package/dist/devices/genericDevice.d.ts +283 -0
  18. package/dist/devices/genericDevice.d.ts.map +1 -0
  19. package/dist/devices/genericDevice.js +1035 -0
  20. package/dist/devices/genericDevice.js.map +1 -0
  21. package/dist/homebridge-ui/public/index.html +77 -245
  22. package/dist/homebridge-ui/server.d.ts +3 -1
  23. package/dist/homebridge-ui/server.d.ts.map +1 -1
  24. package/dist/homebridge-ui/server.js +42 -36
  25. package/dist/homebridge-ui/server.js.map +1 -1
  26. package/dist/index.d.ts.map +1 -1
  27. package/dist/index.js +5 -12
  28. package/dist/index.js.map +1 -1
  29. package/dist/platform.d.ts +27 -0
  30. package/dist/platform.d.ts.map +1 -0
  31. package/dist/platform.js +404 -0
  32. package/dist/platform.js.map +1 -0
  33. package/dist/settings.d.ts +10 -249
  34. package/dist/settings.d.ts.map +1 -1
  35. package/dist/settings.js +5 -30
  36. package/dist/settings.js.map +1 -1
  37. package/dist/switchbotClient.d.ts +32 -0
  38. package/dist/switchbotClient.d.ts.map +1 -0
  39. package/dist/switchbotClient.js +259 -0
  40. package/dist/switchbotClient.js.map +1 -0
  41. package/dist/utils.d.ts +39 -50
  42. package/dist/utils.d.ts.map +1 -1
  43. package/dist/utils.js +39 -688
  44. package/dist/utils.js.map +1 -1
  45. package/docs/assets/highlight.css +14 -0
  46. package/docs/assets/icons.js +1 -1
  47. package/docs/assets/icons.svg +1 -1
  48. package/docs/assets/main.js +2 -2
  49. package/docs/assets/style.css +3 -3
  50. package/docs/index.html +77 -13
  51. package/docs/variables/default.html +1 -1
  52. package/package.json +22 -21
  53. package/scripts/e2e/README.md +25 -0
  54. package/scripts/e2e/curtain-e2e.sh +70 -0
  55. package/scripts/e2e/fan-e2e.sh +75 -0
  56. package/scripts/e2e/light-advanced-e2e.sh +97 -0
  57. package/scripts/e2e/light-e2e.sh +75 -0
  58. package/scripts/e2e/list-accessories.sh +19 -0
  59. package/scripts/e2e/lock-e2e.sh +65 -0
  60. package/scripts/generate-matter-maps.js +60 -0
  61. package/scripts/run-e2e-local.sh +14 -0
  62. package/src/deviceFactory.ts +122 -0
  63. package/src/devices/deviceBase.ts +141 -0
  64. package/src/devices/genericDevice.ts +965 -0
  65. package/src/homebridge-ui/public/index.html +77 -245
  66. package/src/homebridge-ui/server.ts +49 -41
  67. package/src/index.ts +5 -13
  68. package/src/platform.ts +395 -0
  69. package/src/settings.ts +12 -277
  70. package/src/switchbotClient.ts +266 -0
  71. package/src/utils.ts +45 -713
  72. package/test/accessory-restore.spec.ts +73 -0
  73. package/test/device-mapping.spec.ts +37 -0
  74. package/test/deviceFactory.spec.ts +18 -0
  75. package/test/e2e/run-e2e.spec.ts +50 -0
  76. package/test/fan-swing.spec.ts +29 -0
  77. package/test/helpers/matter-harness.ts +53 -0
  78. package/test/lock-users.spec.ts +44 -0
  79. package/test/matter-childbridge.spec.ts +55 -0
  80. package/test/matter-descriptors.spec.ts +97 -0
  81. package/test/matter-device-state.spec.ts +101 -0
  82. package/test/matter-integration.spec.ts +70 -0
  83. package/test/platform.integration.spec.ts +55 -0
  84. package/test/switchbot-client-debounce.spec.ts +131 -0
  85. package/test/switchbot-client-openapi.spec.ts +56 -0
  86. package/test/switchbotClient.spec.ts +10 -0
  87. package/test/utils.spec.ts +20 -0
  88. package/vitest.config.ts +7 -0
  89. package/coverage/base.css +0 -224
  90. package/coverage/block-navigation.js +0 -87
  91. package/coverage/clover.xml +0 -15847
  92. package/coverage/coverage-final.json +0 -42
  93. package/coverage/docs/assets/dmt/dmt-component-data.js.html +0 -85
  94. package/coverage/docs/assets/dmt/dmt-components.js.html +0 -286
  95. package/coverage/docs/assets/dmt/index.html +0 -131
  96. package/coverage/docs/assets/hierarchy.js.html +0 -85
  97. package/coverage/docs/assets/icons.js.html +0 -136
  98. package/coverage/docs/assets/index.html +0 -146
  99. package/coverage/docs/assets/main.js.html +0 -265
  100. package/coverage/favicon.png +0 -0
  101. package/coverage/index.html +0 -191
  102. package/coverage/prettify.css +0 -1
  103. package/coverage/prettify.js +0 -2
  104. package/coverage/sort-arrow-sprite.png +0 -0
  105. package/coverage/sorter.js +0 -196
  106. package/coverage/src/device/blindtilt.ts.html +0 -3238
  107. package/coverage/src/device/bot.ts.html +0 -2803
  108. package/coverage/src/device/ceilinglight.ts.html +0 -2338
  109. package/coverage/src/device/colorbulb.ts.html +0 -2824
  110. package/coverage/src/device/contact.ts.html +0 -1465
  111. package/coverage/src/device/curtain.ts.html +0 -2869
  112. package/coverage/src/device/device.ts.html +0 -2500
  113. package/coverage/src/device/fan.ts.html +0 -2242
  114. package/coverage/src/device/hub.ts.html +0 -1408
  115. package/coverage/src/device/humidifier.ts.html +0 -2116
  116. package/coverage/src/device/index.html +0 -416
  117. package/coverage/src/device/iosensor.ts.html +0 -1375
  118. package/coverage/src/device/lightstrip.ts.html +0 -2617
  119. package/coverage/src/device/lock.ts.html +0 -1963
  120. package/coverage/src/device/meter.ts.html +0 -1372
  121. package/coverage/src/device/meterplus.ts.html +0 -1384
  122. package/coverage/src/device/meterpro.ts.html +0 -1618
  123. package/coverage/src/device/motion.ts.html +0 -1264
  124. package/coverage/src/device/plug.ts.html +0 -1372
  125. package/coverage/src/device/relayswitch.ts.html +0 -2284
  126. package/coverage/src/device/robotvacuumcleaner.ts.html +0 -1810
  127. package/coverage/src/device/waterdetector.ts.html +0 -1294
  128. package/coverage/src/homebridge-ui/index.html +0 -116
  129. package/coverage/src/homebridge-ui/server.ts.html +0 -229
  130. package/coverage/src/index.html +0 -161
  131. package/coverage/src/index.ts.html +0 -124
  132. package/coverage/src/irdevice/airconditioner.ts.html +0 -1687
  133. package/coverage/src/irdevice/airpurifier.ts.html +0 -844
  134. package/coverage/src/irdevice/camera.ts.html +0 -475
  135. package/coverage/src/irdevice/fan.ts.html +0 -766
  136. package/coverage/src/irdevice/index.html +0 -251
  137. package/coverage/src/irdevice/irdevice.ts.html +0 -1117
  138. package/coverage/src/irdevice/light.ts.html +0 -826
  139. package/coverage/src/irdevice/other.ts.html +0 -2458
  140. package/coverage/src/irdevice/tv.ts.html +0 -1222
  141. package/coverage/src/irdevice/vacuumcleaner.ts.html +0 -466
  142. package/coverage/src/irdevice/waterheater.ts.html +0 -469
  143. package/coverage/src/platform.ts.html +0 -8776
  144. package/coverage/src/settings.ts.html +0 -934
  145. package/coverage/src/utils.ts.html +0 -2092
  146. package/dist/devices-hap/airpurifier.d.ts +0 -54
  147. package/dist/devices-hap/airpurifier.d.ts.map +0 -1
  148. package/dist/devices-hap/airpurifier.js +0 -527
  149. package/dist/devices-hap/airpurifier.js.map +0 -1
  150. package/dist/devices-hap/blindtilt.d.ts +0 -90
  151. package/dist/devices-hap/blindtilt.d.ts.map +0 -1
  152. package/dist/devices-hap/blindtilt.js +0 -974
  153. package/dist/devices-hap/blindtilt.js.map +0 -1
  154. package/dist/devices-hap/bot.d.ts +0 -102
  155. package/dist/devices-hap/bot.d.ts.map +0 -1
  156. package/dist/devices-hap/bot.js +0 -811
  157. package/dist/devices-hap/bot.js.map +0 -1
  158. package/dist/devices-hap/ceilinglight.d.ts +0 -85
  159. package/dist/devices-hap/ceilinglight.d.ts.map +0 -1
  160. package/dist/devices-hap/ceilinglight.js +0 -701
  161. package/dist/devices-hap/ceilinglight.js.map +0 -1
  162. package/dist/devices-hap/colorbulb.d.ts +0 -88
  163. package/dist/devices-hap/colorbulb.d.ts.map +0 -1
  164. package/dist/devices-hap/colorbulb.js +0 -881
  165. package/dist/devices-hap/colorbulb.js.map +0 -1
  166. package/dist/devices-hap/contact.d.ts +0 -44
  167. package/dist/devices-hap/contact.d.ts.map +0 -1
  168. package/dist/devices-hap/contact.js +0 -409
  169. package/dist/devices-hap/contact.js.map +0 -1
  170. package/dist/devices-hap/curtain.d.ts +0 -73
  171. package/dist/devices-hap/curtain.d.ts.map +0 -1
  172. package/dist/devices-hap/curtain.js +0 -869
  173. package/dist/devices-hap/curtain.js.map +0 -1
  174. package/dist/devices-hap/device.d.ts +0 -98
  175. package/dist/devices-hap/device.d.ts.map +0 -1
  176. package/dist/devices-hap/device.js +0 -749
  177. package/dist/devices-hap/device.js.map +0 -1
  178. package/dist/devices-hap/fan.d.ts +0 -69
  179. package/dist/devices-hap/fan.d.ts.map +0 -1
  180. package/dist/devices-hap/fan.js +0 -649
  181. package/dist/devices-hap/fan.js.map +0 -1
  182. package/dist/devices-hap/hub.d.ts +0 -37
  183. package/dist/devices-hap/hub.d.ts.map +0 -1
  184. package/dist/devices-hap/hub.js +0 -392
  185. package/dist/devices-hap/hub.js.map +0 -1
  186. package/dist/devices-hap/humidifier.d.ts +0 -68
  187. package/dist/devices-hap/humidifier.d.ts.map +0 -1
  188. package/dist/devices-hap/humidifier.js +0 -628
  189. package/dist/devices-hap/humidifier.js.map +0 -1
  190. package/dist/devices-hap/iosensor.d.ts +0 -42
  191. package/dist/devices-hap/iosensor.d.ts.map +0 -1
  192. package/dist/devices-hap/iosensor.js +0 -382
  193. package/dist/devices-hap/iosensor.js.map +0 -1
  194. package/dist/devices-hap/lightstrip.d.ts +0 -79
  195. package/dist/devices-hap/lightstrip.d.ts.map +0 -1
  196. package/dist/devices-hap/lightstrip.js +0 -797
  197. package/dist/devices-hap/lightstrip.js.map +0 -1
  198. package/dist/devices-hap/lock.d.ts +0 -53
  199. package/dist/devices-hap/lock.d.ts.map +0 -1
  200. package/dist/devices-hap/lock.js +0 -561
  201. package/dist/devices-hap/lock.js.map +0 -1
  202. package/dist/devices-hap/meter.d.ts +0 -37
  203. package/dist/devices-hap/meter.d.ts.map +0 -1
  204. package/dist/devices-hap/meter.js +0 -379
  205. package/dist/devices-hap/meter.js.map +0 -1
  206. package/dist/devices-hap/meterplus.d.ts +0 -42
  207. package/dist/devices-hap/meterplus.d.ts.map +0 -1
  208. package/dist/devices-hap/meterplus.js +0 -384
  209. package/dist/devices-hap/meterplus.js.map +0 -1
  210. package/dist/devices-hap/meterpro.d.ts +0 -43
  211. package/dist/devices-hap/meterpro.d.ts.map +0 -1
  212. package/dist/devices-hap/meterpro.js +0 -468
  213. package/dist/devices-hap/meterpro.js.map +0 -1
  214. package/dist/devices-hap/motion.d.ts +0 -42
  215. package/dist/devices-hap/motion.d.ts.map +0 -1
  216. package/dist/devices-hap/motion.js +0 -345
  217. package/dist/devices-hap/motion.js.map +0 -1
  218. package/dist/devices-hap/plug.d.ts +0 -49
  219. package/dist/devices-hap/plug.d.ts.map +0 -1
  220. package/dist/devices-hap/plug.js +0 -395
  221. package/dist/devices-hap/plug.js.map +0 -1
  222. package/dist/devices-hap/relayswitch.d.ts +0 -96
  223. package/dist/devices-hap/relayswitch.d.ts.map +0 -1
  224. package/dist/devices-hap/relayswitch.js +0 -642
  225. package/dist/devices-hap/relayswitch.js.map +0 -1
  226. package/dist/devices-hap/robotvacuumcleaner.d.ts +0 -54
  227. package/dist/devices-hap/robotvacuumcleaner.d.ts.map +0 -1
  228. package/dist/devices-hap/robotvacuumcleaner.js +0 -523
  229. package/dist/devices-hap/robotvacuumcleaner.js.map +0 -1
  230. package/dist/devices-hap/waterdetector.d.ts +0 -41
  231. package/dist/devices-hap/waterdetector.d.ts.map +0 -1
  232. package/dist/devices-hap/waterdetector.js +0 -356
  233. package/dist/devices-hap/waterdetector.js.map +0 -1
  234. package/dist/devices-matter/BaseMatterAccessory.d.ts +0 -63
  235. package/dist/devices-matter/BaseMatterAccessory.d.ts.map +0 -1
  236. package/dist/devices-matter/BaseMatterAccessory.js +0 -100
  237. package/dist/devices-matter/BaseMatterAccessory.js.map +0 -1
  238. package/dist/devices-matter/ColorLightAccessory.d.ts +0 -20
  239. package/dist/devices-matter/ColorLightAccessory.d.ts.map +0 -1
  240. package/dist/devices-matter/ColorLightAccessory.js +0 -95
  241. package/dist/devices-matter/ColorLightAccessory.js.map +0 -1
  242. package/dist/devices-matter/ColorTemperatureLightAccessory.d.ts +0 -18
  243. package/dist/devices-matter/ColorTemperatureLightAccessory.d.ts.map +0 -1
  244. package/dist/devices-matter/ColorTemperatureLightAccessory.js +0 -78
  245. package/dist/devices-matter/ColorTemperatureLightAccessory.js.map +0 -1
  246. package/dist/devices-matter/ContactSensorAccessory.d.ts +0 -12
  247. package/dist/devices-matter/ContactSensorAccessory.d.ts.map +0 -1
  248. package/dist/devices-matter/ContactSensorAccessory.js +0 -34
  249. package/dist/devices-matter/ContactSensorAccessory.js.map +0 -1
  250. package/dist/devices-matter/DimmableLightAccessory.d.ts +0 -58
  251. package/dist/devices-matter/DimmableLightAccessory.d.ts.map +0 -1
  252. package/dist/devices-matter/DimmableLightAccessory.js +0 -167
  253. package/dist/devices-matter/DimmableLightAccessory.js.map +0 -1
  254. package/dist/devices-matter/DoorLockAccessory.d.ts +0 -14
  255. package/dist/devices-matter/DoorLockAccessory.d.ts.map +0 -1
  256. package/dist/devices-matter/DoorLockAccessory.js +0 -50
  257. package/dist/devices-matter/DoorLockAccessory.js.map +0 -1
  258. package/dist/devices-matter/ExtendedColorLightAccessory.d.ts +0 -21
  259. package/dist/devices-matter/ExtendedColorLightAccessory.d.ts.map +0 -1
  260. package/dist/devices-matter/ExtendedColorLightAccessory.js +0 -107
  261. package/dist/devices-matter/ExtendedColorLightAccessory.js.map +0 -1
  262. package/dist/devices-matter/FanAccessory.d.ts +0 -16
  263. package/dist/devices-matter/FanAccessory.d.ts.map +0 -1
  264. package/dist/devices-matter/FanAccessory.js +0 -81
  265. package/dist/devices-matter/FanAccessory.js.map +0 -1
  266. package/dist/devices-matter/HumiditySensorAccessory.d.ts +0 -12
  267. package/dist/devices-matter/HumiditySensorAccessory.d.ts.map +0 -1
  268. package/dist/devices-matter/HumiditySensorAccessory.js +0 -34
  269. package/dist/devices-matter/HumiditySensorAccessory.js.map +0 -1
  270. package/dist/devices-matter/LeakSensorAccessory.d.ts +0 -12
  271. package/dist/devices-matter/LeakSensorAccessory.d.ts.map +0 -1
  272. package/dist/devices-matter/LeakSensorAccessory.js +0 -33
  273. package/dist/devices-matter/LeakSensorAccessory.js.map +0 -1
  274. package/dist/devices-matter/LightSensorAccessory.d.ts +0 -12
  275. package/dist/devices-matter/LightSensorAccessory.d.ts.map +0 -1
  276. package/dist/devices-matter/LightSensorAccessory.js +0 -34
  277. package/dist/devices-matter/LightSensorAccessory.js.map +0 -1
  278. package/dist/devices-matter/OccupancySensorAccessory.d.ts +0 -12
  279. package/dist/devices-matter/OccupancySensorAccessory.d.ts.map +0 -1
  280. package/dist/devices-matter/OccupancySensorAccessory.js +0 -39
  281. package/dist/devices-matter/OccupancySensorAccessory.js.map +0 -1
  282. package/dist/devices-matter/OnOffLightAccessory.d.ts +0 -38
  283. package/dist/devices-matter/OnOffLightAccessory.d.ts.map +0 -1
  284. package/dist/devices-matter/OnOffLightAccessory.js +0 -118
  285. package/dist/devices-matter/OnOffLightAccessory.js.map +0 -1
  286. package/dist/devices-matter/OnOffOutletAccessory.d.ts +0 -12
  287. package/dist/devices-matter/OnOffOutletAccessory.d.ts.map +0 -1
  288. package/dist/devices-matter/OnOffOutletAccessory.js +0 -40
  289. package/dist/devices-matter/OnOffOutletAccessory.js.map +0 -1
  290. package/dist/devices-matter/OnOffSwitchAccessory.d.ts +0 -14
  291. package/dist/devices-matter/OnOffSwitchAccessory.d.ts.map +0 -1
  292. package/dist/devices-matter/OnOffSwitchAccessory.js +0 -42
  293. package/dist/devices-matter/OnOffSwitchAccessory.js.map +0 -1
  294. package/dist/devices-matter/RoboticVacuumAccessory.d.ts +0 -68
  295. package/dist/devices-matter/RoboticVacuumAccessory.d.ts.map +0 -1
  296. package/dist/devices-matter/RoboticVacuumAccessory.js +0 -334
  297. package/dist/devices-matter/RoboticVacuumAccessory.js.map +0 -1
  298. package/dist/devices-matter/SmokeCOAlarmAccessory.d.ts +0 -11
  299. package/dist/devices-matter/SmokeCOAlarmAccessory.d.ts.map +0 -1
  300. package/dist/devices-matter/SmokeCOAlarmAccessory.js +0 -49
  301. package/dist/devices-matter/SmokeCOAlarmAccessory.js.map +0 -1
  302. package/dist/devices-matter/TemperatureSensorAccessory.d.ts +0 -12
  303. package/dist/devices-matter/TemperatureSensorAccessory.d.ts.map +0 -1
  304. package/dist/devices-matter/TemperatureSensorAccessory.js +0 -36
  305. package/dist/devices-matter/TemperatureSensorAccessory.js.map +0 -1
  306. package/dist/devices-matter/ThermostatAccessory.d.ts +0 -19
  307. package/dist/devices-matter/ThermostatAccessory.d.ts.map +0 -1
  308. package/dist/devices-matter/ThermostatAccessory.js +0 -95
  309. package/dist/devices-matter/ThermostatAccessory.js.map +0 -1
  310. package/dist/devices-matter/VenetianBlindAccessory.d.ts +0 -19
  311. package/dist/devices-matter/VenetianBlindAccessory.d.ts.map +0 -1
  312. package/dist/devices-matter/VenetianBlindAccessory.js +0 -99
  313. package/dist/devices-matter/VenetianBlindAccessory.js.map +0 -1
  314. package/dist/devices-matter/WindowBlindAccessory.d.ts +0 -17
  315. package/dist/devices-matter/WindowBlindAccessory.d.ts.map +0 -1
  316. package/dist/devices-matter/WindowBlindAccessory.js +0 -80
  317. package/dist/devices-matter/WindowBlindAccessory.js.map +0 -1
  318. package/dist/devices-matter/custom/PowerStripAccessory.d.ts +0 -97
  319. package/dist/devices-matter/custom/PowerStripAccessory.d.ts.map +0 -1
  320. package/dist/devices-matter/custom/PowerStripAccessory.js +0 -265
  321. package/dist/devices-matter/custom/PowerStripAccessory.js.map +0 -1
  322. package/dist/devices-matter/custom/index.d.ts +0 -8
  323. package/dist/devices-matter/custom/index.d.ts.map +0 -1
  324. package/dist/devices-matter/custom/index.js +0 -8
  325. package/dist/devices-matter/custom/index.js.map +0 -1
  326. package/dist/devices-matter/index.d.ts +0 -29
  327. package/dist/devices-matter/index.d.ts.map +0 -1
  328. package/dist/devices-matter/index.js +0 -28
  329. package/dist/devices-matter/index.js.map +0 -1
  330. package/dist/index.test.d.ts +0 -2
  331. package/dist/index.test.d.ts.map +0 -1
  332. package/dist/index.test.js +0 -14
  333. package/dist/index.test.js.map +0 -1
  334. package/dist/irdevice/airconditioner.d.ts +0 -61
  335. package/dist/irdevice/airconditioner.d.ts.map +0 -1
  336. package/dist/irdevice/airconditioner.js +0 -472
  337. package/dist/irdevice/airconditioner.js.map +0 -1
  338. package/dist/irdevice/airpurifier.d.ts +0 -50
  339. package/dist/irdevice/airpurifier.d.ts.map +0 -1
  340. package/dist/irdevice/airpurifier.js +0 -213
  341. package/dist/irdevice/airpurifier.js.map +0 -1
  342. package/dist/irdevice/camera.d.ts +0 -32
  343. package/dist/irdevice/camera.d.ts.map +0 -1
  344. package/dist/irdevice/camera.js +0 -107
  345. package/dist/irdevice/camera.js.map +0 -1
  346. package/dist/irdevice/fan.d.ts +0 -36
  347. package/dist/irdevice/fan.d.ts.map +0 -1
  348. package/dist/irdevice/fan.js +0 -200
  349. package/dist/irdevice/fan.js.map +0 -1
  350. package/dist/irdevice/irdevice.d.ts +0 -68
  351. package/dist/irdevice/irdevice.d.ts.map +0 -1
  352. package/dist/irdevice/irdevice.js +0 -298
  353. package/dist/irdevice/irdevice.js.map +0 -1
  354. package/dist/irdevice/light.d.ts +0 -36
  355. package/dist/irdevice/light.d.ts.map +0 -1
  356. package/dist/irdevice/light.js +0 -206
  357. package/dist/irdevice/light.js.map +0 -1
  358. package/dist/irdevice/other.d.ts +0 -57
  359. package/dist/irdevice/other.d.ts.map +0 -1
  360. package/dist/irdevice/other.js +0 -778
  361. package/dist/irdevice/other.js.map +0 -1
  362. package/dist/irdevice/tv.d.ts +0 -45
  363. package/dist/irdevice/tv.d.ts.map +0 -1
  364. package/dist/irdevice/tv.js +0 -327
  365. package/dist/irdevice/tv.js.map +0 -1
  366. package/dist/irdevice/vacuumcleaner.d.ts +0 -28
  367. package/dist/irdevice/vacuumcleaner.d.ts.map +0 -1
  368. package/dist/irdevice/vacuumcleaner.js +0 -104
  369. package/dist/irdevice/vacuumcleaner.js.map +0 -1
  370. package/dist/irdevice/waterheater.d.ts +0 -30
  371. package/dist/irdevice/waterheater.d.ts.map +0 -1
  372. package/dist/irdevice/waterheater.js +0 -105
  373. package/dist/irdevice/waterheater.js.map +0 -1
  374. package/dist/platform-hap.d.ts +0 -149
  375. package/dist/platform-hap.d.ts.map +0 -1
  376. package/dist/platform-hap.js +0 -2861
  377. package/dist/platform-hap.js.map +0 -1
  378. package/dist/platform-matter.d.ts +0 -101
  379. package/dist/platform-matter.d.ts.map +0 -1
  380. package/dist/platform-matter.js +0 -896
  381. package/dist/platform-matter.js.map +0 -1
  382. package/dist/verifyconfig.test.d.ts +0 -2
  383. package/dist/verifyconfig.test.d.ts.map +0 -1
  384. package/dist/verifyconfig.test.js +0 -167
  385. package/dist/verifyconfig.test.js.map +0 -1
  386. package/src/custom.d.ts +0 -7
  387. package/src/devices-hap/airpurifier.ts +0 -563
  388. package/src/devices-hap/blindtilt.ts +0 -1049
  389. package/src/devices-hap/bot.ts +0 -900
  390. package/src/devices-hap/ceilinglight.ts +0 -742
  391. package/src/devices-hap/colorbulb.ts +0 -904
  392. package/src/devices-hap/contact.ts +0 -457
  393. package/src/devices-hap/curtain.ts +0 -944
  394. package/src/devices-hap/device.ts +0 -811
  395. package/src/devices-hap/fan.ts +0 -711
  396. package/src/devices-hap/hub.ts +0 -439
  397. package/src/devices-hap/humidifier.ts +0 -669
  398. package/src/devices-hap/iosensor.ts +0 -427
  399. package/src/devices-hap/lightstrip.ts +0 -836
  400. package/src/devices-hap/lock.ts +0 -620
  401. package/src/devices-hap/meter.ts +0 -426
  402. package/src/devices-hap/meterplus.ts +0 -430
  403. package/src/devices-hap/meterpro.ts +0 -522
  404. package/src/devices-hap/motion.ts +0 -390
  405. package/src/devices-hap/plug.ts +0 -423
  406. package/src/devices-hap/relayswitch.ts +0 -727
  407. package/src/devices-hap/robotvacuumcleaner.ts +0 -568
  408. package/src/devices-hap/waterdetector.ts +0 -400
  409. package/src/devices-matter/BaseMatterAccessory.ts +0 -131
  410. package/src/devices-matter/ColorLightAccessory.ts +0 -110
  411. package/src/devices-matter/ColorTemperatureLightAccessory.ts +0 -92
  412. package/src/devices-matter/ContactSensorAccessory.ts +0 -41
  413. package/src/devices-matter/DimmableLightAccessory.ts +0 -192
  414. package/src/devices-matter/DoorLockAccessory.ts +0 -60
  415. package/src/devices-matter/ExtendedColorLightAccessory.ts +0 -123
  416. package/src/devices-matter/FanAccessory.ts +0 -95
  417. package/src/devices-matter/HumiditySensorAccessory.ts +0 -41
  418. package/src/devices-matter/LeakSensorAccessory.ts +0 -40
  419. package/src/devices-matter/LightSensorAccessory.ts +0 -41
  420. package/src/devices-matter/OccupancySensorAccessory.ts +0 -48
  421. package/src/devices-matter/OnOffLightAccessory.ts +0 -133
  422. package/src/devices-matter/OnOffOutletAccessory.ts +0 -46
  423. package/src/devices-matter/OnOffSwitchAccessory.ts +0 -51
  424. package/src/devices-matter/RoboticVacuumAccessory.ts +0 -407
  425. package/src/devices-matter/SmokeCOAlarmAccessory.ts +0 -59
  426. package/src/devices-matter/TemperatureSensorAccessory.ts +0 -43
  427. package/src/devices-matter/ThermostatAccessory.ts +0 -110
  428. package/src/devices-matter/VenetianBlindAccessory.ts +0 -115
  429. package/src/devices-matter/WindowBlindAccessory.ts +0 -92
  430. package/src/devices-matter/custom/PowerStripAccessory.ts +0 -309
  431. package/src/devices-matter/custom/index.ts +0 -8
  432. package/src/devices-matter/index.ts +0 -29
  433. package/src/index.test.ts +0 -19
  434. package/src/irdevice/airconditioner.ts +0 -533
  435. package/src/irdevice/airpurifier.ts +0 -252
  436. package/src/irdevice/camera.ts +0 -129
  437. package/src/irdevice/fan.ts +0 -226
  438. package/src/irdevice/irdevice.ts +0 -344
  439. package/src/irdevice/light.ts +0 -246
  440. package/src/irdevice/other.ts +0 -790
  441. package/src/irdevice/tv.ts +0 -378
  442. package/src/irdevice/vacuumcleaner.ts +0 -126
  443. package/src/irdevice/waterheater.ts +0 -127
  444. package/src/platform-hap.ts +0 -2997
  445. package/src/platform-matter.ts +0 -1010
  446. package/src/verifyconfig.test.ts +0 -197
@@ -1,974 +0,0 @@
1
- /*
2
- * For Testing Locally:
3
- * import { SwitchBotBLEModel, SwitchBotBLEModelName } from '/Users/Shared/GitHub/OpenWonderLabs/node-switchbot/dist/index.js';
4
- */
5
- import { SwitchBotBLEModel, SwitchBotBLEModelName } from 'node-switchbot';
6
- import { debounceTime, interval, skipWhile, Subject, take, tap } from 'rxjs';
7
- import { BlindTiltMappingMode, formatDeviceIdAsMac } from '../utils.js';
8
- import { deviceBase } from './device.js';
9
- export class BlindTilt extends deviceBase {
10
- platform;
11
- // Services
12
- WindowCovering;
13
- Battery;
14
- LightSensor;
15
- OpenModeSwitch;
16
- CloseModeSwitch;
17
- // OpenAPI
18
- deviceStatus;
19
- mappingMode = BlindTiltMappingMode.OnlyUp;
20
- // Webhook
21
- webhookContext;
22
- // BLE
23
- serviceData;
24
- // Target
25
- setNewTarget;
26
- setNewTargetTimer;
27
- // Updates
28
- blindTiltMoving;
29
- blindTiltUpdateInProgress;
30
- doBlindTiltUpdate;
31
- constructor(platform, accessory, device) {
32
- super(platform, accessory, device);
33
- this.platform = platform;
34
- // Set category
35
- accessory.category = 14 /* this.hap.Categories.WINDOW_COVERING */;
36
- // default placeholders
37
- this.mappingMode = device.mapping ?? BlindTiltMappingMode.OnlyUp;
38
- this.debugLog(`Mapping mode: ${this.mappingMode}`);
39
- // this is subject we use to track when we need to POST changes to the SwitchBot API
40
- this.doBlindTiltUpdate = new Subject();
41
- this.blindTiltMoving = false;
42
- this.blindTiltUpdateInProgress = false;
43
- this.setNewTarget = false;
44
- // Initialize WindowCovering Service
45
- accessory.context.WindowCovering = accessory.context.WindowCovering ?? {};
46
- this.WindowCovering = {
47
- Name: accessory.displayName,
48
- Service: accessory.getService(this.hap.Service.WindowCovering) ?? accessory.addService(this.hap.Service.WindowCovering),
49
- PositionState: accessory.context.PositionState ?? this.hap.Characteristic.PositionState.STOPPED,
50
- TargetPosition: accessory.context.TargetPosition ?? 100,
51
- CurrentPosition: accessory.context.CurrentPosition ?? 100,
52
- TargetHorizontalTiltAngle: accessory.context.TargetHorizontalTiltAngle ?? 90,
53
- CurrentHorizontalTiltAngle: accessory.context.CurrentHorizontalTiltAngle ?? 90,
54
- };
55
- accessory.context.WindowCovering = this.WindowCovering;
56
- // Initialize WindowCovering Characteristics
57
- this.WindowCovering.Service.setCharacteristic(this.hap.Characteristic.Name, this.WindowCovering.Name).getCharacteristic(this.hap.Characteristic.TargetPosition).setProps({
58
- minStep: device.set_minStep ?? 1,
59
- minValue: 0,
60
- maxValue: 100,
61
- validValueRanges: [0, 100],
62
- }).onGet(() => {
63
- return this.WindowCovering.TargetPosition;
64
- }).onSet(this.TargetPositionSet.bind(this));
65
- // Initialize WindowCovering CurrentPosition Characteristic
66
- this.WindowCovering.Service.getCharacteristic(this.hap.Characteristic.CurrentPosition).setProps({
67
- minStep: device.set_minStep ?? 1,
68
- minValue: 0,
69
- maxValue: 100,
70
- validValueRanges: [0, 100],
71
- }).onGet(() => {
72
- return this.WindowCovering.CurrentPosition ?? 0;
73
- });
74
- // Initialize WindowCovering TargetHorizontalTiltAngle Characteristic
75
- this.WindowCovering.Service.getCharacteristic(this.hap.Characteristic.TargetHorizontalTiltAngle).setProps({
76
- minStep: 180,
77
- minValue: -90,
78
- maxValue: 90,
79
- validValues: [-90, 90],
80
- }).onGet(() => {
81
- return this.WindowCovering.TargetHorizontalTiltAngle;
82
- }).onSet(this.TargetHorizontalTiltAngleSet.bind(this));
83
- // Initialize WindowCovering CurrentHorizontalTiltAngle Characteristic
84
- this.WindowCovering.Service.getCharacteristic(this.hap.Characteristic.CurrentHorizontalTiltAngle).setProps({
85
- minStep: 180,
86
- minValue: -90,
87
- maxValue: 90,
88
- validValues: [-90, 90],
89
- }).onGet(() => {
90
- return this.WindowCovering.CurrentHorizontalTiltAngle ?? 0;
91
- });
92
- // Initialize Battery Service
93
- accessory.context.Battery = accessory.context.Battery ?? {};
94
- this.Battery = {
95
- Name: `${accessory.displayName} Battery`,
96
- Service: accessory.getService(this.hap.Service.Battery) ?? accessory.addService(this.hap.Service.Battery),
97
- BatteryLevel: accessory.context.BatteryLevel ?? 100,
98
- StatusLowBattery: this.hap.Characteristic.StatusLowBattery.BATTERY_LEVEL_NORMAL,
99
- ChargingState: accessory.context.ChargingState ?? this.hap.Characteristic.ChargingState.NOT_CHARGING,
100
- };
101
- accessory.context.Battery = this.Battery;
102
- // Initialize Battery Name Characteristic
103
- this.Battery.Service.setCharacteristic(this.hap.Characteristic.Name, this.Battery.Name).setCharacteristic(this.hap.Characteristic.ChargingState, this.hap.Characteristic.ChargingState.NOT_CHARGEABLE);
104
- // Initialize LightSensor Service
105
- if (device.hide_lightsensor) {
106
- if (this.LightSensor?.Service) {
107
- this.debugLog('Removing Light Sensor Service');
108
- this.LightSensor.Service = accessory.getService(this.hap.Service.LightSensor);
109
- accessory.removeService(this.LightSensor.Service);
110
- accessory.context.LightSensor = {};
111
- }
112
- else {
113
- this.debugLog('Light Sensor Service is already removed');
114
- }
115
- }
116
- else {
117
- accessory.context.LightSensor = accessory.context.LightSensor ?? {};
118
- this.LightSensor = {
119
- Name: `${accessory.displayName} Light Sensor`,
120
- Service: accessory.getService(this.hap.Service.LightSensor) ?? accessory.addService(this.hap.Service.LightSensor),
121
- CurrentAmbientLightLevel: accessory.context.CurrentAmbientLightLevel ?? 0.0001,
122
- };
123
- accessory.context.LightSensor = this.LightSensor;
124
- // Initialize LightSensor Characteristics
125
- this.LightSensor.Service.setCharacteristic(this.hap.Characteristic.Name, this.LightSensor.Name).setCharacteristic(this.hap.Characteristic.StatusActive, true).getCharacteristic(this.hap.Characteristic.CurrentAmbientLightLevel).onGet(() => {
126
- return this.LightSensor?.CurrentAmbientLightLevel ?? 0.0001;
127
- });
128
- }
129
- // Initialize Open Mode Switch Service
130
- if (!device.silentModeSwitch) {
131
- if (this.OpenModeSwitch?.Service) {
132
- this.debugLog('Removing Open Mode Switch Service');
133
- this.OpenModeSwitch.Service = this.accessory.getService(this.hap.Service.Switch);
134
- accessory.removeService(this.OpenModeSwitch.Service);
135
- accessory.context.OpenModeSwitch = {};
136
- }
137
- }
138
- else {
139
- accessory.context.OpenModeSwitch = accessory.context.OpenModeSwitch ?? {};
140
- this.OpenModeSwitch = {
141
- Name: `${accessory.displayName} Silent Open Mode`,
142
- Service: accessory.getService(this.hap.Service.Switch) ?? accessory.addService(this.hap.Service.Switch),
143
- On: accessory.context.OpenModeSwitch.On ?? false,
144
- };
145
- accessory.context.OpenModeSwitch = this.OpenModeSwitch;
146
- // Initialize Open Mode Switch Service
147
- this.OpenModeSwitch.Service.setCharacteristic(this.hap.Characteristic.Name, this.OpenModeSwitch.Name).getCharacteristic(this.hap.Characteristic.On).onGet(() => {
148
- return this.OpenModeSwitch?.On ?? false;
149
- });
150
- this.OpenModeSwitch.Service.getCharacteristic(this.hap.Characteristic.On).onSet(this.OpenModeSwitchSet.bind(this));
151
- }
152
- // Initialize Close Mode Switch Service
153
- if (!device.silentModeSwitch) {
154
- if (this.CloseModeSwitch?.Service) {
155
- this.debugLog('Removing Close Mode Switch Service');
156
- this.CloseModeSwitch.Service = this.accessory.getService(this.hap.Service.Switch);
157
- accessory.removeService(this.CloseModeSwitch.Service);
158
- accessory.context.CloseModeSwitch = {};
159
- }
160
- }
161
- else {
162
- accessory.context.CloseModeSwitch = accessory.context.CloseModeSwitch ?? {};
163
- this.CloseModeSwitch = {
164
- Name: `${accessory.displayName} Silent Close Mode`,
165
- Service: accessory.getService(this.hap.Service.Switch) ?? accessory.addService(this.hap.Service.Switch),
166
- On: accessory.context.CloseModeSwitch.On ?? false,
167
- };
168
- accessory.context.CloseModeSwitch = this.CloseModeSwitch;
169
- // Initialize Close Mode Switch Service
170
- this.CloseModeSwitch.Service.setCharacteristic(this.hap.Characteristic.Name, this.CloseModeSwitch.Name).getCharacteristic(this.hap.Characteristic.On).onGet(() => {
171
- return this.CloseModeSwitch?.On ?? false;
172
- });
173
- this.CloseModeSwitch.Service.getCharacteristic(this.hap.Characteristic.On).onSet(this.CloseModeSwitchSet.bind(this));
174
- }
175
- // Retrieve initial values and updateHomekit
176
- try {
177
- this.debugLog('Retrieve initial values and update Homekit');
178
- this.refreshStatus();
179
- }
180
- catch (e) {
181
- this.errorLog(`failed to retrieve initial values and update Homekit, Error: ${e.message ?? e}`);
182
- }
183
- // regisiter webhook event handler if enabled
184
- try {
185
- this.debugLog('Registering Webhook Event Handler');
186
- this.registerWebhook();
187
- }
188
- catch (e) {
189
- this.errorLog(`failed to registerWebhook, Error: ${e.message ?? e}`);
190
- }
191
- // regisiter platform BLE event handler if enabled
192
- try {
193
- this.debugLog('Registering Platform BLE Event Handler');
194
- this.registerPlatformBLE();
195
- }
196
- catch (e) {
197
- this.errorLog(`failed to registerPlatformBLE, Error: ${e.message ?? e}`);
198
- }
199
- // Start an update interval
200
- interval(this.deviceRefreshRate * 1000)
201
- .pipe(skipWhile(() => this.blindTiltUpdateInProgress))
202
- .subscribe(async () => {
203
- await this.refreshStatus();
204
- });
205
- // update slide progress
206
- interval(this.deviceUpdateRate * 1000)
207
- .pipe(skipWhile(() => !this.blindTiltMoving))
208
- .subscribe(async () => {
209
- if (this.WindowCovering.PositionState === this.hap.Characteristic.PositionState.STOPPED) {
210
- return;
211
- }
212
- this.debugLog(`Refresh Status When Moving, PositionState: ${this.WindowCovering.PositionState}`);
213
- await this.refreshStatus();
214
- });
215
- // Watch for BlindTilt change events
216
- // We put in a debounce of 100ms so we don't make duplicate calls
217
- this.doBlindTiltUpdate
218
- .pipe(tap(() => {
219
- this.blindTiltUpdateInProgress = true;
220
- }), debounceTime(this.devicePushRate * 1000))
221
- .subscribe(async () => {
222
- try {
223
- await this.pushChanges();
224
- }
225
- catch (e) {
226
- await this.apiError(e);
227
- this.errorLog(`failed pushChanges with ${device.connectionType} Connection, Error Message: ${JSON.stringify(e.message)}`);
228
- }
229
- this.blindTiltUpdateInProgress = false;
230
- });
231
- }
232
- /**
233
- * Parse the device status from the SwitchBotBLE API
234
- */
235
- async BLEparseStatus() {
236
- this.debugLog('BLEparseStatus');
237
- this.debugLog(`(direction, slidePosition, battery, version) = BLE:(${this.serviceData.tilt}, ${this.serviceData.tilt}, ${this.serviceData.battery}, ${this.accessory.context.version}), current:(${this.WindowCovering.CurrentHorizontalTiltAngle}, ${this.WindowCovering.CurrentPosition}, ${this.Battery.BatteryLevel}, ${this.accessory.context.version})`);
238
- // CurrentPosition
239
- this.WindowCovering.CurrentPosition = 100 - Number(this.serviceData.tilt);
240
- await this.setMinMax();
241
- this.debugLog(`CurrentPosition ${this.WindowCovering.CurrentPosition}`);
242
- if (this.setNewTarget) {
243
- this.infoLog('Checking Status ...');
244
- }
245
- if (this.setNewTarget && this.serviceData.inMotion) {
246
- this.blindTiltMoving = true;
247
- await this.setMinMax();
248
- if (Number(this.WindowCovering.TargetPosition) > this.WindowCovering.CurrentPosition) {
249
- this.debugLog(`Closing, CurrentPosition: ${this.WindowCovering.CurrentPosition}`);
250
- this.WindowCovering.PositionState = this.hap.Characteristic.PositionState.INCREASING;
251
- this.WindowCovering.Service.getCharacteristic(this.hap.Characteristic.PositionState).updateValue(this.WindowCovering.PositionState);
252
- this.debugLog(`Increasing, PositionState: ${this.WindowCovering.PositionState}`);
253
- }
254
- else if (Number(this.WindowCovering.TargetPosition) < this.WindowCovering.CurrentPosition) {
255
- this.debugLog(`Opening, CurrentPosition: ${this.WindowCovering.CurrentPosition}`);
256
- this.WindowCovering.PositionState = this.hap.Characteristic.PositionState.DECREASING;
257
- this.WindowCovering.Service.getCharacteristic(this.hap.Characteristic.PositionState).updateValue(this.WindowCovering.PositionState);
258
- this.debugLog(`Decreasing, PositionState: ${this.WindowCovering.PositionState}`);
259
- }
260
- else {
261
- this.debugLog(`Standby, CurrentPosition: ${this.WindowCovering.CurrentPosition}`);
262
- this.WindowCovering.PositionState = this.hap.Characteristic.PositionState.STOPPED;
263
- this.WindowCovering.Service.getCharacteristic(this.hap.Characteristic.PositionState).updateValue(this.WindowCovering.PositionState);
264
- this.debugLog('Stopped, PositionState', this.WindowCovering.PositionState);
265
- }
266
- }
267
- else {
268
- this.blindTiltMoving = false;
269
- this.debugLog(`Standby, CurrentPosition: ${this.WindowCovering.CurrentPosition}`);
270
- this.WindowCovering.TargetPosition = this.WindowCovering.CurrentPosition;
271
- this.WindowCovering.PositionState = this.hap.Characteristic.PositionState.STOPPED;
272
- this.debugLog(`Stopped, PositionState: ${this.WindowCovering.PositionState}`);
273
- }
274
- this.debugLog(`CurrentPosition: ${this.WindowCovering.CurrentPosition}, TargetPosition: ${this.WindowCovering.TargetPosition}, PositionState: ${this.WindowCovering.PositionState}`);
275
- // CurrentAmbientLightLevel
276
- if (!this.device.hide_lightsensor && this.LightSensor?.Service) {
277
- const set_minLux = this.device.set_minLux ?? 1;
278
- const set_maxLux = this.device.set_maxLux ?? 6001;
279
- const spaceBetweenLevels = 9;
280
- this.getLightLevel(this.serviceData.lightLevel, set_minLux, set_maxLux, spaceBetweenLevels);
281
- this.debugLog(`LightLevel: ${this.serviceData.lightLevel}, CurrentAmbientLightLevel: ${this.LightSensor.CurrentAmbientLightLevel}`);
282
- }
283
- // Battery Info
284
- if ('battery' in this.serviceData) {
285
- // BatteryLevel
286
- this.Battery.BatteryLevel = this.serviceData.battery;
287
- this.debugLog(`BatteryLevel: ${this.Battery.BatteryLevel}`);
288
- // StatusLowBattery
289
- this.Battery.StatusLowBattery = this.Battery.BatteryLevel < 10
290
- ? this.hap.Characteristic.StatusLowBattery.BATTERY_LEVEL_LOW
291
- : this.hap.Characteristic.StatusLowBattery.BATTERY_LEVEL_NORMAL;
292
- this.debugLog(`StatusLowBattery: ${this.Battery.StatusLowBattery}`);
293
- }
294
- }
295
- ;
296
- /**
297
- * Parse the device status from the SwitchBot OpenAPI
298
- */
299
- async openAPIparseStatus() {
300
- this.debugLog('openAPIparseStatus');
301
- this.debugLog(`(direction, slidePosition, battery, version) = OpenAPI:(${this.deviceStatus.direction}, ${this.deviceStatus.slidePosition}, ${this.deviceStatus.battery}, ${this.deviceStatus.version}), current:(${this.WindowCovering.CurrentHorizontalTiltAngle}, ${this.WindowCovering.CurrentPosition}, ${this.Battery.BatteryLevel}, ${this.accessory.context.version})`);
302
- // CurrentPosition
303
- await this.getCurrentPosttionDirection(this.deviceStatus.direction, this.deviceStatus.slidePosition);
304
- if (!this.device.hide_lightsensor && this.LightSensor?.Service) {
305
- const set_minLux = this.device.set_minLux ?? 1;
306
- const set_maxLux = this.device.set_maxLux ?? 6001;
307
- const lightLevel = this.deviceStatus.lightLevel === 'bright' ? set_maxLux : set_minLux;
308
- this.LightSensor.CurrentAmbientLightLevel = this.getLightLevel(lightLevel, set_minLux, set_maxLux, 2);
309
- this.debugLog(`LightLevel: ${this.deviceStatus.lightLevel}, CurrentAmbientLightLevel: ${this.LightSensor.CurrentAmbientLightLevel}`);
310
- }
311
- // BatteryLevel
312
- this.Battery.BatteryLevel = this.deviceStatus.battery;
313
- this.debugLog(`BatteryLevel: ${this.Battery.BatteryLevel}`);
314
- // StatusLowBattery
315
- this.Battery.StatusLowBattery = this.Battery.BatteryLevel < 10
316
- ? this.hap.Characteristic.StatusLowBattery.BATTERY_LEVEL_LOW
317
- : this.hap.Characteristic.StatusLowBattery.BATTERY_LEVEL_NORMAL;
318
- this.debugLog(`StatusLowBattery: ${this.Battery.StatusLowBattery}`);
319
- // Firmware Version
320
- const version = this.deviceStatus.version.toString();
321
- this.debugLog(`Firmware Version: ${version.replace(/^V|-.*$/g, '')}`);
322
- let deviceVersion;
323
- if (version?.includes('.') === false) {
324
- const replace = version?.replace(/^V|-.*$/g, '');
325
- const match = replace?.match(/./g);
326
- const blindTiltVersion = match?.join('.') ?? '0.0.0';
327
- deviceVersion = blindTiltVersion;
328
- }
329
- else {
330
- deviceVersion = version.replace(/^V|-.*$/g, '') ?? '0.0.0';
331
- }
332
- this.accessory
333
- .getService(this.hap.Service.AccessoryInformation)
334
- .setCharacteristic(this.hap.Characteristic.HardwareRevision, deviceVersion)
335
- .setCharacteristic(this.hap.Characteristic.FirmwareRevision, deviceVersion)
336
- .getCharacteristic(this.hap.Characteristic.FirmwareRevision)
337
- .updateValue(deviceVersion);
338
- this.accessory.context.version = deviceVersion;
339
- this.debugLog(`version: ${this.accessory.context.version}`);
340
- }
341
- async parseStatusWebhook() {
342
- this.debugLog('parseStatusWebhook');
343
- this.debugLog(`(slidePosition, battery, version) = Webhook:(${this.webhookContext.direction}, ${this.webhookContext.slidePosition}, ${this.webhookContext.battery}, ${this.webhookContext.version}, current:(${this.WindowCovering.CurrentHorizontalTiltAngle}, ${this.WindowCovering.CurrentPosition}, ${this.Battery.BatteryLevel}, ${this.accessory.context.version})`);
344
- // CurrentPosition and CurrentHorizontalTiltAngle
345
- await this.getCurrentPosttionDirection(this.webhookContext.direction, this.webhookContext.slidePosition);
346
- // BatteryLevel
347
- this.Battery.BatteryLevel = this.webhookContext.battery;
348
- this.debugLog(`BatteryLevel: ${this.Battery.BatteryLevel}`);
349
- // StatusLowBattery
350
- this.Battery.StatusLowBattery = this.Battery.BatteryLevel < 10
351
- ? this.hap.Characteristic.StatusLowBattery.BATTERY_LEVEL_LOW
352
- : this.hap.Characteristic.StatusLowBattery.BATTERY_LEVEL_NORMAL;
353
- this.debugLog(`StatusLowBattery: ${this.Battery.StatusLowBattery}`);
354
- // Firmware Version
355
- const deviceVersion = this.webhookContext.version.replace(/^V|-.*$/g, '') ?? '0.0.0';
356
- this.accessory
357
- .getService(this.hap.Service.AccessoryInformation)
358
- .setCharacteristic(this.hap.Characteristic.HardwareRevision, deviceVersion)
359
- .setCharacteristic(this.hap.Characteristic.FirmwareRevision, deviceVersion)
360
- .getCharacteristic(this.hap.Characteristic.FirmwareRevision)
361
- .updateValue(deviceVersion);
362
- this.accessory.context.version = deviceVersion;
363
- this.debugSuccessLog(`version: ${this.accessory.context.version}`);
364
- }
365
- /**
366
- * Asks the SwitchBot API for the latest device information
367
- */
368
- async refreshStatus() {
369
- if (this.BLE) {
370
- await this.BLERefreshStatus();
371
- }
372
- else if (this.OpenAPI && this.platform.config.credentials?.token) {
373
- await this.openAPIRefreshStatus();
374
- }
375
- else {
376
- await this.offlineOff();
377
- this.debugWarnLog(`Connection Type: ${this.device.connectionType}, refreshStatus will not happen.`);
378
- }
379
- }
380
- async BLERefreshStatus() {
381
- this.debugLog('BLERefreshStatus');
382
- const switchBotBLE = await this.switchbotBLE();
383
- if (switchBotBLE === undefined) {
384
- await this.BLERefreshConnection(switchBotBLE);
385
- }
386
- else {
387
- // Start to monitor advertisement packets
388
- (async () => {
389
- // Start to monitor advertisement packets
390
- const serviceData = await this.monitorAdvertisementPackets(switchBotBLE);
391
- // Update HomeKit
392
- if (serviceData.model === SwitchBotBLEModel.BlindTilt && serviceData.modelName === SwitchBotBLEModelName.BlindTilt) {
393
- this.serviceData = serviceData;
394
- if (serviceData !== undefined || serviceData !== null) {
395
- await this.BLEparseStatus();
396
- await this.updateHomeKitCharacteristics();
397
- }
398
- else {
399
- this.errorLog(`serviceData is either undefined or null, serviceData: ${JSON.stringify(serviceData)}`);
400
- await this.BLERefreshConnection(switchBotBLE);
401
- }
402
- }
403
- else {
404
- this.errorLog(`failed to get serviceData, serviceData: ${JSON.stringify(serviceData)}`);
405
- await this.BLERefreshConnection(switchBotBLE);
406
- }
407
- })();
408
- }
409
- }
410
- async registerPlatformBLE() {
411
- this.debugLog('registerPlatformBLE');
412
- if (this.config.options?.BLE && !this.device.disablePlatformBLE) {
413
- this.debugLog('is listening to Platform BLE.');
414
- try {
415
- const formattedDeviceId = formatDeviceIdAsMac(this.device.deviceId);
416
- this.device.bleMac = formattedDeviceId;
417
- this.debugLog(`bleMac: ${this.device.bleMac}`);
418
- this.platform.bleEventHandler[this.device.bleMac] = async (context) => {
419
- try {
420
- this.serviceData = context;
421
- if (context !== undefined || context !== null) {
422
- this.debugLog(`received BLE: ${JSON.stringify(context)}`);
423
- await this.BLEparseStatus();
424
- await this.updateHomeKitCharacteristics();
425
- }
426
- else {
427
- this.errorLog(`context is either undefined or null, context: ${JSON.stringify(context)}`);
428
- await this.BLERefreshConnection(context);
429
- }
430
- }
431
- catch (e) {
432
- this.errorLog(`failed to handle BLE. Received: ${JSON.stringify(context)} Error: ${e.message ?? e}`);
433
- }
434
- };
435
- }
436
- catch (error) {
437
- this.errorLog(`failed to format device ID as MAC, Error: ${error}`);
438
- }
439
- }
440
- else {
441
- this.debugLog('is not listening to Platform BLE');
442
- }
443
- }
444
- async openAPIRefreshStatus() {
445
- this.debugLog('openAPIRefreshStatus');
446
- try {
447
- const deviceStatus = await this.deviceRefreshStatus();
448
- this.debugLog(`statusCode: ${deviceStatus.statusCode}, deviceStatus: ${JSON.stringify(deviceStatus)}`);
449
- if (await this.successfulStatusCodes(deviceStatus)) {
450
- this.debugSuccessLog(`statusCode: ${deviceStatus.statusCode}, deviceStatus: ${JSON.stringify(deviceStatus)}`);
451
- this.deviceStatus = deviceStatus.body;
452
- await this.openAPIparseStatus();
453
- await this.updateHomeKitCharacteristics();
454
- }
455
- else {
456
- this.debugWarnLog(`statusCode: ${deviceStatus.statusCode}, deviceStatus: ${JSON.stringify(deviceStatus)}`);
457
- }
458
- }
459
- catch (e) {
460
- await this.apiError(e);
461
- this.errorLog(`failed openAPIRefreshStatus with ${this.device.connectionType} Connection, Error Message: ${JSON.stringify(e.message)}`);
462
- }
463
- }
464
- async registerWebhook() {
465
- if (this.device.webhook) {
466
- this.debugLog('is listening webhook.');
467
- this.platform.webhookEventHandler[this.device.deviceId] = async (context) => {
468
- try {
469
- this.webhookContext = context;
470
- if (context !== undefined || context !== null) {
471
- this.debugLog(`received Webhook: ${JSON.stringify(context)}`);
472
- await this.parseStatusWebhook();
473
- await this.updateHomeKitCharacteristics();
474
- }
475
- else {
476
- this.errorLog(`context is either undefined or null, context: ${JSON.stringify(context)}`);
477
- }
478
- }
479
- catch (e) {
480
- this.errorLog(`failed to handle webhook. Received: ${JSON.stringify(context)} Error: ${e.message ?? e}`);
481
- }
482
- };
483
- }
484
- else {
485
- this.debugLog('is not listening webhook.');
486
- }
487
- }
488
- async pushChanges() {
489
- if (this.BLE) {
490
- await this.BLEpushChanges();
491
- }
492
- else if (this.OpenAPI && this.platform.config.credentials?.token) {
493
- await this.openAPIpushChanges();
494
- }
495
- else {
496
- await this.offlineOff();
497
- this.debugWarnLog(`Connection Type: ${this.device.connectionType}, pushChanges will not happen.`);
498
- }
499
- // Refresh the status from the API
500
- interval(15000)
501
- .pipe(skipWhile(() => this.blindTiltUpdateInProgress))
502
- .pipe(take(1))
503
- .subscribe(async () => {
504
- await this.refreshStatus();
505
- });
506
- }
507
- async BLEpushChanges() {
508
- this.debugLog('BLEpushChanges');
509
- if (this.WindowCovering.TargetPosition !== this.WindowCovering.CurrentPosition) {
510
- this.debugLog(`BLEpushChanges On: ${this.WindowCovering.TargetPosition} OnCached: ${this.WindowCovering.CurrentPosition}`);
511
- const switchBotBLE = await this.platform.connectBLE(this.accessory, this.device);
512
- try {
513
- const formattedDeviceId = formatDeviceIdAsMac(this.device.deviceId);
514
- this.device.bleMac = formattedDeviceId;
515
- this.debugLog(`bleMac: ${this.device.bleMac}`);
516
- const { setPositionMode, Mode } = await this.setPerformance();
517
- this.debugLog(`Mode: ${Mode}, setPositionMode: ${setPositionMode}`);
518
- if (switchBotBLE !== false) {
519
- switchBotBLE
520
- .discover({ model: this.device.bleModel, quick: true, id: this.device.bleMac })
521
- .then(async (device_list) => {
522
- const deviceList = device_list;
523
- return await this.retryBLE({
524
- max: this.maxRetryBLE(),
525
- fn: async () => {
526
- if (deviceList && Array.isArray(deviceList) && deviceList.length > 0) {
527
- return await deviceList[0].runToPos(100 - Number(this.WindowCovering.TargetPosition), setPositionMode);
528
- }
529
- else {
530
- throw new Error('No device found');
531
- }
532
- },
533
- });
534
- })
535
- .then(async () => {
536
- this.successLog(`TargetPostion: ${this.WindowCovering.TargetPosition} sent over SwitchBot BLE, sent successfully`);
537
- await this.updateHomeKitCharacteristics();
538
- })
539
- .catch(async (e) => {
540
- await this.apiError(e);
541
- this.errorLog(`failed BLEpushChanges with ${this.device.connectionType} Connection, Error Message: ${JSON.stringify(e.message)}`);
542
- await this.BLEPushConnection();
543
- });
544
- }
545
- else {
546
- this.errorLog(`wasn't able to establish BLE Connection, node-switchbot: ${JSON.stringify(switchBotBLE)}`);
547
- await this.BLEPushConnection();
548
- }
549
- }
550
- catch (error) {
551
- this.errorLog(`failed to format device ID as MAC, Error: ${error}`);
552
- }
553
- }
554
- else {
555
- this.debugLog(`No changes (BLEpushChanges), TargetPosition: ${this.WindowCovering.TargetPosition}, CurrentPosition: ${this.WindowCovering.CurrentPosition}`);
556
- }
557
- }
558
- async openAPIpushChanges() {
559
- this.debugLog('openAPIpushChanges');
560
- const hasDifferentAndRelevantHorizontalTiltAngle = this.mappingMode === BlindTiltMappingMode.UseTiltForDirection
561
- && this.WindowCovering.TargetHorizontalTiltAngle !== this.WindowCovering.CurrentHorizontalTiltAngle;
562
- if (this.WindowCovering.TargetPosition !== this.WindowCovering.CurrentPosition
563
- || hasDifferentAndRelevantHorizontalTiltAngle || this.device.disableCaching) {
564
- const [direction, position] = this.mapHomekitValuesToDeviceValues(Number(this.WindowCovering.TargetPosition), Number(this.WindowCovering.TargetHorizontalTiltAngle));
565
- const { Mode, setPositionMode } = await this.setPerformance();
566
- this.debugLog(`Pushing ${this.WindowCovering.TargetPosition} (device = ${direction};${position})`);
567
- this.debugLog(`Mode: ${Mode}, setPositionMode: ${setPositionMode}`);
568
- let bodyChange;
569
- if (position === 100) {
570
- bodyChange = {
571
- command: 'fullyOpen',
572
- parameter: 'default',
573
- commandType: 'command',
574
- };
575
- }
576
- else if (position === 0) {
577
- bodyChange = {
578
- command: direction === 'up' ? 'closeUp' : 'closeDown',
579
- parameter: 'default',
580
- commandType: 'command',
581
- };
582
- }
583
- else {
584
- bodyChange = {
585
- command: 'setPosition',
586
- parameter: `${direction};${position}`,
587
- commandType: 'command',
588
- };
589
- }
590
- this.debugLog(`SwitchBot OpenAPI bodyChange: ${JSON.stringify(bodyChange)}`);
591
- try {
592
- const deviceStatus = await this.pushChangeRequest(bodyChange);
593
- this.debugLog(`statusCode: ${deviceStatus.statusCode}, deviceStatus: ${JSON.stringify(deviceStatus)}`);
594
- if (await this.successfulStatusCodes(deviceStatus)) {
595
- this.debugSuccessLog(`statusCode: ${deviceStatus.statusCode}, deviceStatus: ${JSON.stringify(deviceStatus)}`);
596
- await this.updateHomeKitCharacteristics();
597
- }
598
- else {
599
- await this.statusCode(deviceStatus.statusCode);
600
- }
601
- }
602
- catch (e) {
603
- await this.apiError(e);
604
- this.errorLog(`failed openAPIpushChanges with ${this.device.connectionType} Connection, Error Message: ${JSON.stringify(e.message)}`);
605
- }
606
- }
607
- else {
608
- this.debugLog(`No changes (openAPIpushChanges), TargetPosition: ${this.WindowCovering.TargetPosition}, CurrentPosition: ${this.WindowCovering.CurrentPosition}`);
609
- this.debugLog(`No changes (openAPIpushChanges), TargetHorizontalTiltAngle: ${this.WindowCovering.TargetHorizontalTiltAngle}, CurrentHorizontalTiltAngle: ${this.WindowCovering.CurrentHorizontalTiltAngle}`);
610
- }
611
- }
612
- /**
613
- * Handle requests to set the value of the "Target Horizontal Tilt" characteristic
614
- */
615
- async TargetHorizontalTiltAngleSet(value) {
616
- if (this.WindowCovering.TargetHorizontalTiltAngle !== this.accessory.context.TargetHorizontalTiltAngle) {
617
- this.debugLog(`Set TargetHorizontalTiltAngle: ${value}`);
618
- }
619
- else {
620
- this.debugLog(`No changes, TargetHorizontalTiltAngle: ${value}`);
621
- }
622
- // value = value < 0 ? -90 : 90;
623
- this.WindowCovering.TargetHorizontalTiltAngle = value;
624
- await this.mqtt('TargetHorizontalTiltAngle', this.WindowCovering.TargetHorizontalTiltAngle);
625
- await this.startUpdatingBlindTiltIfNeeded();
626
- }
627
- /**
628
- * Handle requests to set the value of the "Target Position" characteristic
629
- */
630
- async TargetPositionSet(value) {
631
- if (this.WindowCovering.TargetPosition !== this.accessory.context.TargetPosition) {
632
- this.debugLog(`Set TargetPosition: ${value}`);
633
- }
634
- else {
635
- this.debugLog(`No changes, TargetPosition: ${value}`);
636
- }
637
- this.WindowCovering.TargetPosition = value;
638
- await this.mqtt('TargetPosition', this.WindowCovering.TargetPosition);
639
- await this.startUpdatingBlindTiltIfNeeded();
640
- }
641
- async startUpdatingBlindTiltIfNeeded() {
642
- await this.setMinMax();
643
- this.debugLog('setMinMax');
644
- if (this.WindowCovering.TargetPosition > this.WindowCovering.CurrentPosition
645
- || this.WindowCovering.TargetHorizontalTiltAngle !== this.WindowCovering.CurrentHorizontalTiltAngle) {
646
- this.WindowCovering.PositionState = this.hap.Characteristic.PositionState.INCREASING;
647
- this.setNewTarget = true;
648
- this.debugLog(`value: ${this.WindowCovering.CurrentPosition}, CurrentPosition: ${this.WindowCovering.CurrentPosition}`);
649
- }
650
- else if (this.WindowCovering.TargetPosition < this.WindowCovering.CurrentPosition) {
651
- this.WindowCovering.PositionState = this.hap.Characteristic.PositionState.DECREASING;
652
- this.setNewTarget = true;
653
- this.debugLog(`value: ${this.WindowCovering.CurrentPosition}, CurrentPosition: ${this.WindowCovering.CurrentPosition}`);
654
- }
655
- else {
656
- this.WindowCovering.PositionState = this.hap.Characteristic.PositionState.STOPPED;
657
- this.setNewTarget = false;
658
- this.debugLog(`value: ${this.WindowCovering.CurrentPosition}, CurrentPosition: ${this.WindowCovering.CurrentPosition}`);
659
- }
660
- this.WindowCovering.Service.setCharacteristic(this.hap.Characteristic.PositionState, this.WindowCovering.PositionState);
661
- this.WindowCovering.Service.getCharacteristic(this.hap.Characteristic.PositionState).updateValue(this.WindowCovering.PositionState);
662
- /**
663
- * If Blind Tilt movement time is short, the moving flag from backend is always false.
664
- * The minimum time depends on the network control latency.
665
- */
666
- clearTimeout(this.setNewTargetTimer);
667
- this.debugLog(`deviceUpdateRate: ${this.deviceUpdateRate}`);
668
- if (this.setNewTarget) {
669
- this.setNewTargetTimer = setTimeout(async () => {
670
- this.debugLog(`setNewTarget ${this.setNewTarget} timeout`);
671
- this.setNewTarget = false;
672
- }, this.deviceUpdateRate * 1000);
673
- }
674
- this.doBlindTiltUpdate.next();
675
- }
676
- /**
677
- * Handle requests to set the value of the "Target Position" characteristic
678
- */
679
- async OpenModeSwitchSet(value) {
680
- if (this.OpenModeSwitch && this.device.silentModeSwitch) {
681
- this.debugLog(`Silent Open Mode: ${value}`);
682
- this.OpenModeSwitch.On = value;
683
- this.accessory.context.OpenModeSwitch.On = value;
684
- this.doBlindTiltUpdate.next();
685
- }
686
- }
687
- /**
688
- * Handle requests to set the value of the "Target Position" characteristic
689
- */
690
- async CloseModeSwitchSet(value) {
691
- if (this.CloseModeSwitch && this.device.silentModeSwitch) {
692
- this.debugLog(`Silent Close Mode: ${value}`);
693
- this.CloseModeSwitch.On = value;
694
- this.accessory.context.CloseModeSwitch.On = value;
695
- this.doBlindTiltUpdate.next();
696
- }
697
- }
698
- async updateHomeKitCharacteristics() {
699
- await this.setMinMax();
700
- // CurrentHorizontalTiltAngle
701
- if (this.mappingMode === BlindTiltMappingMode.UseTiltForDirection) {
702
- await this.updateCharacteristic(this.WindowCovering.Service, this.hap.Characteristic.CurrentHorizontalTiltAngle, this.WindowCovering.CurrentHorizontalTiltAngle, 'CurrentHorizontalTiltAngle');
703
- }
704
- // CurrentPosition
705
- await this.updateCharacteristic(this.WindowCovering.Service, this.hap.Characteristic.CurrentPosition, this.WindowCovering.CurrentPosition, 'CurrentPosition');
706
- // PositionState
707
- await this.updateCharacteristic(this.WindowCovering.Service, this.hap.Characteristic.PositionState, this.WindowCovering.PositionState, 'PositionState');
708
- // TargetPosition
709
- await this.updateCharacteristic(this.WindowCovering.Service, this.hap.Characteristic.TargetPosition, this.WindowCovering.TargetPosition, 'TargetPosition');
710
- // CurrentAmbientLightLevel
711
- if (!this.device.hide_lightsensor && this.LightSensor?.Service) {
712
- const history = { time: Math.round(new Date().valueOf() / 1000), lux: this.LightSensor.CurrentAmbientLightLevel };
713
- await this.updateCharacteristic(this.LightSensor?.Service, this.hap.Characteristic.CurrentAmbientLightLevel, this.LightSensor?.CurrentAmbientLightLevel, 'CurrentAmbientLightLevel', history);
714
- }
715
- // BatteryLevel
716
- await this.updateCharacteristic(this.Battery.Service, this.hap.Characteristic.BatteryLevel, this.Battery.BatteryLevel, 'BatteryLevel');
717
- // StatusLowBattery
718
- await this.updateCharacteristic(this.Battery.Service, this.hap.Characteristic.StatusLowBattery, this.Battery.StatusLowBattery, 'StatusLowBattery');
719
- // ChargingState
720
- await this.updateCharacteristic(this.Battery.Service, this.hap.Characteristic.ChargingState, this.Battery.ChargingState, 'ChargingState');
721
- }
722
- async BLEPushConnection() {
723
- if (this.platform.config.credentials?.token && this.device.connectionType === 'BLE/OpenAPI') {
724
- this.warnLog('Using OpenAPI Connection to Push Changes');
725
- await this.openAPIpushChanges();
726
- }
727
- }
728
- async BLERefreshConnection(switchbot) {
729
- this.errorLog(`wasn't able to establish BLE Connection, node-switchbot: ${switchbot}`);
730
- if (this.platform.config.credentials?.token && this.device.connectionType === 'BLE/OpenAPI') {
731
- this.warnLog('Using OpenAPI Connection to Refresh Status');
732
- await this.openAPIRefreshStatus();
733
- }
734
- }
735
- async setPerformance() {
736
- let setPositionMode;
737
- let Mode;
738
- if (Number(this.WindowCovering.TargetPosition) > 50) {
739
- if (this.device.setOpenMode === '1' || this.OpenModeSwitch?.On) {
740
- setPositionMode = 1;
741
- Mode = 'Silent Mode';
742
- }
743
- else if (this.device.setOpenMode === '0' || !this.OpenModeSwitch?.On) {
744
- setPositionMode = 0;
745
- Mode = 'Performance Mode';
746
- }
747
- else {
748
- setPositionMode = 0;
749
- Mode = 'Default Mode';
750
- }
751
- }
752
- else {
753
- if (this.device.setCloseMode === '1' || this.CloseModeSwitch?.On) {
754
- setPositionMode = 1;
755
- Mode = 'Silent Mode';
756
- }
757
- else if (this.device.setOpenMode === '0' || !this.CloseModeSwitch?.On) {
758
- setPositionMode = 0;
759
- Mode = 'Performance Mode';
760
- }
761
- else {
762
- setPositionMode = 0;
763
- Mode = 'Default Mode';
764
- }
765
- }
766
- return { setPositionMode, Mode };
767
- }
768
- async setMinMax() {
769
- if (this.device.set_min) {
770
- if (Number(this.WindowCovering.CurrentPosition) <= this.device.set_min) {
771
- this.WindowCovering.CurrentPosition = 0;
772
- }
773
- }
774
- if (this.device.set_max) {
775
- if (Number(this.WindowCovering.CurrentPosition) >= this.device.set_max) {
776
- this.WindowCovering.CurrentPosition = 100;
777
- }
778
- }
779
- if (this.device.history) {
780
- const motion = this.accessory.getService(this.hap.Service.MotionSensor);
781
- const state = Number(this.WindowCovering.CurrentPosition) > 0 ? 1 : 0;
782
- motion?.updateCharacteristic(this.hap.Characteristic.MotionDetected, state);
783
- }
784
- if (this.mappingMode === BlindTiltMappingMode.UseTiltForDirection) {
785
- this.WindowCovering.CurrentHorizontalTiltAngle = Number(this.WindowCovering.CurrentHorizontalTiltAngle) < 0 ? -90 : 90;
786
- }
787
- }
788
- async offlineOff() {
789
- if (this.device.offline) {
790
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.CurrentPosition, 100);
791
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.PositionState, this.hap.Characteristic.PositionState.STOPPED);
792
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.TargetPosition, 100);
793
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.CurrentHorizontalTiltAngle, 90);
794
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.TargetHorizontalTiltAngle, 90);
795
- }
796
- }
797
- async apiError(e) {
798
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.CurrentPosition, e);
799
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.PositionState, e);
800
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.TargetPosition, e);
801
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.CurrentHorizontalTiltAngle, e);
802
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.TargetHorizontalTiltAngle, e);
803
- this.Battery.Service.updateCharacteristic(this.hap.Characteristic.BatteryLevel, e);
804
- this.Battery.Service.updateCharacteristic(this.hap.Characteristic.StatusLowBattery, e);
805
- this.Battery.Service.updateCharacteristic(this.hap.Characteristic.ChargingState, e);
806
- if (!this.device.hide_lightsensor && this.LightSensor?.Service) {
807
- this.LightSensor.Service.updateCharacteristic(this.hap.Characteristic.CurrentAmbientLightLevel, e);
808
- this.LightSensor.Service.updateCharacteristic(this.hap.Characteristic.StatusActive, e);
809
- }
810
- }
811
- async getCurrentPosttionDirection(direction, slidePosition) {
812
- const [homekitPosition, homekitTiltAngle] = this.mapDeviceValuesToHomekitValues(Number(slidePosition), String(direction));
813
- this.debugLog(`Slide Position: ${slidePosition}`);
814
- this.debugLog(`Homekit Position: ${homekitPosition}`);
815
- this.WindowCovering.CurrentPosition = homekitPosition;
816
- await this.setMinMax();
817
- this.debugLog(`CurrentPosition: ${this.WindowCovering.CurrentPosition}`);
818
- if (homekitTiltAngle) {
819
- this.WindowCovering.CurrentHorizontalTiltAngle = homekitTiltAngle;
820
- this.debugLog(`CurrentHorizontalTiltAngle: ${this.WindowCovering.CurrentHorizontalTiltAngle}`);
821
- }
822
- if (this.setNewTarget) {
823
- this.blindTiltMoving = true;
824
- this.infoLog('Checking Status ...');
825
- await this.setMinMax();
826
- if (this.WindowCovering.TargetPosition > this.WindowCovering.CurrentPosition
827
- || (homekitTiltAngle && this.WindowCovering.TargetHorizontalTiltAngle !== this.WindowCovering.CurrentHorizontalTiltAngle)) {
828
- this.debugLog(`Closing, CurrentPosition: ${this.WindowCovering.CurrentPosition}`);
829
- this.WindowCovering.PositionState = this.hap.Characteristic.PositionState.INCREASING;
830
- this.WindowCovering.Service.getCharacteristic(this.hap.Characteristic.PositionState).updateValue(this.WindowCovering.PositionState);
831
- this.debugLog(`Increasing, PositionState: ${this.WindowCovering.PositionState}`);
832
- }
833
- else if (this.WindowCovering.TargetPosition < this.WindowCovering.CurrentPosition) {
834
- this.debugLog(`Opening, CurrentPosition: ${this.WindowCovering.CurrentPosition}`);
835
- this.WindowCovering.PositionState = this.hap.Characteristic.PositionState.DECREASING;
836
- this.WindowCovering.Service.getCharacteristic(this.hap.Characteristic.PositionState).updateValue(this.WindowCovering.PositionState);
837
- this.debugLog(`Decreasing, PositionState: ${this.WindowCovering.PositionState}`);
838
- }
839
- else {
840
- this.debugLog(`Standby because reached position, CurrentPosition: ${this.WindowCovering.CurrentPosition}`);
841
- this.WindowCovering.PositionState = this.hap.Characteristic.PositionState.STOPPED;
842
- this.WindowCovering.Service.getCharacteristic(this.hap.Characteristic.PositionState).updateValue(this.WindowCovering.PositionState);
843
- this.debugLog(`Stopped, PositionState: ${this.WindowCovering.PositionState}`);
844
- }
845
- }
846
- else {
847
- this.blindTiltMoving = false;
848
- this.debugLog(`Standby because device not moving, CurrentPosition: ${this.WindowCovering.CurrentPosition}`);
849
- this.WindowCovering.TargetPosition = this.WindowCovering.CurrentPosition;
850
- if (homekitTiltAngle) {
851
- this.WindowCovering.TargetHorizontalTiltAngle = this.WindowCovering.CurrentHorizontalTiltAngle;
852
- }
853
- this.WindowCovering.PositionState = this.hap.Characteristic.PositionState.STOPPED;
854
- this.debugLog(`Stopped, PositionState: ${this.WindowCovering.PositionState}`);
855
- }
856
- this.debugLog(`CurrentPosition: ${this.WindowCovering.CurrentPosition}, TargetPosition: ${this.WindowCovering.TargetPosition}, PositionState: ${this.WindowCovering.PositionState}`);
857
- }
858
- /**
859
- * Maps device values to homekit values
860
- *
861
- * @param devicePosition the position as reported by the devide
862
- * @param deviceDirection the direction as reported by the device
863
- * @returns [homekit position, homekit tiltAngle]
864
- */
865
- mapDeviceValuesToHomekitValues(devicePosition, deviceDirection) {
866
- // device position 0 => closed down
867
- // device position 50 => open
868
- // device position 100 => closed up
869
- // homekit position 0 => closed
870
- // homekit position 100 => open
871
- const direction = deviceDirection === 'up' ? 'up' : 'down';
872
- this.debugLog(`Mapping device values to homekit values, devicePostion: ${devicePosition}, deviceDirection: ${direction}`);
873
- switch (this.mappingMode) {
874
- case BlindTiltMappingMode.OnlyUp:
875
- // we only close upwards, so we see anything that is tilted downwards(<50) as open
876
- if (devicePosition < 50) {
877
- return [100, undefined]; // fully open in homekit
878
- }
879
- else {
880
- // we range from 50->100, with 100 being closed, so map to homekit by scaling to 0..100 and then reversing
881
- return [100 - (devicePosition - 50) * 2, undefined];
882
- }
883
- case BlindTiltMappingMode.OnlyDown:
884
- // we only close downwards, so we see anything that is tilted upwards(>50) as upwards
885
- if (devicePosition > 50) {
886
- return [100, undefined]; // fully open in homekit
887
- }
888
- else {
889
- // we range from 0..50 so scale to homekit and then reverse
890
- return [devicePosition * 2, undefined];
891
- }
892
- case BlindTiltMappingMode.DownAndUp:
893
- // we close both ways with closed downwards being 0 in homekit and closed upwards in homekit being 100. Open is 50 in homekit
894
- return [devicePosition, undefined];
895
- case BlindTiltMappingMode.UpAndDown:
896
- // we close both ways with closed downwards being 1000 in homekit and closed upwards in homekit being 0. Open is 50 in homekit.,
897
- // so we reverse the value
898
- return [100 - devicePosition, undefined];
899
- case BlindTiltMappingMode.UseTiltForDirection:
900
- // we use tilt for direction, so being closed downwards is 0 in homekit with -90 tilt, while being closed upwards is 0 with 90 tilt.
901
- if (devicePosition <= 50) {
902
- // downwards tilted, so we range from 0..50, with 0 being closed and 50 being open, so scale.
903
- return [devicePosition * 2, -90];
904
- }
905
- else {
906
- // upwards tilted, so we range from 50..100, with 50 being open and 100 being closed, so scale and rever
907
- return [100 - (devicePosition - 50) * 2, 90];
908
- }
909
- }
910
- }
911
- /**
912
- * Maps homekit values to device values
913
- *
914
- * @param homekitPosition the position as reported by homekit
915
- * @param homekitTiltAngle the tilt angle as reported by homekit
916
- * @returns [device position, device direction]
917
- */
918
- mapHomekitValuesToDeviceValues(homekitPosition, homekitTiltAngle) {
919
- // homekit position 0 => closed
920
- // homekit position 100 => open
921
- // device position [up, 0] = closed upwards
922
- // device position [down, 0] = closed downwards
923
- // device position [up, 100] = open
924
- // device position [down, 100] = open
925
- switch (this.mappingMode) {
926
- case BlindTiltMappingMode.OnlyUp:
927
- // invert
928
- return ['up', homekitPosition];
929
- case BlindTiltMappingMode.OnlyDown:
930
- // invert
931
- return ['down', homekitPosition];
932
- case BlindTiltMappingMode.DownAndUp:
933
- // homekit 0 = downwards closed,
934
- // homekit 50 = open,
935
- // homekit 100 = upwards closed
936
- if (homekitPosition <= 50) {
937
- // homekit 0..50 -> device 100..0 so scale and invert
938
- return ['down', 100 - homekitPosition * 2];
939
- }
940
- else {
941
- // homekit 50..100 -> device 0..100, so rebase, scale and invert
942
- return ['up', (homekitPosition - 50) * 2];
943
- }
944
- case BlindTiltMappingMode.UpAndDown:
945
- // homekit 0 = upwards closed,
946
- // homekit 50 = open,
947
- // homekit 100 = upwards closed
948
- if (homekitPosition <= 50) {
949
- // homekit 0..50 -> device 0..100 so scale and invert
950
- return ['up', homekitPosition * 2];
951
- }
952
- else {
953
- // homekit 50..100 -> device 100...0 so scale
954
- return ['down', 100 - homekitPosition * 2];
955
- }
956
- case BlindTiltMappingMode.UseTiltForDirection:
957
- // tilt -90, homekit 0 = closed downwards
958
- // tilt -90, homekit 100 = open
959
- // tilt 90, homekit 0 = closed upwards
960
- // tilt 90, homekit 100 = open
961
- if (homekitTiltAngle <= 0) {
962
- // downwards
963
- // homekit 0..100 -> device 0..100, so invert
964
- return ['down', homekitPosition];
965
- }
966
- else {
967
- // upwards
968
- // homekit 0..100 -> device 0..100, so invert
969
- return ['up', homekitPosition];
970
- }
971
- }
972
- }
973
- }
974
- //# sourceMappingURL=blindtilt.js.map