@switchbot/homebridge-switchbot 5.0.0-beta.8 → 5.0.0-beta.80

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 (447) 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 +83 -14807
  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 +425 -243
  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 +276 -35
  25. package/dist/homebridge-ui/server.js.map +1 -1
  26. package/dist/index.d.ts.map +1 -1
  27. package/dist/index.js +4 -11
  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 +194 -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/eslint.config.js +2 -8
  53. package/package.json +21 -28
  54. package/scripts/e2e/README.md +25 -0
  55. package/scripts/e2e/curtain-e2e.sh +70 -0
  56. package/scripts/e2e/fan-e2e.sh +75 -0
  57. package/scripts/e2e/light-advanced-e2e.sh +97 -0
  58. package/scripts/e2e/light-e2e.sh +75 -0
  59. package/scripts/e2e/list-accessories.sh +19 -0
  60. package/scripts/e2e/lock-e2e.sh +65 -0
  61. package/scripts/generate-matter-maps.js +60 -0
  62. package/scripts/run-e2e-local.sh +14 -0
  63. package/src/deviceFactory.ts +122 -0
  64. package/src/devices/deviceBase.ts +141 -0
  65. package/src/devices/genericDevice.ts +965 -0
  66. package/src/homebridge-ui/public/index.html +425 -243
  67. package/src/homebridge-ui/server.ts +329 -40
  68. package/src/index.ts +4 -12
  69. package/src/platform.ts +395 -0
  70. package/src/settings.ts +12 -277
  71. package/src/switchbotClient.ts +203 -0
  72. package/src/utils.ts +45 -713
  73. package/test/accessory-restore.spec.ts +73 -0
  74. package/test/device-mapping.spec.ts +37 -0
  75. package/test/deviceFactory.spec.ts +18 -0
  76. package/test/e2e/run-e2e.spec.ts +50 -0
  77. package/test/fan-swing.spec.ts +29 -0
  78. package/test/helpers/matter-harness.ts +53 -0
  79. package/test/lock-users.spec.ts +44 -0
  80. package/test/matter-childbridge.spec.ts +55 -0
  81. package/test/matter-descriptors.spec.ts +97 -0
  82. package/test/matter-device-state.spec.ts +101 -0
  83. package/test/matter-integration.spec.ts +70 -0
  84. package/test/platform.integration.spec.ts +55 -0
  85. package/test/switchbot-client-debounce.spec.ts +131 -0
  86. package/test/switchbot-client-openapi.spec.ts +56 -0
  87. package/test/switchbotClient.spec.ts +10 -0
  88. package/test/utils.spec.ts +20 -0
  89. package/vitest.config.ts +7 -0
  90. package/coverage/base.css +0 -224
  91. package/coverage/block-navigation.js +0 -87
  92. package/coverage/clover.xml +0 -15847
  93. package/coverage/coverage-final.json +0 -42
  94. package/coverage/docs/assets/dmt/dmt-component-data.js.html +0 -85
  95. package/coverage/docs/assets/dmt/dmt-components.js.html +0 -286
  96. package/coverage/docs/assets/dmt/index.html +0 -131
  97. package/coverage/docs/assets/hierarchy.js.html +0 -85
  98. package/coverage/docs/assets/icons.js.html +0 -136
  99. package/coverage/docs/assets/index.html +0 -146
  100. package/coverage/docs/assets/main.js.html +0 -265
  101. package/coverage/favicon.png +0 -0
  102. package/coverage/index.html +0 -191
  103. package/coverage/prettify.css +0 -1
  104. package/coverage/prettify.js +0 -2
  105. package/coverage/sort-arrow-sprite.png +0 -0
  106. package/coverage/sorter.js +0 -196
  107. package/coverage/src/device/blindtilt.ts.html +0 -3238
  108. package/coverage/src/device/bot.ts.html +0 -2803
  109. package/coverage/src/device/ceilinglight.ts.html +0 -2338
  110. package/coverage/src/device/colorbulb.ts.html +0 -2824
  111. package/coverage/src/device/contact.ts.html +0 -1465
  112. package/coverage/src/device/curtain.ts.html +0 -2869
  113. package/coverage/src/device/device.ts.html +0 -2500
  114. package/coverage/src/device/fan.ts.html +0 -2242
  115. package/coverage/src/device/hub.ts.html +0 -1408
  116. package/coverage/src/device/humidifier.ts.html +0 -2116
  117. package/coverage/src/device/index.html +0 -416
  118. package/coverage/src/device/iosensor.ts.html +0 -1375
  119. package/coverage/src/device/lightstrip.ts.html +0 -2617
  120. package/coverage/src/device/lock.ts.html +0 -1963
  121. package/coverage/src/device/meter.ts.html +0 -1372
  122. package/coverage/src/device/meterplus.ts.html +0 -1384
  123. package/coverage/src/device/meterpro.ts.html +0 -1618
  124. package/coverage/src/device/motion.ts.html +0 -1264
  125. package/coverage/src/device/plug.ts.html +0 -1372
  126. package/coverage/src/device/relayswitch.ts.html +0 -2284
  127. package/coverage/src/device/robotvacuumcleaner.ts.html +0 -1810
  128. package/coverage/src/device/waterdetector.ts.html +0 -1294
  129. package/coverage/src/homebridge-ui/index.html +0 -116
  130. package/coverage/src/homebridge-ui/server.ts.html +0 -229
  131. package/coverage/src/index.html +0 -161
  132. package/coverage/src/index.ts.html +0 -124
  133. package/coverage/src/irdevice/airconditioner.ts.html +0 -1687
  134. package/coverage/src/irdevice/airpurifier.ts.html +0 -844
  135. package/coverage/src/irdevice/camera.ts.html +0 -475
  136. package/coverage/src/irdevice/fan.ts.html +0 -766
  137. package/coverage/src/irdevice/index.html +0 -251
  138. package/coverage/src/irdevice/irdevice.ts.html +0 -1117
  139. package/coverage/src/irdevice/light.ts.html +0 -826
  140. package/coverage/src/irdevice/other.ts.html +0 -2458
  141. package/coverage/src/irdevice/tv.ts.html +0 -1222
  142. package/coverage/src/irdevice/vacuumcleaner.ts.html +0 -466
  143. package/coverage/src/irdevice/waterheater.ts.html +0 -469
  144. package/coverage/src/platform.ts.html +0 -8776
  145. package/coverage/src/settings.ts.html +0 -934
  146. package/coverage/src/utils.ts.html +0 -2092
  147. package/dist/devices-hap/airpurifier.d.ts +0 -54
  148. package/dist/devices-hap/airpurifier.d.ts.map +0 -1
  149. package/dist/devices-hap/airpurifier.js +0 -527
  150. package/dist/devices-hap/airpurifier.js.map +0 -1
  151. package/dist/devices-hap/blindtilt.d.ts +0 -90
  152. package/dist/devices-hap/blindtilt.d.ts.map +0 -1
  153. package/dist/devices-hap/blindtilt.js +0 -974
  154. package/dist/devices-hap/blindtilt.js.map +0 -1
  155. package/dist/devices-hap/bot.d.ts +0 -102
  156. package/dist/devices-hap/bot.d.ts.map +0 -1
  157. package/dist/devices-hap/bot.js +0 -811
  158. package/dist/devices-hap/bot.js.map +0 -1
  159. package/dist/devices-hap/ceilinglight.d.ts +0 -85
  160. package/dist/devices-hap/ceilinglight.d.ts.map +0 -1
  161. package/dist/devices-hap/ceilinglight.js +0 -701
  162. package/dist/devices-hap/ceilinglight.js.map +0 -1
  163. package/dist/devices-hap/colorbulb.d.ts +0 -88
  164. package/dist/devices-hap/colorbulb.d.ts.map +0 -1
  165. package/dist/devices-hap/colorbulb.js +0 -881
  166. package/dist/devices-hap/colorbulb.js.map +0 -1
  167. package/dist/devices-hap/contact.d.ts +0 -44
  168. package/dist/devices-hap/contact.d.ts.map +0 -1
  169. package/dist/devices-hap/contact.js +0 -409
  170. package/dist/devices-hap/contact.js.map +0 -1
  171. package/dist/devices-hap/curtain.d.ts +0 -73
  172. package/dist/devices-hap/curtain.d.ts.map +0 -1
  173. package/dist/devices-hap/curtain.js +0 -869
  174. package/dist/devices-hap/curtain.js.map +0 -1
  175. package/dist/devices-hap/device.d.ts +0 -98
  176. package/dist/devices-hap/device.d.ts.map +0 -1
  177. package/dist/devices-hap/device.js +0 -749
  178. package/dist/devices-hap/device.js.map +0 -1
  179. package/dist/devices-hap/fan.d.ts +0 -69
  180. package/dist/devices-hap/fan.d.ts.map +0 -1
  181. package/dist/devices-hap/fan.js +0 -649
  182. package/dist/devices-hap/fan.js.map +0 -1
  183. package/dist/devices-hap/hub.d.ts +0 -37
  184. package/dist/devices-hap/hub.d.ts.map +0 -1
  185. package/dist/devices-hap/hub.js +0 -392
  186. package/dist/devices-hap/hub.js.map +0 -1
  187. package/dist/devices-hap/humidifier.d.ts +0 -68
  188. package/dist/devices-hap/humidifier.d.ts.map +0 -1
  189. package/dist/devices-hap/humidifier.js +0 -628
  190. package/dist/devices-hap/humidifier.js.map +0 -1
  191. package/dist/devices-hap/iosensor.d.ts +0 -42
  192. package/dist/devices-hap/iosensor.d.ts.map +0 -1
  193. package/dist/devices-hap/iosensor.js +0 -382
  194. package/dist/devices-hap/iosensor.js.map +0 -1
  195. package/dist/devices-hap/lightstrip.d.ts +0 -79
  196. package/dist/devices-hap/lightstrip.d.ts.map +0 -1
  197. package/dist/devices-hap/lightstrip.js +0 -797
  198. package/dist/devices-hap/lightstrip.js.map +0 -1
  199. package/dist/devices-hap/lock.d.ts +0 -53
  200. package/dist/devices-hap/lock.d.ts.map +0 -1
  201. package/dist/devices-hap/lock.js +0 -561
  202. package/dist/devices-hap/lock.js.map +0 -1
  203. package/dist/devices-hap/meter.d.ts +0 -37
  204. package/dist/devices-hap/meter.d.ts.map +0 -1
  205. package/dist/devices-hap/meter.js +0 -379
  206. package/dist/devices-hap/meter.js.map +0 -1
  207. package/dist/devices-hap/meterplus.d.ts +0 -42
  208. package/dist/devices-hap/meterplus.d.ts.map +0 -1
  209. package/dist/devices-hap/meterplus.js +0 -384
  210. package/dist/devices-hap/meterplus.js.map +0 -1
  211. package/dist/devices-hap/meterpro.d.ts +0 -43
  212. package/dist/devices-hap/meterpro.d.ts.map +0 -1
  213. package/dist/devices-hap/meterpro.js +0 -468
  214. package/dist/devices-hap/meterpro.js.map +0 -1
  215. package/dist/devices-hap/motion.d.ts +0 -42
  216. package/dist/devices-hap/motion.d.ts.map +0 -1
  217. package/dist/devices-hap/motion.js +0 -345
  218. package/dist/devices-hap/motion.js.map +0 -1
  219. package/dist/devices-hap/plug.d.ts +0 -49
  220. package/dist/devices-hap/plug.d.ts.map +0 -1
  221. package/dist/devices-hap/plug.js +0 -395
  222. package/dist/devices-hap/plug.js.map +0 -1
  223. package/dist/devices-hap/relayswitch.d.ts +0 -96
  224. package/dist/devices-hap/relayswitch.d.ts.map +0 -1
  225. package/dist/devices-hap/relayswitch.js +0 -642
  226. package/dist/devices-hap/relayswitch.js.map +0 -1
  227. package/dist/devices-hap/robotvacuumcleaner.d.ts +0 -54
  228. package/dist/devices-hap/robotvacuumcleaner.d.ts.map +0 -1
  229. package/dist/devices-hap/robotvacuumcleaner.js +0 -523
  230. package/dist/devices-hap/robotvacuumcleaner.js.map +0 -1
  231. package/dist/devices-hap/waterdetector.d.ts +0 -41
  232. package/dist/devices-hap/waterdetector.d.ts.map +0 -1
  233. package/dist/devices-hap/waterdetector.js +0 -356
  234. package/dist/devices-hap/waterdetector.js.map +0 -1
  235. package/dist/devices-matter/BaseMatterAccessory.d.ts +0 -63
  236. package/dist/devices-matter/BaseMatterAccessory.d.ts.map +0 -1
  237. package/dist/devices-matter/BaseMatterAccessory.js +0 -100
  238. package/dist/devices-matter/BaseMatterAccessory.js.map +0 -1
  239. package/dist/devices-matter/ColorLightAccessory.d.ts +0 -20
  240. package/dist/devices-matter/ColorLightAccessory.d.ts.map +0 -1
  241. package/dist/devices-matter/ColorLightAccessory.js +0 -95
  242. package/dist/devices-matter/ColorLightAccessory.js.map +0 -1
  243. package/dist/devices-matter/ColorTemperatureLightAccessory.d.ts +0 -18
  244. package/dist/devices-matter/ColorTemperatureLightAccessory.d.ts.map +0 -1
  245. package/dist/devices-matter/ColorTemperatureLightAccessory.js +0 -78
  246. package/dist/devices-matter/ColorTemperatureLightAccessory.js.map +0 -1
  247. package/dist/devices-matter/ContactSensorAccessory.d.ts +0 -12
  248. package/dist/devices-matter/ContactSensorAccessory.d.ts.map +0 -1
  249. package/dist/devices-matter/ContactSensorAccessory.js +0 -34
  250. package/dist/devices-matter/ContactSensorAccessory.js.map +0 -1
  251. package/dist/devices-matter/DimmableLightAccessory.d.ts +0 -58
  252. package/dist/devices-matter/DimmableLightAccessory.d.ts.map +0 -1
  253. package/dist/devices-matter/DimmableLightAccessory.js +0 -167
  254. package/dist/devices-matter/DimmableLightAccessory.js.map +0 -1
  255. package/dist/devices-matter/DoorLockAccessory.d.ts +0 -14
  256. package/dist/devices-matter/DoorLockAccessory.d.ts.map +0 -1
  257. package/dist/devices-matter/DoorLockAccessory.js +0 -50
  258. package/dist/devices-matter/DoorLockAccessory.js.map +0 -1
  259. package/dist/devices-matter/ExtendedColorLightAccessory.d.ts +0 -21
  260. package/dist/devices-matter/ExtendedColorLightAccessory.d.ts.map +0 -1
  261. package/dist/devices-matter/ExtendedColorLightAccessory.js +0 -107
  262. package/dist/devices-matter/ExtendedColorLightAccessory.js.map +0 -1
  263. package/dist/devices-matter/FanAccessory.d.ts +0 -16
  264. package/dist/devices-matter/FanAccessory.d.ts.map +0 -1
  265. package/dist/devices-matter/FanAccessory.js +0 -81
  266. package/dist/devices-matter/FanAccessory.js.map +0 -1
  267. package/dist/devices-matter/HumiditySensorAccessory.d.ts +0 -12
  268. package/dist/devices-matter/HumiditySensorAccessory.d.ts.map +0 -1
  269. package/dist/devices-matter/HumiditySensorAccessory.js +0 -34
  270. package/dist/devices-matter/HumiditySensorAccessory.js.map +0 -1
  271. package/dist/devices-matter/LeakSensorAccessory.d.ts +0 -12
  272. package/dist/devices-matter/LeakSensorAccessory.d.ts.map +0 -1
  273. package/dist/devices-matter/LeakSensorAccessory.js +0 -33
  274. package/dist/devices-matter/LeakSensorAccessory.js.map +0 -1
  275. package/dist/devices-matter/LightSensorAccessory.d.ts +0 -12
  276. package/dist/devices-matter/LightSensorAccessory.d.ts.map +0 -1
  277. package/dist/devices-matter/LightSensorAccessory.js +0 -34
  278. package/dist/devices-matter/LightSensorAccessory.js.map +0 -1
  279. package/dist/devices-matter/OccupancySensorAccessory.d.ts +0 -12
  280. package/dist/devices-matter/OccupancySensorAccessory.d.ts.map +0 -1
  281. package/dist/devices-matter/OccupancySensorAccessory.js +0 -39
  282. package/dist/devices-matter/OccupancySensorAccessory.js.map +0 -1
  283. package/dist/devices-matter/OnOffLightAccessory.d.ts +0 -38
  284. package/dist/devices-matter/OnOffLightAccessory.d.ts.map +0 -1
  285. package/dist/devices-matter/OnOffLightAccessory.js +0 -118
  286. package/dist/devices-matter/OnOffLightAccessory.js.map +0 -1
  287. package/dist/devices-matter/OnOffOutletAccessory.d.ts +0 -12
  288. package/dist/devices-matter/OnOffOutletAccessory.d.ts.map +0 -1
  289. package/dist/devices-matter/OnOffOutletAccessory.js +0 -40
  290. package/dist/devices-matter/OnOffOutletAccessory.js.map +0 -1
  291. package/dist/devices-matter/OnOffSwitchAccessory.d.ts +0 -14
  292. package/dist/devices-matter/OnOffSwitchAccessory.d.ts.map +0 -1
  293. package/dist/devices-matter/OnOffSwitchAccessory.js +0 -42
  294. package/dist/devices-matter/OnOffSwitchAccessory.js.map +0 -1
  295. package/dist/devices-matter/RoboticVacuumAccessory.d.ts +0 -68
  296. package/dist/devices-matter/RoboticVacuumAccessory.d.ts.map +0 -1
  297. package/dist/devices-matter/RoboticVacuumAccessory.js +0 -334
  298. package/dist/devices-matter/RoboticVacuumAccessory.js.map +0 -1
  299. package/dist/devices-matter/SmokeCOAlarmAccessory.d.ts +0 -11
  300. package/dist/devices-matter/SmokeCOAlarmAccessory.d.ts.map +0 -1
  301. package/dist/devices-matter/SmokeCOAlarmAccessory.js +0 -49
  302. package/dist/devices-matter/SmokeCOAlarmAccessory.js.map +0 -1
  303. package/dist/devices-matter/TemperatureSensorAccessory.d.ts +0 -12
  304. package/dist/devices-matter/TemperatureSensorAccessory.d.ts.map +0 -1
  305. package/dist/devices-matter/TemperatureSensorAccessory.js +0 -36
  306. package/dist/devices-matter/TemperatureSensorAccessory.js.map +0 -1
  307. package/dist/devices-matter/ThermostatAccessory.d.ts +0 -19
  308. package/dist/devices-matter/ThermostatAccessory.d.ts.map +0 -1
  309. package/dist/devices-matter/ThermostatAccessory.js +0 -95
  310. package/dist/devices-matter/ThermostatAccessory.js.map +0 -1
  311. package/dist/devices-matter/VenetianBlindAccessory.d.ts +0 -19
  312. package/dist/devices-matter/VenetianBlindAccessory.d.ts.map +0 -1
  313. package/dist/devices-matter/VenetianBlindAccessory.js +0 -99
  314. package/dist/devices-matter/VenetianBlindAccessory.js.map +0 -1
  315. package/dist/devices-matter/WindowBlindAccessory.d.ts +0 -17
  316. package/dist/devices-matter/WindowBlindAccessory.d.ts.map +0 -1
  317. package/dist/devices-matter/WindowBlindAccessory.js +0 -80
  318. package/dist/devices-matter/WindowBlindAccessory.js.map +0 -1
  319. package/dist/devices-matter/custom/PowerStripAccessory.d.ts +0 -97
  320. package/dist/devices-matter/custom/PowerStripAccessory.d.ts.map +0 -1
  321. package/dist/devices-matter/custom/PowerStripAccessory.js +0 -265
  322. package/dist/devices-matter/custom/PowerStripAccessory.js.map +0 -1
  323. package/dist/devices-matter/custom/index.d.ts +0 -8
  324. package/dist/devices-matter/custom/index.d.ts.map +0 -1
  325. package/dist/devices-matter/custom/index.js +0 -8
  326. package/dist/devices-matter/custom/index.js.map +0 -1
  327. package/dist/devices-matter/index.d.ts +0 -29
  328. package/dist/devices-matter/index.d.ts.map +0 -1
  329. package/dist/devices-matter/index.js +0 -28
  330. package/dist/devices-matter/index.js.map +0 -1
  331. package/dist/index.test.d.ts +0 -2
  332. package/dist/index.test.d.ts.map +0 -1
  333. package/dist/index.test.js +0 -14
  334. package/dist/index.test.js.map +0 -1
  335. package/dist/irdevice/airconditioner.d.ts +0 -61
  336. package/dist/irdevice/airconditioner.d.ts.map +0 -1
  337. package/dist/irdevice/airconditioner.js +0 -472
  338. package/dist/irdevice/airconditioner.js.map +0 -1
  339. package/dist/irdevice/airpurifier.d.ts +0 -50
  340. package/dist/irdevice/airpurifier.d.ts.map +0 -1
  341. package/dist/irdevice/airpurifier.js +0 -213
  342. package/dist/irdevice/airpurifier.js.map +0 -1
  343. package/dist/irdevice/camera.d.ts +0 -32
  344. package/dist/irdevice/camera.d.ts.map +0 -1
  345. package/dist/irdevice/camera.js +0 -107
  346. package/dist/irdevice/camera.js.map +0 -1
  347. package/dist/irdevice/fan.d.ts +0 -36
  348. package/dist/irdevice/fan.d.ts.map +0 -1
  349. package/dist/irdevice/fan.js +0 -200
  350. package/dist/irdevice/fan.js.map +0 -1
  351. package/dist/irdevice/irdevice.d.ts +0 -68
  352. package/dist/irdevice/irdevice.d.ts.map +0 -1
  353. package/dist/irdevice/irdevice.js +0 -298
  354. package/dist/irdevice/irdevice.js.map +0 -1
  355. package/dist/irdevice/light.d.ts +0 -36
  356. package/dist/irdevice/light.d.ts.map +0 -1
  357. package/dist/irdevice/light.js +0 -206
  358. package/dist/irdevice/light.js.map +0 -1
  359. package/dist/irdevice/other.d.ts +0 -57
  360. package/dist/irdevice/other.d.ts.map +0 -1
  361. package/dist/irdevice/other.js +0 -778
  362. package/dist/irdevice/other.js.map +0 -1
  363. package/dist/irdevice/tv.d.ts +0 -45
  364. package/dist/irdevice/tv.d.ts.map +0 -1
  365. package/dist/irdevice/tv.js +0 -327
  366. package/dist/irdevice/tv.js.map +0 -1
  367. package/dist/irdevice/vacuumcleaner.d.ts +0 -28
  368. package/dist/irdevice/vacuumcleaner.d.ts.map +0 -1
  369. package/dist/irdevice/vacuumcleaner.js +0 -104
  370. package/dist/irdevice/vacuumcleaner.js.map +0 -1
  371. package/dist/irdevice/waterheater.d.ts +0 -30
  372. package/dist/irdevice/waterheater.d.ts.map +0 -1
  373. package/dist/irdevice/waterheater.js +0 -105
  374. package/dist/irdevice/waterheater.js.map +0 -1
  375. package/dist/platform-hap.d.ts +0 -149
  376. package/dist/platform-hap.d.ts.map +0 -1
  377. package/dist/platform-hap.js +0 -2861
  378. package/dist/platform-hap.js.map +0 -1
  379. package/dist/platform-matter.d.ts +0 -120
  380. package/dist/platform-matter.d.ts.map +0 -1
  381. package/dist/platform-matter.js +0 -966
  382. package/dist/platform-matter.js.map +0 -1
  383. package/dist/verifyconfig.test.d.ts +0 -2
  384. package/dist/verifyconfig.test.d.ts.map +0 -1
  385. package/dist/verifyconfig.test.js +0 -167
  386. package/dist/verifyconfig.test.js.map +0 -1
  387. package/src/custom.d.ts +0 -7
  388. package/src/devices-hap/airpurifier.ts +0 -563
  389. package/src/devices-hap/blindtilt.ts +0 -1049
  390. package/src/devices-hap/bot.ts +0 -900
  391. package/src/devices-hap/ceilinglight.ts +0 -742
  392. package/src/devices-hap/colorbulb.ts +0 -904
  393. package/src/devices-hap/contact.ts +0 -457
  394. package/src/devices-hap/curtain.ts +0 -944
  395. package/src/devices-hap/device.ts +0 -811
  396. package/src/devices-hap/fan.ts +0 -711
  397. package/src/devices-hap/hub.ts +0 -439
  398. package/src/devices-hap/humidifier.ts +0 -669
  399. package/src/devices-hap/iosensor.ts +0 -427
  400. package/src/devices-hap/lightstrip.ts +0 -836
  401. package/src/devices-hap/lock.ts +0 -620
  402. package/src/devices-hap/meter.ts +0 -426
  403. package/src/devices-hap/meterplus.ts +0 -430
  404. package/src/devices-hap/meterpro.ts +0 -522
  405. package/src/devices-hap/motion.ts +0 -390
  406. package/src/devices-hap/plug.ts +0 -423
  407. package/src/devices-hap/relayswitch.ts +0 -727
  408. package/src/devices-hap/robotvacuumcleaner.ts +0 -568
  409. package/src/devices-hap/waterdetector.ts +0 -400
  410. package/src/devices-matter/BaseMatterAccessory.ts +0 -131
  411. package/src/devices-matter/ColorLightAccessory.ts +0 -110
  412. package/src/devices-matter/ColorTemperatureLightAccessory.ts +0 -92
  413. package/src/devices-matter/ContactSensorAccessory.ts +0 -41
  414. package/src/devices-matter/DimmableLightAccessory.ts +0 -192
  415. package/src/devices-matter/DoorLockAccessory.ts +0 -60
  416. package/src/devices-matter/ExtendedColorLightAccessory.ts +0 -123
  417. package/src/devices-matter/FanAccessory.ts +0 -95
  418. package/src/devices-matter/HumiditySensorAccessory.ts +0 -41
  419. package/src/devices-matter/LeakSensorAccessory.ts +0 -40
  420. package/src/devices-matter/LightSensorAccessory.ts +0 -41
  421. package/src/devices-matter/OccupancySensorAccessory.ts +0 -48
  422. package/src/devices-matter/OnOffLightAccessory.ts +0 -133
  423. package/src/devices-matter/OnOffOutletAccessory.ts +0 -46
  424. package/src/devices-matter/OnOffSwitchAccessory.ts +0 -51
  425. package/src/devices-matter/RoboticVacuumAccessory.ts +0 -407
  426. package/src/devices-matter/SmokeCOAlarmAccessory.ts +0 -59
  427. package/src/devices-matter/TemperatureSensorAccessory.ts +0 -43
  428. package/src/devices-matter/ThermostatAccessory.ts +0 -110
  429. package/src/devices-matter/VenetianBlindAccessory.ts +0 -115
  430. package/src/devices-matter/WindowBlindAccessory.ts +0 -92
  431. package/src/devices-matter/custom/PowerStripAccessory.ts +0 -309
  432. package/src/devices-matter/custom/index.ts +0 -8
  433. package/src/devices-matter/index.ts +0 -29
  434. package/src/index.test.ts +0 -19
  435. package/src/irdevice/airconditioner.ts +0 -533
  436. package/src/irdevice/airpurifier.ts +0 -252
  437. package/src/irdevice/camera.ts +0 -129
  438. package/src/irdevice/fan.ts +0 -226
  439. package/src/irdevice/irdevice.ts +0 -344
  440. package/src/irdevice/light.ts +0 -246
  441. package/src/irdevice/other.ts +0 -790
  442. package/src/irdevice/tv.ts +0 -378
  443. package/src/irdevice/vacuumcleaner.ts +0 -126
  444. package/src/irdevice/waterheater.ts +0 -127
  445. package/src/platform-hap.ts +0 -2997
  446. package/src/platform-matter.ts +0 -1092
  447. package/src/verifyconfig.test.ts +0 -197
