@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
package/src/utils.ts CHANGED
@@ -1,718 +1,50 @@
1
- /* Copyright(C) 2017-2024, donavanbecker (https://github.com/donavanbecker). All rights reserved.
2
- *
3
- * util.ts: @switchbot/homebridge-switchbot platform class.
4
- */
5
- import type { blindTilt, curtain, curtain3, device } from 'node-switchbot'
6
-
7
- import type { devicesConfig } from './settings.js'
8
-
9
- export enum BlindTiltMappingMode {
10
- OnlyUp = 'only_up',
11
- OnlyDown = 'only_down',
12
- DownAndUp = 'down_and_up',
13
- UpAndDown = 'up_and_down',
14
- UseTiltForDirection = 'use_tilt_for_direction',
15
- }
16
-
17
- export function isCurtainDevice(device: device & devicesConfig): device is (curtain | curtain3) & devicesConfig {
18
- return device.deviceType === 'Curtain' || device.deviceType === 'Curtain3'
19
- }
20
-
21
- export function isBlindTiltDevice(device: device & devicesConfig): device is blindTilt & devicesConfig {
22
- return device.deviceType === 'Blind Tilt'
23
- }
24
-
25
- export function sleep(ms: number): Promise<void> {
26
- return new Promise(resolve => setTimeout(resolve, ms))
27
- }
28
- /**
29
- * Check if the humidity is within the min and max range
30
- * @param humidity - The humidity value
31
- * @param min - The minimum humidity value
32
- * @param max - The maximum humidity value
33
- * @returns The humidity value
34
- */
35
- export function validHumidity(humidity: number, min?: number, max?: number): number {
36
- if (humidity < (min || 0)) {
37
- return min ?? 0
38
- } else if (humidity > (max || 100)) {
39
- return max ?? 100
40
- }
41
- return humidity
42
- }
43
-
44
- /**
45
- * Converts the value to celsius if the temperature units are in Fahrenheit
46
- */
47
- export function convertUnits(value: number, unit: string, convert?: string): number {
48
- if (unit === 'CELSIUS' && convert === 'CELSIUS') {
49
- return Math.round((value * 9) / 5 + 32)
50
- } else if (unit === 'FAHRENHEIT' && convert === 'FAHRENHEIT') {
51
- // celsius should be to the nearest 0.5 degree
52
- return Math.round((5 / 9) * (value - 32) * 2) / 2
53
- }
54
- return value
55
- }
56
-
57
- /**
58
- * Safely serializes an object to a JSON string, handling circular references.
59
- *
60
- * @param obj - The object to be serialized.
61
- * @returns The JSON string representation of the object.
62
- */
63
- export function safeStringify(obj: any) {
64
- const seen = new WeakSet()
65
- return JSON.stringify(obj, (_key, value) => {
66
- if (typeof value === 'object' && value !== null) {
67
- if (seen.has(value)) {
68
- return
69
- }
70
- seen.add(value)
71
- }
72
- return value
73
- }, ' ')
74
- }
75
-
76
- /**
77
- * Formats a device ID as a MAC address.
78
- * Ensures the device ID does not already contain colons.
79
- *
80
- * @param deviceId - The device ID to format.
81
- * @param cassSensative - If the MAC address should be case sensitive. Default is false, which will return the MAC address in lowercase.
82
- * @returns The formatted MAC address.
83
- * @throws Will throw an error if the device ID is not a valid MAC address or a 12-character hexadecimal string.
84
- */
85
- export function formatDeviceIdAsMac(deviceId: string, cassSensative?: boolean): string {
86
- if (typeof deviceId !== 'string') {
87
- throw new TypeError('Invalid device ID format. Device ID must be a string.')
88
- }
89
-
90
- deviceId = deviceId.trim()
91
-
92
- const macAddressRegex = /^(?:[0-9a-f]{2}:){5}[0-9a-f]{2}$/i
93
- const hexRegex = /^[0-9a-f]{12}$/i
94
- const vacuumFormatRegex = /^[a-z0-9]{12,18}$/i
95
-
96
- // Check if the deviceId is already in a valid MAC address format
97
- if (macAddressRegex.test(deviceId)) {
98
- return cassSensative ? deviceId : deviceId.toLowerCase()
99
- }
100
-
101
- // Check if the deviceId is a valid 12-character hexadecimal string
102
- if (hexRegex.test(deviceId)) {
103
- const formattedDeviceId = deviceId.match(/.{1,2}/g)!.join(':')
104
- return cassSensative ? formattedDeviceId : formattedDeviceId.toLowerCase()
105
- }
106
-
107
- // Check if the deviceId matches the custom format
108
- if (vacuumFormatRegex.test(deviceId)) {
109
- const formattedDeviceId = deviceId.slice(-12).match(/.{1,2}/g)!.join(':')
110
- return cassSensative ? formattedDeviceId : formattedDeviceId.toLowerCase()
111
- }
112
-
113
- throw new Error(`Invalid device ID format. Must be a valid MAC address, a 12-character hexadecimal string, or a 12 to 18-character alphanumeric string. Device ID: ${deviceId}`)
114
- }
115
-
116
- export function rgb2hs(r: any, g: any, b: any) {
117
- /**
118
- * Credit:
119
- * https://github.com/WickyNilliams/pure-color
120
- */
121
- r = Number.parseInt(r)
122
- g = Number.parseInt(g)
123
- b = Number.parseInt(b)
124
- const min = Math.min(r, g, b)
125
- const max = Math.max(r, g, b)
126
- const delta = max - min
127
- let h
128
- let s
129
- if (max === 0) {
130
- s = 0
131
- } else {
132
- s = (delta / max) * 100
133
- }
134
- if (max === min) {
135
- h = 0
136
- } else if (r === max) {
137
- h = (g - b) / delta
138
- } else if (g === max) {
139
- h = 2 + (b - r) / delta
140
- } else if (b === max) {
141
- h = 4 + (r - g) / delta
142
- }
143
- h = Math.min(h * 60, 360)
144
-
145
- if (h < 0) {
146
- h += 360
147
- }
148
- return [Math.round(h), Math.round(s)]
149
- }
150
-
151
- export function hs2rgb(h: any, s: any) {
152
- /*
153
- Credit:
154
- https://github.com/WickyNilliams/pure-color
155
- */
156
- h = Number.parseInt(h) / 60
157
- s = Number.parseInt(s) / 100
158
- const f = h - Math.floor(h)
159
- const p = 255 * (1 - s)
160
- const q = 255 * (1 - s * f)
161
- const t = 255 * (1 - s * (1 - f))
162
- let rgb
163
- switch (Math.floor(h) % 6) {
164
- case 0:
165
- rgb = [255, t, p]
166
- break
167
- case 1:
168
- rgb = [q, 255, p]
169
- break
170
- case 2:
171
- rgb = [p, 255, t]
172
- break
173
- case 3:
174
- rgb = [p, q, 255]
175
- break
176
- case 4:
177
- rgb = [t, p, 255]
178
- break
179
- case 5:
180
- rgb = [255, p, q]
181
- break
182
- }
183
- if (rgb[0] === 255) {
184
- rgb[1] *= 0.8
185
- rgb[2] *= 0.8
186
- if (rgb[1] <= 25 && rgb[2] <= 25) {
187
- rgb[1] = 0
188
- rgb[2] = 0
189
- }
190
- }
191
- return [Math.round(rgb[0]), Math.round(rgb[1]), Math.round(rgb[2])]
192
- }
193
-
194
- export function k2rgb(k: number) {
195
- // Set kelvin to nearest 100, between 2000 and 7100
196
- k = Math.round(k / 100) * 100
197
- k = Math.max(Math.min(k, 7100), 2000)
198
-
199
- // k should now appear in our table of kelvin to rgb
200
- const values = {
201
- 2000: [255, 141, 11],
202
- 2100: [255, 146, 29],
203
- 2200: [255, 147, 44],
204
- 2300: [255, 152, 54],
205
- 2400: [255, 157, 63],
206
- 2500: [255, 166, 69],
207
- 2600: [255, 170, 77],
208
- 2700: [255, 174, 84],
209
- 2800: [255, 173, 94],
210
- 2900: [255, 177, 101],
211
- 3000: [255, 180, 107],
212
- 3100: [255, 189, 111],
213
- 3200: [255, 187, 120],
214
- 3300: [255, 195, 124],
215
- 3400: [255, 198, 130],
216
- 3500: [255, 201, 135],
217
- 3600: [255, 203, 141],
218
- 3700: [255, 206, 146],
219
- 3800: [255, 204, 153],
220
- 3900: [255, 206, 159],
221
- 4000: [255, 213, 161],
222
- 4100: [255, 215, 166],
223
- 4200: [255, 217, 171],
224
- 4300: [255, 219, 175],
225
- 4400: [255, 221, 180],
226
- 4500: [255, 223, 184],
227
- 4600: [255, 225, 188],
228
- 4700: [255, 226, 192],
229
- 4800: [255, 228, 196],
230
- 4900: [255, 229, 200],
231
- 5000: [255, 231, 204],
232
- 5100: [255, 230, 210],
233
- 5200: [255, 234, 211],
234
- 5300: [255, 235, 215],
235
- 5400: [255, 237, 218],
236
- 5500: [255, 236, 224],
237
- 5700: [255, 240, 228],
238
- 5800: [255, 241, 231],
239
- 5900: [255, 243, 234],
240
- 6000: [255, 244, 237],
241
- 6100: [255, 245, 240],
242
- 6200: [255, 246, 243],
243
- 6300: [255, 247, 247],
244
- 6400: [255, 248, 251],
245
- 6500: [255, 249, 253],
246
- 6600: [254, 249, 255],
247
- 6700: [252, 247, 255],
248
- 6800: [249, 246, 255],
249
- 6900: [247, 245, 255],
250
- 7000: [245, 243, 255],
251
- 7100: [243, 242, 255],
252
- }
253
-
254
- // Return the value
255
- return values[k]
256
- }
257
-
258
- export function m2hs(m) {
259
- /*
260
- Credit:
261
- https://github.com/homebridge/HAP-NodeJS
262
- */
263
- const table = {
264
- 100: [19, 222.1],
265
- 101: [18.7, 222.2],
266
- 102: [18.4, 222.3],
267
- 103: [18.2, 222.3],
268
- 104: [17.9, 222.4],
269
- 105: [17.6, 222.5],
270
- 106: [17.3, 222.7],
271
- 107: [17, 222.8],
272
- 108: [16.7, 222.9],
273
- 109: [16.4, 223],
274
- 110: [16.1, 223.2],
275
- 111: [15.8, 223.3],
276
- 112: [15.4, 223.4],
277
- 113: [15.2, 223.6],
278
- 114: [14.9, 223.8],
279
- 115: [14.7, 223.9],
280
- 116: [14.3, 224.1],
281
- 117: [14.1, 224.2],
282
- 118: [13.8, 224.4],
283
- 119: [13.5, 224.6],
284
- 120: [13.2, 224.8],
285
- 121: [12.9, 225],
286
- 122: [12.5, 225.3],
287
- 123: [12.2, 225.6],
288
- 124: [11.8, 225.9],
289
- 125: [11.4, 226.3],
290
- 126: [11.1, 226.7],
291
- 127: [10.7, 227.1],
292
- 128: [10.3, 227.6],
293
- 129: [9.9, 228],
294
- 130: [9.6, 228.5],
295
- 131: [9.3, 229.1],
296
- 132: [8.9, 229.6],
297
- 133: [8.5, 230.2],
298
- 134: [8.2, 230.9],
299
- 135: [7.8, 231.6],
300
- 136: [7.5, 232.5],
301
- 137: [7.1, 233.5],
302
- 138: [6.7, 234.6],
303
- 139: [6.3, 235.8],
304
- 140: [6, 237.1],
305
- 141: [5.6, 238.9],
306
- 142: [5.2, 240.9],
307
- 143: [5, 242.9],
308
- 144: [4.8, 244.9],
309
- 145: [4.6, 246.9],
310
- 146: [4.4, 249.3],
311
- 147: [4.3, 251.9],
312
- 148: [4.1, 254.9],
313
- 149: [3.9, 258],
314
- 150: [3.7, 261.8],
315
- 151: [3.4, 265.9],
316
- 152: [3.2, 271],
317
- 153: [3, 276.4],
318
- 154: [2.8, 283.6],
319
- 155: [2.6, 290.4],
320
- 156: [2.3, 295.3],
321
- 157: [2.1, 300],
322
- 158: [1.9, 300],
323
- 159: [1.6, 300],
324
- 160: [1.4, 195.8],
325
- 161: [1.2, 84.3],
326
- 162: [1.3, 58.2],
327
- 163: [1.5, 55.9],
328
- 164: [1.7, 53.2],
329
- 165: [1.9, 50.2],
330
- 166: [2.1, 47.1],
331
- 167: [2.4, 44.5],
332
- 168: [2.6, 42.6],
333
- 169: [2.9, 40.9],
334
- 170: [3.1, 39.5],
335
- 171: [3.4, 38.3],
336
- 172: [3.7, 37.3],
337
- 173: [3.9, 36.5],
338
- 174: [4.2, 35.7],
339
- 175: [4.4, 35.1],
340
- 176: [4.6, 34.5],
341
- 177: [4.9, 34],
342
- 178: [5.1, 33.5],
343
- 179: [5.3, 33],
344
- 180: [5.6, 32.7],
345
- 181: [5.8, 32.3],
346
- 182: [6, 32],
347
- 183: [6.3, 31.7],
348
- 184: [6.5, 31.4],
349
- 185: [6.7, 31.2],
350
- 186: [7, 30.9],
351
- 187: [7.2, 30.7],
352
- 188: [7.4, 30.5],
353
- 189: [7.6, 30.3],
354
- 190: [7.9, 30.1],
355
- 191: [8.1, 29.9],
356
- 192: [8.4, 29.7],
357
- 193: [8.6, 29.6],
358
- 194: [8.9, 29.5],
359
- 195: [9.1, 29.3],
360
- 196: [9.4, 29.2],
361
- 197: [9.6, 29.1],
362
- 198: [9.8, 29],
363
- 199: [10, 28.9],
364
- 200: [10.2, 28.7],
365
- 201: [10.5, 28.7],
366
- 202: [10.7, 28.6],
367
- 203: [11, 28.5],
368
- 204: [11.2, 28.4],
369
- 205: [11.4, 28.3],
370
- 206: [11.6, 28.3],
371
- 207: [11.8, 28.2],
372
- 208: [12.1, 28.1],
373
- 209: [12.3, 28.1],
374
- 210: [12.5, 28],
375
- 211: [12.7, 28],
376
- 212: [12.9, 27.9],
377
- 213: [13.2, 27.8],
378
- 214: [13.4, 27.8],
379
- 215: [13.6, 27.7],
380
- 216: [13.8, 27.7],
381
- 217: [14, 27.7],
382
- 218: [14.3, 27.6],
383
- 219: [14.5, 27.6],
384
- 220: [14.7, 27.5],
385
- 221: [14.9, 27.5],
386
- 222: [15.1, 27.5],
387
- 223: [15.3, 27.4],
388
- 224: [15.5, 27.4],
389
- 225: [15.8, 27.4],
390
- 226: [16, 27.3],
391
- 227: [16.2, 27.3],
392
- 228: [16.4, 27.3],
393
- 229: [16.6, 27.3],
394
- 230: [16.8, 27.2],
395
- 231: [17, 27.2],
396
- 232: [17.2, 27.2],
397
- 233: [17.4, 27.2],
398
- 234: [17.6, 27.2],
399
- 235: [17.8, 27.1],
400
- 236: [18, 27.1],
401
- 237: [18.2, 27.1],
402
- 238: [18.4, 27.1],
403
- 239: [18.7, 27.1],
404
- 240: [18.8, 27],
405
- 241: [19, 27],
406
- 242: [19.2, 27],
407
- 243: [19.4, 27],
408
- 244: [19.6, 27],
409
- 245: [19.8, 27],
410
- 246: [20, 27],
411
- 247: [20.3, 26.9],
412
- 248: [20.5, 26.9],
413
- 249: [20.6, 26.9],
414
- 250: [20.8, 26.9],
415
- 251: [21, 26.9],
416
- 252: [21.3, 26.9],
417
- 253: [21.5, 26.9],
418
- 254: [21.6, 26.9],
419
- 255: [21.8, 26.8],
420
- 256: [22, 26.8],
421
- 257: [22.2, 26.8],
422
- 258: [22.4, 26.8],
423
- 259: [22.6, 26.8],
424
- 260: [22.8, 26.8],
425
- 261: [23, 26.8],
426
- 262: [23.2, 26.8],
427
- 263: [23.4, 26.8],
428
- 264: [23.6, 26.8],
429
- 265: [23.8, 26.8],
430
- 266: [24, 26.8],
431
- 267: [24.1, 26.8],
432
- 268: [24.3, 26.8],
433
- 269: [24.5, 26.8],
434
- 270: [24.7, 26.8],
435
- 271: [24.8, 26.8],
436
- 272: [25.1, 26.7],
437
- 273: [25.3, 26.7],
438
- 274: [25.4, 26.7],
439
- 275: [25.6, 26.7],
440
- 276: [25.8, 26.7],
441
- 277: [26, 26.7],
442
- 278: [26.1, 26.7],
443
- 279: [26.3, 26.7],
444
- 280: [26.5, 26.7],
445
- 281: [26.7, 26.7],
446
- 282: [26.9, 26.7],
447
- 283: [27.1, 26.7],
448
- 284: [27.3, 26.7],
449
- 285: [27.5, 26.7],
450
- 286: [27.7, 26.7],
451
- 287: [27.8, 26.7],
452
- 288: [28, 26.7],
453
- 289: [28.2, 26.7],
454
- 290: [28.4, 26.7],
455
- 291: [28.6, 26.7],
456
- 292: [28.8, 26.7],
457
- 293: [28.9, 26.7],
458
- 294: [29.1, 26.7],
459
- 295: [29.3, 26.7],
460
- 296: [29.5, 26.7],
461
- 297: [29.6, 26.7],
462
- 298: [29.8, 26.7],
463
- 299: [30, 26.7],
464
- 300: [30.2, 26.7],
465
- 301: [30.4, 26.7],
466
- 302: [30.5, 26.7],
467
- 303: [30.7, 26.7],
468
- 304: [30.9, 26.7],
469
- 305: [31.1, 26.7],
470
- 306: [31.2, 26.7],
471
- 307: [31.4, 26.7],
472
- 308: [31.6, 26.7],
473
- 309: [31.8, 26.8],
474
- 310: [31.9, 26.8],
475
- 311: [32.1, 26.8],
476
- 312: [32.3, 26.8],
477
- 313: [32.5, 26.8],
478
- 314: [32.6, 26.8],
479
- 315: [32.8, 26.8],
480
- 316: [33, 26.8],
481
- 317: [33.2, 26.8],
482
- 318: [33.3, 26.8],
483
- 319: [33.5, 26.8],
484
- 320: [33.7, 26.8],
485
- 321: [33.8, 26.8],
486
- 322: [34, 26.8],
487
- 323: [34.2, 26.8],
488
- 324: [34.4, 26.8],
489
- 325: [34.5, 26.8],
490
- 326: [34.7, 26.8],
491
- 327: [34.9, 26.8],
492
- 328: [35.1, 26.8],
493
- 329: [35.2, 26.8],
494
- 330: [35.4, 26.8],
495
- 331: [35.5, 26.8],
496
- 332: [35.7, 26.8],
497
- 333: [35.9, 26.8],
498
- 334: [36.1, 26.8],
499
- 335: [36.3, 26.9],
500
- 336: [36.5, 26.9],
501
- 337: [36.7, 26.9],
502
- 338: [36.9, 26.9],
503
- 339: [37.1, 26.9],
504
- 340: [37.2, 26.9],
505
- 341: [37.4, 26.9],
506
- 342: [37.5, 26.9],
507
- 343: [37.7, 26.9],
508
- 344: [37.9, 26.9],
509
- 345: [38.1, 26.9],
510
- 346: [38.3, 26.9],
511
- 347: [38.5, 26.9],
512
- 348: [38.7, 26.9],
513
- 349: [38.9, 26.9],
514
- 350: [39, 26.9],
515
- 351: [39.2, 26.9],
516
- 352: [39.3, 27],
517
- 353: [39.5, 27],
518
- 354: [39.7, 27],
519
- 355: [39.9, 27],
520
- 356: [40.1, 27],
521
- 357: [40.2, 27],
522
- 358: [40.4, 27],
523
- 359: [40.6, 27],
524
- 360: [40.8, 27],
525
- 361: [40.9, 27],
526
- 362: [41.1, 27],
527
- 363: [41.2, 27],
528
- 364: [41.4, 27],
529
- 365: [41.6, 27],
530
- 366: [41.8, 27],
531
- 367: [42, 27],
532
- 368: [42.1, 27.1],
533
- 369: [42.3, 27.1],
534
- 370: [42.4, 27.1],
535
- 371: [42.6, 27.1],
536
- 372: [42.8, 27.1],
537
- 373: [43, 27.1],
538
- 374: [43.1, 27.1],
539
- 375: [43.2, 27.1],
540
- 376: [43.4, 27.1],
541
- 377: [43.6, 27.1],
542
- 378: [43.8, 27.1],
543
- 379: [43.9, 27.1],
544
- 380: [44.1, 27.1],
545
- 381: [44.3, 27.2],
546
- 382: [44.4, 27.2],
547
- 383: [44.6, 27.2],
548
- 384: [44.7, 27.2],
549
- 385: [44.9, 27.2],
550
- 386: [45.1, 27.2],
551
- 387: [45.3, 27.2],
552
- 388: [45.5, 27.2],
553
- 389: [45.6, 27.2],
554
- 390: [45.8, 27.2],
555
- 391: [46, 27.2],
556
- 392: [46.2, 27.3],
557
- 393: [46.4, 27.3],
558
- 394: [46.5, 27.3],
559
- 395: [46.7, 27.3],
560
- 396: [46.9, 27.3],
561
- 397: [47.1, 27.3],
562
- 398: [47.2, 27.3],
563
- 399: [47.4, 27.3],
564
- 400: [47.6, 27.3],
565
- 401: [47.7, 27.3],
566
- 402: [47.9, 27.3],
567
- 403: [48.1, 27.3],
568
- 404: [48.3, 27.3],
569
- 405: [48.5, 27.4],
570
- 406: [48.7, 27.4],
571
- 407: [48.8, 27.4],
572
- 408: [49, 27.4],
573
- 409: [49.2, 27.4],
574
- 410: [49.4, 27.4],
575
- 411: [49.6, 27.4],
576
- 412: [49.7, 27.4],
577
- 413: [49.9, 27.4],
578
- 414: [50.1, 27.4],
579
- 415: [50.2, 27.4],
580
- 416: [50.4, 27.4],
581
- 417: [50.6, 27.5],
582
- 418: [50.7, 27.5],
583
- 419: [50.9, 27.5],
584
- 420: [51.1, 27.5],
585
- 421: [51.2, 27.5],
586
- 422: [51.4, 27.5],
587
- 423: [51.6, 27.5],
588
- 424: [51.7, 27.5],
589
- 425: [51.9, 27.5],
590
- 426: [52.1, 27.5],
591
- 427: [51.2, 27.6],
592
- 428: [52.4, 27.6],
593
- 429: [52.5, 27.6],
594
- 430: [52.7, 27.6],
595
- 431: [52.9, 27.6],
596
- 432: [53.1, 27.6],
597
- 433: [53.2, 27.6],
598
- 434: [53.4, 27.6],
599
- 435: [53.6, 27.6],
600
- 436: [53.7, 27.6],
601
- 437: [53.9, 27.6],
602
- 438: [54.1, 27.7],
603
- 439: [54.2, 27.7],
604
- 440: [54.3, 27.7],
605
- 441: [54.5, 27.7],
606
- 442: [54.7, 27.7],
607
- 443: [54.8, 27.7],
608
- 444: [55, 27.7],
609
- 445: [55.2, 27.7],
610
- 446: [55.3, 27.7],
611
- 447: [55.5, 27.7],
612
- 448: [55.7, 27.7],
613
- 449: [55.8, 27.8],
614
- 450: [56, 27.8],
615
- 451: [56.2, 27.8],
616
- 452: [56.3, 27.8],
617
- 453: [56.5, 27.8],
618
- 454: [56.7, 27.8],
619
- 455: [56.8, 27.8],
620
- 456: [57, 27.8],
621
- 457: [57.2, 27.8],
622
- 458: [57.3, 27.9],
623
- 459: [57.4, 27.9],
624
- 460: [57.6, 27.9],
625
- 461: [57.8, 27.9],
626
- 462: [57.9, 27.9],
627
- 463: [58.1, 27.9],
628
- 464: [58.3, 27.9],
629
- 465: [58.4, 27.9],
630
- 466: [58.6, 27.9],
631
- 467: [58.8, 27.9],
632
- 468: [59, 28],
633
- 469: [59.1, 28],
634
- 470: [59.2, 28],
635
- 471: [59.4, 28],
636
- 472: [59.6, 28],
637
- 473: [59.7, 28],
638
- 474: [60, 28],
639
- 475: [60.1, 28],
640
- 476: [60.2, 28],
641
- 477: [60.4, 28],
642
- 478: [60.6, 28.1],
643
- 479: [60.7, 28.1],
644
- 480: [60.9, 28.1],
645
- 481: [60.1, 28.1],
646
- 482: [60.3, 28.1],
647
- 483: [61.4, 28.1],
648
- 484: [61.5, 28.1],
649
- 485: [61.7, 28.1],
650
- 486: [61.9, 28.1],
651
- 487: [62, 28.2],
652
- 488: [62.2, 28.2],
653
- 489: [62.3, 28.2],
654
- 490: [62.5, 28.2],
655
- 491: [62.7, 28.2],
656
- 492: [62.8, 28.2],
657
- 493: [63, 28.2],
658
- 494: [63.2, 28.2],
659
- 495: [63.3, 28.2],
660
- 496: [63.4, 28.2],
661
- 497: [63.6, 28.2],
662
- 498: [63.8, 28.3],
663
- 499: [63.9, 28.3],
664
- 500: [64.1, 28.3],
665
- }
666
- const input = Math.min(Math.max(Math.round(m), 140), 500)
667
- const toReturn = table[input]
668
- return [Math.round(toReturn[1]), Math.round(toReturn[0])]
669
- }
670
-
671
- /**
672
- * Remove deviceConfig entries that contain only default/empty values.
673
- * Returns undefined if nothing meaningful remains.
674
- */
675
- export function cleanDeviceConfig(deviceConfig?: Record<string, Record<string, any>>): Record<string, Record<string, any>> | undefined {
676
- if (!deviceConfig || typeof deviceConfig !== 'object') {
677
- return undefined
678
- }
679
-
680
- const cleaned: Record<string, Record<string, any>> = {}
681
-
682
- for (const [deviceName, cfg] of Object.entries(deviceConfig)) {
683
- if (!cfg || typeof cfg !== 'object') {
684
- continue
685
- }
686
-
687
- const hasMeaningful = Object.values(cfg).some((v) => {
688
- if (v === null || v === undefined) {
689
- return false
1
+ import type { PlatformConfig } from 'homebridge'
2
+ import type { SwitchBotPluginConfig } from './settings'
3
+
4
+ // Canonical Matter cluster ID mapping (from matter.js clusters)
5
+ export const MATTER_CLUSTER_IDS = {
6
+ OnOff: 0x0006,
7
+ LevelControl: 0x0008,
8
+ ColorControl: 0x0300,
9
+ WindowCovering: 0x0102,
10
+ DoorLock: 0x0101,
11
+ FanControl: 0x0202,
12
+ RelativeHumidityMeasurement: 0x0405,
13
+ } as const
14
+
15
+ // Common Matter attribute IDs grouped by cluster
16
+ export const MATTER_ATTRIBUTE_IDS = {
17
+ OnOff: { OnOff: 0x0000 },
18
+ LevelControl: { CurrentLevel: 0x0000 },
19
+ ColorControl: { CurrentHue: 0x0000, CurrentSaturation: 0x0001, ColorTemperatureMireds: 0x0002 },
20
+ WindowCovering: { CurrentPosition: 0x0000, TargetPosition: 0x0001 },
21
+ FanControl: { SpeedCurrent: 0x0000 },
22
+ DoorLock: { LockState: 0x0000 },
23
+ RelativeHumidityMeasurement: { MeasuredValue: 0x0000 },
24
+ } as const
25
+
26
+ export function normalizeConfig(raw?: PlatformConfig): SwitchBotPluginConfig {
27
+ if (!raw) return {}
28
+ return { ...(raw as any) } as SwitchBotPluginConfig
29
+ }
30
+
31
+ // Create a Proxy constructor that instantiates the right platform implementation at runtime.
32
+ export function createPlatformProxy(HAPPlatform: any, MatterPlatform: any): any {
33
+ return class SwitchBotPlatformProxy {
34
+ private impl: any
35
+ constructor(log: any, config: PlatformConfig, api: any) {
36
+ const cfg = normalizeConfig(config)
37
+ const preferMatter = cfg.preferMatter ?? true
38
+ const enableMatter = cfg.enableMatter ?? true
39
+
40
+ if (enableMatter && preferMatter && MatterPlatform) {
41
+ this.impl = new MatterPlatform(log, cfg, api)
42
+ return this.impl
690
43
  }
691
- if (typeof v === 'boolean') {
692
- return v === true
693
- }
694
- if (typeof v === 'string') {
695
- return v.trim().length > 0
696
- }
697
- if (typeof v === 'number') {
698
- return Number.isFinite(v)
699
- }
700
- if (Array.isArray(v)) {
701
- return v.length > 0
702
- }
703
- if (typeof v === 'object') {
704
- return Object.keys(v).length > 0
705
- }
706
- return true
707
- })
708
44
 
709
- if (hasMeaningful) {
710
- cleaned[deviceName] = cfg
45
+ // Fallback to HAP
46
+ this.impl = new HAPPlatform(log, cfg, api)
47
+ return this.impl
711
48
  }
712
49
  }
713
-
714
- if (Object.keys(cleaned).length > 0) {
715
- return cleaned
716
- }
717
- return undefined
718
50
  }