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