@@ -1,790 +0,0 @@
1
- /* Copyright(C) 2021-2024, donavanbecker (https://github.com/donavanbecker). All rights reserved.
2
- *
3
- * other.ts: @switchbot/homebridge-switchbot.
4
- */
5
- import type { CharacteristicValue, PlatformAccessory, Service } from 'homebridge'
6
- import type { bodyChange, irdevice } from 'node-switchbot'
7
-
8
- import type { SwitchBotHAPPlatform } from '../platform-hap.js'
9
- import type { irDevicesConfig, irOtherConfig } from '../settings.js'
10
-
11
- import { irdeviceBase } from './irdevice.js'
12
-
13
- /**
14
- * Platform Accessory
15
- * An instance of this class is created for each accessory your platform registers
16
- * Each accessory may expose multiple services of different service types.
17
- */
18
- export class Others extends irdeviceBase {
19
- // Services
20
- private Switch?: {
21
- Name: CharacteristicValue
22
- Service: Service
23
- }
24
-
25
- private GarageDoor?: {
26
- Name: CharacteristicValue
27
- Service: Service
28
- }
29
-
30
- private Door?: {
31
- Name: CharacteristicValue
32
- Service: Service
33
- }
34
-
35
- private Window?: {
36
- Name: CharacteristicValue
37
- Service: Service
38
- }
39
-
40
- private WindowCovering?: {
41
- Name: CharacteristicValue
42
- Service: Service
43
- }
44
-
45
- private LockMechanism?: {
46
- Name: CharacteristicValue
47
- Service: Service
48
- }
49
-
50
- private Faucet?: {
51
- Name: CharacteristicValue
52
- Service: Service
53
- }
54
-
55
- private Fan?: {
56
- Name: CharacteristicValue
57
- Service: Service
58
- }
59
-
60
- private StatefulProgrammableSwitch?: {
61
- Name: CharacteristicValue
62
- Service: Service
63
- }
64
-
65
- private Outlet?: {
66
- Name: CharacteristicValue
67
- Service: Service
68
- }
69
-
70
- On!: boolean
71
-
72
- // Config
73
- otherDeviceType?: string
74
-
75
- constructor(
76
- readonly platform: SwitchBotHAPPlatform,
77
- accessory: PlatformAccessory,
78
- device: irdevice & irDevicesConfig,
79
- ) {
80
- super(platform, accessory, device)
81
-
82
- // default placeholders
83
- this.getOtherConfigSettings(accessory, device)
84
-
85
- // deviceType
86
- if (this.otherDeviceType === 'Switch') {
87
- // Set category
88
- accessory.category = this.hap.Categories.SWITCH
89
- // Initialize Switch Service
90
- accessory.context.Switch = accessory.context.Switch ?? {}
91
- this.Switch = {
92
- Name: accessory.displayName,
93
- Service: accessory.getService(this.hap.Service.Switch) ?? accessory.addService(this.hap.Service.Switch) as Service,
94
- }
95
- accessory.context.Switch = this.Switch as object
96
- this.debugLog('Displaying as Switch')
97
- // Initialize Switch Characteristics
98
- this.Switch.Service.setCharacteristic(this.hap.Characteristic.Name, this.Switch.Name).getCharacteristic(this.hap.Characteristic.On).onSet(this.OnSet.bind(this))
99
- // Remove other services
100
- this.removeFanService(accessory)
101
- this.removeLockService(accessory)
102
- this.removeDoorService(accessory)
103
- this.removeFaucetService(accessory)
104
- this.removeOutletService(accessory)
105
- this.removeWindowService(accessory)
106
- this.removeGarageDoorService(accessory)
107
- this.removeWindowCoveringService(accessory)
108
- this.removeStatefulProgrammableSwitchService(accessory)
109
- } else if (this.otherDeviceType === 'GarageDoor') {
110
- // Set category
111
- accessory.category = this.hap.Categories.GARAGE_DOOR_OPENER
112
- // Initialize GarageDoor Service
113
- accessory.context.GarageDoor = accessory.context.GarageDoor ?? {}
114
- this.GarageDoor = {
115
- Name: accessory.displayName,
116
- Service: accessory.getService(this.hap.Service.GarageDoorOpener) ?? accessory.addService(this.hap.Service.GarageDoorOpener) as Service,
117
- }
118
- accessory.context.GarageDoor = this.GarageDoor as object
119
- this.debugLog('Displaying as Garage Door Opener')
120
- // Initialize GarageDoor Characteristics
121
- this.GarageDoor.Service.setCharacteristic(this.hap.Characteristic.Name, this.GarageDoor.Name).setCharacteristic(this.hap.Characteristic.ObstructionDetected, false).getCharacteristic(this.hap.Characteristic.TargetDoorState).setProps({
122
- validValues: [0, 100],
123
- minValue: 0,
124
- maxValue: 100,
125
- minStep: 100,
126
- }).onSet(this.OnSet.bind(this))
127
- // Remove other services
128
- this.removeFanService(accessory)
129
- this.removeLockService(accessory)
130
- this.removeDoorService(accessory)
131
- this.removeFaucetService(accessory)
132
- this.removeOutletService(accessory)
133
- this.removeSwitchService(accessory)
134
- this.removeWindowService(accessory)
135
- this.removeWindowCoveringService(accessory)
136
- this.removeStatefulProgrammableSwitchService(accessory)
137
- } else if (this.otherDeviceType === 'Door') {
138
- // Set category
139
- accessory.category = this.hap.Categories.DOOR
140
- // Initialize Door Service
141
- accessory.context.Door = accessory.context.Door ?? {}
142
- this.Door = {
143
- Name: accessory.displayName,
144
- Service: accessory.getService(this.hap.Service.Door) ?? accessory.addService(this.hap.Service.Door) as Service,
145
- }
146
- accessory.context.Door = this.Door as object
147
- this.debugLog('Displaying as Door')
148
- // Initialize Door Characteristics
149
- this.Door.Service.setCharacteristic(this.hap.Characteristic.Name, this.Door.Name).setCharacteristic(this.hap.Characteristic.PositionState, this.hap.Characteristic.PositionState.STOPPED).getCharacteristic(this.hap.Characteristic.TargetPosition).setProps({
150
- validValues: [0, 100],
151
- minValue: 0,
152
- maxValue: 100,
153
- minStep: 100,
154
- }).onSet(this.OnSet.bind(this))
155
- // Remove other services
156
- this.removeFanService(accessory)
157
- this.removeLockService(accessory)
158
- this.removeOutletService(accessory)
159
- this.removeFaucetService(accessory)
160
- this.removeSwitchService(accessory)
161
- this.removeWindowService(accessory)
162
- this.removeGarageDoorService(accessory)
163
- this.removeWindowCoveringService(accessory)
164
- this.removeStatefulProgrammableSwitchService(accessory)
165
- } else if (this.otherDeviceType === 'Window') {
166
- // Set category
167
- accessory.category = this.hap.Categories.WINDOW
168
- // Initialize Window Service
169
- accessory.context.Window = accessory.context.Window ?? {}
170
- this.Window = {
171
- Name: accessory.displayName,
172
- Service: accessory.getService(this.hap.Service.Window) ?? accessory.addService(this.hap.Service.Window) as Service,
173
- }
174
- accessory.context.Window = this.Window as object
175
- this.debugLog('Displaying as Window')
176
- // Initialize Window Characteristics
177
- this.Window.Service.setCharacteristic(this.hap.Characteristic.Name, this.Window.Name).setCharacteristic(this.hap.Characteristic.PositionState, this.hap.Characteristic.PositionState.STOPPED).getCharacteristic(this.hap.Characteristic.TargetPosition).setProps({
178
- validValues: [0, 100],
179
- minValue: 0,
180
- maxValue: 100,
181
- minStep: 100,
182
- }).onSet(this.OnSet.bind(this))
183
- // Remove other services
184
- this.removeFanService(accessory)
185
- this.removeLockService(accessory)
186
- this.removeDoorService(accessory)
187
- this.removeOutletService(accessory)
188
- this.removeFaucetService(accessory)
189
- this.removeSwitchService(accessory)
190
- this.removeGarageDoorService(accessory)
191
- this.removeWindowCoveringService(accessory)
192
- this.removeStatefulProgrammableSwitchService(accessory)
193
- } else if (this.otherDeviceType === 'WindowCovering') {
194
- // Set category
195
- accessory.category = this.hap.Categories.WINDOW_COVERING
196
- // Initialize WindowCovering Service
197
- accessory.context.WindowCovering = accessory.context.WindowCovering ?? {}
198
- this.WindowCovering = {
199
- Name: accessory.displayName,
200
- Service: accessory.getService(this.hap.Service.WindowCovering) ?? accessory.addService(this.hap.Service.WindowCovering) as Service,
201
- }
202
- accessory.context.WindowCovering = this.WindowCovering as object
203
- this.debugLog('Displaying as Window Covering')
204
- // Initialize WindowCovering Characteristics
205
- this.WindowCovering.Service.setCharacteristic(this.hap.Characteristic.Name, this.WindowCovering.Name).setCharacteristic(this.hap.Characteristic.PositionState, this.hap.Characteristic.PositionState.STOPPED).getCharacteristic(this.hap.Characteristic.TargetPosition).setProps({
206
- validValues: [0, 100],
207
- minValue: 0,
208
- maxValue: 100,
209
- minStep: 100,
210
- }).onSet(this.OnSet.bind(this))
211
- // Remove other services
212
- this.removeFanService(accessory)
213
- this.removeLockService(accessory)
214
- this.removeDoorService(accessory)
215
- this.removeOutletService(accessory)
216
- this.removeFaucetService(accessory)
217
- this.removeSwitchService(accessory)
218
- this.removeWindowService(accessory)
219
- this.removeGarageDoorService(accessory)
220
- this.removeStatefulProgrammableSwitchService(accessory)
221
- } else if (this.otherDeviceType === 'Lock') {
222
- // Set category
223
- accessory.category = this.hap.Categories.DOOR_LOCK
224
- // Initialize Lock Service
225
- accessory.context.LockMechanism = accessory.context.LockMechanism ?? {}
226
- this.LockMechanism = {
227
- Name: accessory.displayName,
228
- Service: accessory.getService(this.hap.Service.LockMechanism) ?? accessory.addService(this.hap.Service.LockMechanism) as Service,
229
- }
230
- accessory.context.LockMechanism = this.LockMechanism as object
231
- this.debugLog('Displaying as Lock')
232
- // Initialize Lock Characteristics
233
- this.LockMechanism.Service.setCharacteristic(this.hap.Characteristic.Name, this.LockMechanism.Name).setCharacteristic(this.hap.Characteristic.PositionState, this.hap.Characteristic.PositionState.STOPPED).getCharacteristic(this.hap.Characteristic.LockTargetState).onSet(this.OnSet.bind(this))
234
- // Remove other services
235
- this.removeFanService(accessory)
236
- this.removeDoorService(accessory)
237
- this.removeOutletService(accessory)
238
- this.removeSwitchService(accessory)
239
- this.removeFaucetService(accessory)
240
- this.removeWindowService(accessory)
241
- this.removeGarageDoorService(accessory)
242
- this.removeWindowCoveringService(accessory)
243
- this.removeStatefulProgrammableSwitchService(accessory)
244
- } else if (this.otherDeviceType === 'Faucet') {
245
- // Set category
246
- accessory.category = this.hap.Categories.FAUCET
247
- // Initialize Faucet Service
248
- accessory.context.Faucet = accessory.context.Faucet ?? {}
249
- this.Faucet = {
250
- Name: accessory.displayName,
251
- Service: accessory.getService(this.hap.Service.Faucet) ?? accessory.addService(this.hap.Service.Faucet) as Service,
252
- }
253
- accessory.context.Faucet = this.Faucet as object
254
- this.debugLog('Displaying as Faucet')
255
- // Initialize Faucet Characteristics
256
- this.Faucet.Service.setCharacteristic(this.hap.Characteristic.Name, this.Faucet.Name).getCharacteristic(this.hap.Characteristic.Active).onSet(this.OnSet.bind(this))
257
- // Remove other services
258
- this.removeFanService(accessory)
259
- this.removeLockService(accessory)
260
- this.removeDoorService(accessory)
261
- this.removeOutletService(accessory)
262
- this.removeSwitchService(accessory)
263
- this.removeWindowService(accessory)
264
- this.removeGarageDoorService(accessory)
265
- this.removeWindowCoveringService(accessory)
266
- this.removeStatefulProgrammableSwitchService(accessory)
267
- } else if (this.otherDeviceType === 'Fan') {
268
- // Set category
269
- accessory.category = this.hap.Categories.FAN
270
- // Initialize Fan Service
271
- accessory.context.Fan = accessory.context.Fan ?? {}
272
- this.Fan = {
273
- Name: accessory.displayName,
274
- Service: accessory.getService(this.hap.Service.Fanv2) ?? accessory.addService(this.hap.Service.Fanv2) as Service,
275
- }
276
- accessory.context.Fan = this.Fan as object
277
- this.debugLog('Displaying as Fan')
278
- // Initialize Fan Characteristics
279
- this.Fan.Service.setCharacteristic(this.hap.Characteristic.Name, this.Fan.Name).getCharacteristic(this.hap.Characteristic.Active).onSet(this.OnSet.bind(this))
280
- // Remove other services
281
- this.removeLockService(accessory)
282
- this.removeDoorService(accessory)
283
- this.removeFaucetService(accessory)
284
- this.removeOutletService(accessory)
285
- this.removeSwitchService(accessory)
286
- this.removeWindowService(accessory)
287
- this.removeGarageDoorService(accessory)
288
- this.removeWindowCoveringService(accessory)
289
- this.removeStatefulProgrammableSwitchService(accessory)
290
- } else if (this.otherDeviceType === 'Stateful') {
291
- // Set category
292
- accessory.category = this.hap.Categories.PROGRAMMABLE_SWITCH
293
- // Initialize StatefulProgrammableSwitch Service
294
- accessory.context.StatefulProgrammableSwitch = accessory.context.StatefulProgrammableSwitch ?? {}
295
- this.StatefulProgrammableSwitch = {
296
- Name: accessory.displayName,
297
- Service: accessory.getService(this.hap.Service.StatefulProgrammableSwitch) ?? accessory.addService(this.hap.Service.StatefulProgrammableSwitch) as Service,
298
- }
299
- accessory.context.StatefulProgrammableSwitch = this.StatefulProgrammableSwitch as object
300
- this.debugLog('Displaying as Stateful Programmable Switch')
301
- // Initialize StatefulProgrammableSwitch Characteristics
302
- this.StatefulProgrammableSwitch.Service.setCharacteristic(this.hap.Characteristic.Name, this.StatefulProgrammableSwitch.Name).getCharacteristic(this.hap.Characteristic.ProgrammableSwitchOutputState).onSet(this.OnSet.bind(this))
303
- // Remove other services
304
- this.removeFanService(accessory)
305
- this.removeLockService(accessory)
306
- this.removeDoorService(accessory)
307
- this.removeFaucetService(accessory)
308
- this.removeOutletService(accessory)
309
- this.removeSwitchService(accessory)
310
- this.removeWindowService(accessory)
311
- this.removeGarageDoorService(accessory)
312
- this.removeWindowCoveringService(accessory)
313
- } else if (this.otherDeviceType === 'Outlet') {
314
- // Set category
315
- accessory.category = this.hap.Categories.OUTLET
316
- // Initialize Switch property
317
- accessory.context.Outlet = accessory.context.Outlet ?? {}
318
- this.Outlet = {
319
- Name: accessory.displayName,
320
- Service: accessory.getService(this.hap.Service.Outlet) ?? accessory.addService(this.hap.Service.Outlet) as Service,
321
- }
322
- accessory.context.Outlet = this.Outlet as object
323
- this.debugLog('Displaying as Outlet')
324
- // Initialize Outlet Characteristics
325
- this.Outlet.Service.setCharacteristic(this.hap.Characteristic.Name, this.Outlet.Name).getCharacteristic(this.hap.Characteristic.On).onSet(this.OnSet.bind(this))
326
- // Remove other services
327
- this.removeFanService(accessory)
328
- this.removeLockService(accessory)
329
- this.removeDoorService(accessory)
330
- this.removeFaucetService(accessory)
331
- this.removeSwitchService(accessory)
332
- this.removeWindowService(accessory)
333
- this.removeGarageDoorService(accessory)
334
- this.removeWindowCoveringService(accessory)
335
- this.removeStatefulProgrammableSwitchService(accessory)
336
- } else {
337
- this.errorLog('Device Type not set')
338
- }
339
- }
340
-
341
- /**
342
- * Handle requests to set the "On" characteristic
343
- */
344
- async OnSet(value: CharacteristicValue): Promise<void> {
345
- if (this.otherDeviceType === 'Switch') {
346
- if (this.Switch) {
347
- this.debugLog(`Set On: ${value}`)
348
- this.On = value !== false
349
- }
350
- } else if (this.otherDeviceType === 'GarageDoor') {
351
- if (this.GarageDoor) {
352
- this.debugLog(`Set TargetDoorState: ${value}`)
353
- this.On = value !== this.hap.Characteristic.TargetDoorState.CLOSED
354
- }
355
- } else if (this.otherDeviceType === 'Door') {
356
- if (this.Door) {
357
- this.debugLog(`Set TargetPosition: ${value}`)
358
- this.On = value !== 0
359
- }
360
- } else if (this.otherDeviceType === 'Window') {
361
- if (this.Window) {
362
- this.debugLog(`Set TargetPosition: ${value}`)
363
- this.On = value !== 0
364
- }
365
- } else if (this.otherDeviceType === 'WindowCovering') {
366
- if (this.WindowCovering) {
367
- this.debugLog(`Set TargetPosition: ${value}`)
368
- this.On = value !== 0
369
- }
370
- } else if (this.otherDeviceType === 'Lock') {
371
- if (this.LockMechanism) {
372
- this.debugLog(`Set LockTargetState: ${value}`)
373
- this.On = value !== this.hap.Characteristic.LockTargetState.SECURED
374
- }
375
- } else if (this.otherDeviceType === 'Faucet') {
376
- if (this.Faucet) {
377
- this.debugLog(`Set Active: ${value}`)
378
- this.On = value !== this.hap.Characteristic.Active.INACTIVE
379
- }
380
- } else if (this.otherDeviceType === 'Stateful') {
381
- if (this.StatefulProgrammableSwitch) {
382
- this.debugLog(`Set ProgrammableSwitchOutputState: ${value}`)
383
- this.On = value !== 0
384
- }
385
- } else {
386
- if (this.Outlet) {
387
- this.debugLog(`Set On: ${value}`)
388
- this.On = value !== false
389
- }
390
- }
391
- // pushChanges
392
- if (this.On === true) {
393
- await this.pushOnChanges(this.On)
394
- } else {
395
- await this.pushOffChanges(this.On)
396
- }
397
- }
398
-
399
- /**
400
- * Pushes the requested changes to the SwitchBot API
401
- * deviceType commandType Command command parameter Description
402
- * Other - "command" "turnOff" "default" = set to OFF state
403
- * Other - "command" "turnOn" "default" = set to ON state
404
- * Other - "command" "volumeAdd" "default" = volume up
405
- * Other - "command" "volumeSub" "default" = volume down
406
- * Other - "command" "channelAdd" "default" = next channel
407
- * Other - "command" "channelSub" "default" = previous channel
408
- */
409
- async pushOnChanges(On: boolean): Promise<void> {
410
- this.debugLog(`pushOnChanges On: ${On}, disablePushOn: ${this.deviceDisablePushOn}, customize: ${this.device.customize}, customOn: ${this.device.customOn}`)
411
- if (this.device.customize) {
412
- if (On === true && !this.deviceDisablePushOn) {
413
- const commandType: string = await this.commandType()
414
- const command: string = await this.commandOn()
415
- const bodyChange: bodyChange = {
416
- command,
417
- parameter: 'default',
418
- commandType,
419
- }
420
- await this.pushChanges(bodyChange)
421
- }
422
- } else {
423
- this.errorLog('On Command not set')
424
- }
425
- }
426
-
427
- async pushOffChanges(On: boolean): Promise<void> {
428
- this.debugLog(`pushOffChanges On: ${On}, disablePushOff: ${this.deviceDisablePushOff}, customize: ${this.device.customize}, customOff: ${this.device.customOff}`)
429
- if (this.device.customize) {
430
- if (On === false && !this.deviceDisablePushOff) {
431
- const commandType: string = await this.commandType()
432
- const command: string = await this.commandOff()
433
- const bodyChange: bodyChange = {
434
- command,
435
- parameter: 'default',
436
- commandType,
437
- }
438
- await this.pushChanges(bodyChange)
439
- }
440
- } else {
441
- this.errorLog('Off Command not set.')
442
- }
443
- }
444
-
445
- async pushChanges(bodyChange: any): Promise<void> {
446
- this.debugLog('pushChanges')
447
- if (this.device.connectionType === 'OpenAPI') {
448
- this.infoLog(`Sending request to SwitchBot API, body: ${JSON.stringify(bodyChange)}`)
449
- try {
450
- const deviceStatus = await this.pushChangeRequest(bodyChange)
451
- await this.pushStatusCodes(deviceStatus)
452
- if (await this.successfulStatusCodes(deviceStatus)) {
453
- await this.successfulPushChange(deviceStatus, bodyChange)
454
- await this.updateHomeKitCharacteristics()
455
- } else {
456
- await this.statusCode(deviceStatus.statusCode)
457
- }
458
- } catch (e: any) {
459
- await this.apiError(e)
460
- await this.pushChangeError(e)
461
- }
462
- } else {
463
- this.warnLog(`Connection Type: ${this.device.connectionType}, commands will not be sent to OpenAPI`)
464
- }
465
- }
466
-
467
- async updateHomeKitCharacteristics(): Promise<void> {
468
- this.debugLog('updateHomeKitCharacteristics')
469
- // State
470
- if (this.otherDeviceType === 'Switch' && this.Switch) {
471
- if (this.On === undefined) {
472
- this.debugLog(`On: ${this.On}`)
473
- } else {
474
- this.Switch.Service.updateCharacteristic(this.hap.Characteristic.On, this.On)
475
- this.debugLog(`updateCharacteristic On: ${this.On}`)
476
- }
477
- } else if (this.otherDeviceType === 'GarageDoor' && this.GarageDoor) {
478
- if (this.On === undefined) {
479
- this.debugLog(`On: ${this.On}`)
480
- } else {
481
- if (this.On) {
482
- this.GarageDoor.Service.updateCharacteristic(this.hap.Characteristic.TargetDoorState, this.hap.Characteristic.TargetDoorState.OPEN)
483
- this.GarageDoor.Service.updateCharacteristic(this.hap.Characteristic.CurrentDoorState, this.hap.Characteristic.CurrentDoorState.OPEN)
484
- this.debugLog(`updateCharacteristic TargetDoorState: Open, CurrentDoorState: Open (${this.On})`)
485
- } else {
486
- this.GarageDoor.Service.updateCharacteristic(this.hap.Characteristic.TargetDoorState, this.hap.Characteristic.TargetDoorState.CLOSED)
487
- this.GarageDoor.Service.updateCharacteristic(this.hap.Characteristic.CurrentDoorState, this.hap.Characteristic.CurrentDoorState.CLOSED)
488
- this.debugLog(`updateCharacteristicc TargetDoorState: Closed, CurrentDoorState: Closed (${this.On})`)
489
- }
490
- }
491
- this.debugLog(`Garage Door On: ${this.On}`)
492
- } else if (this.otherDeviceType === 'Door' && this.Door) {
493
- if (this.On === undefined) {
494
- this.debugLog(`On: ${this.On}`)
495
- } else {
496
- if (this.On) {
497
- this.Door.Service.updateCharacteristic(this.hap.Characteristic.TargetPosition, 100)
498
- this.Door.Service.updateCharacteristic(this.hap.Characteristic.CurrentPosition, 100)
499
- this.Door.Service.updateCharacteristic(this.hap.Characteristic.PositionState, this.hap.Characteristic.PositionState.STOPPED)
500
- this.debugLog(`updateCharacteristicc TargetPosition: 100, CurrentPosition: 100 (${this.On})`)
501
- } else {
502
- this.Door.Service.updateCharacteristic(this.hap.Characteristic.TargetPosition, 0)
503
- this.Door.Service.updateCharacteristic(this.hap.Characteristic.CurrentPosition, 0)
504
- this.Door.Service.updateCharacteristic(this.hap.Characteristic.PositionState, this.hap.Characteristic.PositionState.STOPPED)
505
- this.debugLog(`updateCharacteristicc TargetPosition: 0, CurrentPosition: 0 (${this.On})`)
506
- }
507
- }
508
- this.debugLog(`Door On: ${this.On}`)
509
- } else if (this.otherDeviceType === 'Window' && this.Window) {
510
- if (this.On === undefined) {
511
- this.debugLog(`On: ${this.On}`)
512
- } else {
513
- if (this.On) {
514
- this.Window.Service.updateCharacteristic(this.hap.Characteristic.TargetPosition, 100)
515
- this.Window.Service.updateCharacteristic(this.hap.Characteristic.CurrentPosition, 100)
516
- this.Window.Service.updateCharacteristic(this.hap.Characteristic.PositionState, this.hap.Characteristic.PositionState.STOPPED)
517
- this.debugLog(`updateCharacteristicc TargetPosition: 100, CurrentPosition: 100 (${this.On})`)
518
- } else {
519
- this.Window.Service.updateCharacteristic(this.hap.Characteristic.TargetPosition, 0)
520
- this.Window.Service.updateCharacteristic(this.hap.Characteristic.CurrentPosition, 0)
521
- this.Window.Service.updateCharacteristic(this.hap.Characteristic.PositionState, this.hap.Characteristic.PositionState.STOPPED)
522
- this.debugLog(`updateCharacteristicc TargetPosition: 0, CurrentPosition: 0 (${this.On})`)
523
- }
524
- }
525
- this.debugLog(`Window On: ${this.On}`)
526
- } else if (this.otherDeviceType === 'WindowCovering' && this.WindowCovering) {
527
- if (this.On === undefined) {
528
- this.debugLog(`On: ${this.On}`)
529
- } else {
530
- if (this.On) {
531
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.TargetPosition, 100)
532
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.CurrentPosition, 100)
533
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.PositionState, this.hap.Characteristic.PositionState.STOPPED)
534
- this.debugLog(`updateCharacteristicc TargetPosition: 100, CurrentPosition: 100 (${this.On})`)
535
- } else {
536
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.TargetPosition, 0)
537
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.CurrentPosition, 0)
538
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.PositionState, this.hap.Characteristic.PositionState.STOPPED)
539
- this.debugLog(`updateCharacteristicc TargetPosition: 0, CurrentPosition: 0 (${this.On})`)
540
- }
541
- }
542
- this.debugLog(`Window Covering On: ${this.On}`)
543
- } else if (this.otherDeviceType === 'Lock' && this.LockMechanism) {
544
- if (this.On === undefined) {
545
- this.debugLog(`On: ${this.On}`)
546
- } else {
547
- if (this.On) {
548
- this.LockMechanism.Service.updateCharacteristic(this.hap.Characteristic.LockTargetState, this.hap.Characteristic.LockTargetState.UNSECURED)
549
- this.LockMechanism.Service.updateCharacteristic(this.hap.Characteristic.LockCurrentState, this.hap.Characteristic.LockCurrentState.UNSECURED)
550
- this.debugLog(`updateCharacteristicc LockTargetState: UNSECURED, LockCurrentState: UNSECURED (${this.On})`)
551
- } else {
552
- this.LockMechanism.Service.updateCharacteristic(this.hap.Characteristic.LockTargetState, this.hap.Characteristic.LockTargetState.SECURED)
553
- this.LockMechanism.Service.updateCharacteristic(this.hap.Characteristic.LockCurrentState, this.hap.Characteristic.LockCurrentState.SECURED)
554
- this.debugLog(`updateCharacteristic LockTargetState: SECURED, LockCurrentState: SECURED (${this.On})`)
555
- }
556
- }
557
- this.debugLog(`Lock On: ${this.On}`)
558
- } else if (this.otherDeviceType === 'Faucet' && this.Faucet) {
559
- if (this.On === undefined) {
560
- this.debugLog(`On: ${this.On}`)
561
- } else {
562
- if (this.On) {
563
- this.Faucet.Service.updateCharacteristic(this.hap.Characteristic.Active, this.hap.Characteristic.Active.ACTIVE)
564
- this.debugLog(`updateCharacteristic Active: ${this.On}`)
565
- } else {
566
- this.Faucet.Service.updateCharacteristic(this.hap.Characteristic.Active, this.hap.Characteristic.Active.INACTIVE)
567
- this.debugLog(`updateCharacteristic Active: ${this.On}`)
568
- }
569
- }
570
- this.debugLog(`Faucet On: ${this.On}`)
571
- } else if (this.otherDeviceType === 'Fan' && this.Fan) {
572
- if (this.On === undefined) {
573
- this.debugLog(`On: ${this.On}`)
574
- } else {
575
- if (this.On) {
576
- this.Fan.Service.updateCharacteristic(this.hap.Characteristic.Active, this.hap.Characteristic.Active.ACTIVE)
577
- this.debugLog(`updateCharacteristic Active: ${this.On}`)
578
- } else {
579
- this.Fan.Service.updateCharacteristic(this.hap.Characteristic.Active, this.hap.Characteristic.Active.INACTIVE)
580
- this.debugLog(`updateCharacteristic Active: ${this.On}`)
581
- }
582
- }
583
- this.debugLog(`Fan On: ${this.On}`)
584
- } else if (this.otherDeviceType === 'Stateful' && this.StatefulProgrammableSwitch) {
585
- if (this.On === undefined) {
586
- this.debugLog(`On: ${this.On}`)
587
- } else {
588
- if (this.On) {
589
- this.StatefulProgrammableSwitch.Service.updateCharacteristic(this.hap.Characteristic.ProgrammableSwitchEvent, this.hap.Characteristic.ProgrammableSwitchEvent.SINGLE_PRESS)
590
- this.StatefulProgrammableSwitch.Service.updateCharacteristic(this.hap.Characteristic.ProgrammableSwitchOutputState, 1)
591
- this.debugLog(`updateCharacteristic ProgrammableSwitchEvent: ProgrammableSwitchOutputState: (${this.On})`)
592
- } else {
593
- this.StatefulProgrammableSwitch.Service.updateCharacteristic(this.hap.Characteristic.ProgrammableSwitchEvent, this.hap.Characteristic.ProgrammableSwitchEvent.SINGLE_PRESS)
594
- this.StatefulProgrammableSwitch.Service.updateCharacteristic(this.hap.Characteristic.ProgrammableSwitchOutputState, 0)
595
- this.debugLog(`updateCharacteristic ProgrammableSwitchEvent: ProgrammableSwitchOutputState: (${this.On})`)
596
- }
597
- }
598
- this.debugLog(`StatefulProgrammableSwitch On: ${this.On}`)
599
- } else if (this.otherDeviceType === 'Outlet' && this.Outlet) {
600
- if (this.On === undefined) {
601
- this.debugLog(`On: ${this.On}`)
602
- } else {
603
- this.Outlet.Service.updateCharacteristic(this.hap.Characteristic.On, this.On)
604
- this.debugLog(`updateCharacteristic On: ${this.On}`)
605
- }
606
- } else {
607
- this.errorLog(`otherDeviceType: ${this.otherDeviceType}, On: ${this.On}`)
608
- }
609
- }
610
-
611
- async apiError(e: any): Promise<void> {
612
- if (this.otherDeviceType === 'GarageDoor') {
613
- if (this.GarageDoor) {
614
- this.GarageDoor.Service.updateCharacteristic(this.hap.Characteristic.TargetDoorState, e)
615
- this.GarageDoor.Service.updateCharacteristic(this.hap.Characteristic.CurrentDoorState, e)
616
- this.GarageDoor.Service.updateCharacteristic(this.hap.Characteristic.ObstructionDetected, e)
617
- }
618
- } else if (this.otherDeviceType === 'Door') {
619
- if (this.Door) {
620
- this.Door.Service.updateCharacteristic(this.hap.Characteristic.TargetPosition, e)
621
- this.Door.Service.updateCharacteristic(this.hap.Characteristic.CurrentPosition, e)
622
- this.Door.Service.updateCharacteristic(this.hap.Characteristic.PositionState, e)
623
- }
624
- } else if (this.otherDeviceType === 'Window') {
625
- if (this.Window) {
626
- this.Window.Service.updateCharacteristic(this.hap.Characteristic.TargetPosition, e)
627
- this.Window.Service.updateCharacteristic(this.hap.Characteristic.CurrentPosition, e)
628
- this.Window.Service.updateCharacteristic(this.hap.Characteristic.PositionState, e)
629
- }
630
- } else if (this.otherDeviceType === 'WindowCovering') {
631
- if (this.WindowCovering) {
632
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.TargetPosition, e)
633
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.CurrentPosition, e)
634
- this.WindowCovering.Service.updateCharacteristic(this.hap.Characteristic.PositionState, e)
635
- }
636
- } else if (this.otherDeviceType === 'Lock') {
637
- if (this.LockMechanism) {
638
- this.LockMechanism.Service.updateCharacteristic(this.hap.Characteristic.LockTargetState, e)
639
- this.LockMechanism.Service.updateCharacteristic(this.hap.Characteristic.LockCurrentState, e)
640
- }
641
- } else if (this.otherDeviceType === 'Faucet') {
642
- if (this.Faucet) {
643
- this.Faucet.Service.updateCharacteristic(this.hap.Characteristic.Active, e)
644
- }
645
- } else if (this.otherDeviceType === 'Fan') {
646
- if (this.Fan) {
647
- this.Fan.Service.updateCharacteristic(this.hap.Characteristic.On, e)
648
- }
649
- } else if (this.otherDeviceType === 'Stateful') {
650
- if (this.StatefulProgrammableSwitch) {
651
- this.StatefulProgrammableSwitch.Service.updateCharacteristic(this.hap.Characteristic.ProgrammableSwitchEvent, e)
652
- this.StatefulProgrammableSwitch.Service.updateCharacteristic(this.hap.Characteristic.ProgrammableSwitchOutputState, e)
653
- }
654
- } else if (this.otherDeviceType === 'Switch') {
655
- if (this.Switch) {
656
- this.Switch.Service.updateCharacteristic(this.hap.Characteristic.On, e)
657
- }
658
- } else {
659
- if (this.Outlet) {
660
- this.Outlet.Service.updateCharacteristic(this.hap.Characteristic.On, e)
661
- }
662
- }
663
- }
664
-
665
- async removeOutletService(accessory: PlatformAccessory): Promise<void> {
666
- // If Outlet.Service still present, then remove first
667
- accessory.context.Outlet = accessory.context.Outlet ?? {}
668
- this.Outlet = {
669
- Name: accessory.displayName,
670
- Service: accessory.getService(this.hap.Service.Outlet) as Service,
671
- }
672
- accessory.context.Outlet = this.Outlet as object
673
- this.warnLog('Removing any leftover Outlet Service')
674
- accessory.removeService(this.Outlet.Service)
675
- }
676
-
677
- async removeGarageDoorService(accessory: PlatformAccessory): Promise<void> {
678
- // If GarageDoor.Service still present, then remove first
679
- accessory.context.GarageDoor = accessory.context.GarageDoor ?? {}
680
- this.GarageDoor = {
681
- Name: accessory.displayName,
682
- Service: accessory.getService(this.hap.Service.GarageDoorOpener) as Service,
683
- }
684
- accessory.context.GarageDoor = this.GarageDoor as object
685
- this.warnLog('Removing any leftover Garage Door Service')
686
- accessory.removeService(this.GarageDoor.Service)
687
- }
688
-
689
- async removeDoorService(accessory: PlatformAccessory): Promise<void> {
690
- // If Door.Service still present, then remove first
691
- accessory.context.Door = accessory.context.Door ?? {}
692
- this.Door = {
693
- Name: accessory.displayName,
694
- Service: accessory.getService(this.hap.Service.Door) as Service,
695
- }
696
- accessory.context.Door = this.Door as object
697
- this.warnLog('Removing any leftover Door Service')
698
- accessory.removeService(this.Door.Service)
699
- }
700
-
701
- async removeLockService(accessory: PlatformAccessory): Promise<void> {
702
- // If Lock.Service still present, then remove first
703
- accessory.context.LockMechanism = accessory.context.LockMechanism ?? {}
704
- this.LockMechanism = {
705
- Name: accessory.displayName,
706
- Service: accessory.getService(this.hap.Service.LockMechanism) as Service,
707
- }
708
- accessory.context.LockMechanism = this.LockMechanism as object
709
- this.warnLog('Removing any leftover Lock Service')
710
- accessory.removeService(this.LockMechanism.Service)
711
- }
712
-
713
- async removeFaucetService(accessory: PlatformAccessory): Promise<void> {
714
- // If Faucet.Service still present, then remove first
715
- accessory.context.Faucet = accessory.context.Faucet ?? {}
716
- this.Faucet = {
717
- Name: accessory.displayName,
718
- Service: accessory.getService(this.hap.Service.Faucet) as Service,
719
- }
720
- accessory.context.Faucet = this.Faucet as object
721
- this.warnLog('Removing any leftover Faucet Service')
722
- accessory.removeService(this.Faucet.Service)
723
- }
724
-
725
- async removeFanService(accessory: PlatformAccessory): Promise<void> {
726
- // If Fan Service still present, then remove first
727
- accessory.context.Fan = accessory.context.Fan ?? {}
728
- this.Fan = {
729
- Name: accessory.displayName,
730
- Service: accessory.getService(this.hap.Service.Fanv2) as Service,
731
- }
732
- accessory.context.Fan = this.Fan as object
733
- this.warnLog('Removing any leftover Fan Service')
734
- accessory.removeService(this.Fan.Service)
735
- }
736
-
737
- async removeWindowService(accessory: PlatformAccessory): Promise<void> {
738
- // If Window.Service still present, then remove first
739
- accessory.context.Window = accessory.context.Window ?? {}
740
- this.Window = {
741
- Name: accessory.displayName,
742
- Service: accessory.getService(this.hap.Service.Window) as Service,
743
- }
744
- accessory.context.Window = this.Window as object
745
- this.warnLog('Removing any leftover Window Service')
746
- accessory.removeService(this.Window.Service)
747
- }
748
-
749
- async removeWindowCoveringService(accessory: PlatformAccessory): Promise<void> {
750
- // If WindowCovering.Service still present, then remove first
751
- accessory.context.WindowCovering = accessory.context.WindowCovering ?? {}
752
- this.WindowCovering = {
753
- Name: accessory.displayName,
754
- Service: accessory.getService(this.hap.Service.WindowCovering) as Service,
755
- }
756
- accessory.context.WindowCovering = this.WindowCovering as object
757
- this.warnLog('Removing any leftover Window Covering Service')
758
- accessory.removeService(this.WindowCovering.Service)
759
- }
760
-
761
- async removeStatefulProgrammableSwitchService(accessory: PlatformAccessory): Promise<void> {
762
- // If StatefulProgrammableSwitch.Service still present, then remove first
763
- accessory.context.StatefulProgrammableSwitch = accessory.context.StatefulProgrammableSwitch ?? {}
764
- this.StatefulProgrammableSwitch = {
765
- Name: accessory.displayName,
766
- Service: accessory.getService(this.hap.Service.StatefulProgrammableSwitch) as Service,
767
- }
768
- accessory.context.StatefulProgrammableSwitch = this.StatefulProgrammableSwitch as object
769
- this.warnLog('Removing any leftover Stateful Programmable Switch Service')
770
- accessory.removeService(this.StatefulProgrammableSwitch.Service)
771
- }
772
-
773
- async removeSwitchService(accessory: PlatformAccessory): Promise<void> {
774
- // If Switch.Service still present, then remove first
775
- accessory.context.Switch = accessory.context.Switch ?? {}
776
- this.Switch = {
777
- Name: accessory.displayName,
778
- Service: accessory.getService(this.hap.Service.Switch) as Service,
779
- }
780
- accessory.context.Switch = this.Switch as object
781
- this.warnLog('Removing any leftover Switch Service')
782
- accessory.removeService(this.Switch.Service)
783
- }
784
-
785
- async getOtherConfigSettings(accessory: PlatformAccessory, device: irdevice & irDevicesConfig): Promise<void> {
786
- this.otherDeviceType = (device as irOtherConfig).type ?? 'Outlet'
787
- const deviceType = (device as irOtherConfig).type ? 'Device Config' : 'Default'
788
- this.debugLog(`Use ${deviceType} Device Type: ${this.otherDeviceType}`)
789
- }
790
- }