homebridge-midea-platform 1.2.6-beta.16 → 1.2.6-beta.18

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 (41) hide show
  1. package/.luarc.json +5 -0
  2. package/README.md +1 -1
  3. package/c3_HeatPump_152832116442666.lua +4681 -0
  4. package/cd_RSJ000CB.lua +4983 -0
  5. package/config.schema.json +40 -0
  6. package/dist/accessory/AccessoryFactory.d.ts +4 -3
  7. package/dist/accessory/AccessoryFactory.js +3 -0
  8. package/dist/accessory/AccessoryFactory.js.map +1 -1
  9. package/dist/accessory/AirConditionerAccessory.js +3 -4
  10. package/dist/accessory/AirConditionerAccessory.js.map +1 -1
  11. package/dist/accessory/BaseAccessory.d.ts +1 -0
  12. package/dist/accessory/BaseAccessory.js +3 -0
  13. package/dist/accessory/BaseAccessory.js.map +1 -1
  14. package/dist/accessory/HeatPumpWaterHeaterAccessory.d.ts +45 -0
  15. package/dist/accessory/HeatPumpWaterHeaterAccessory.js +148 -0
  16. package/dist/accessory/HeatPumpWaterHeaterAccessory.js.map +1 -0
  17. package/dist/core/MideaConstants.d.ts +1 -0
  18. package/dist/core/MideaConstants.js +2 -0
  19. package/dist/core/MideaConstants.js.map +1 -1
  20. package/dist/devices/DeviceFactory.d.ts +2 -1
  21. package/dist/devices/DeviceFactory.js +5 -2
  22. package/dist/devices/DeviceFactory.js.map +1 -1
  23. package/dist/devices/c3/MideaC3Device.d.ts +3 -2
  24. package/dist/devices/c3/MideaC3Device.js +20 -7
  25. package/dist/devices/c3/MideaC3Device.js.map +1 -1
  26. package/dist/devices/c3/MideaC3Message.d.ts +128 -12
  27. package/dist/devices/c3/MideaC3Message.js +283 -35
  28. package/dist/devices/c3/MideaC3Message.js.map +1 -1
  29. package/dist/devices/cd/MideaCDDevice.d.ts +42 -0
  30. package/dist/devices/cd/MideaCDDevice.js +105 -0
  31. package/dist/devices/cd/MideaCDDevice.js.map +1 -0
  32. package/dist/devices/cd/MideaCDMessage.d.ts +101 -0
  33. package/dist/devices/cd/MideaCDMessage.js +237 -0
  34. package/dist/devices/cd/MideaCDMessage.js.map +1 -0
  35. package/dist/devices/ce/MideaCEDevice.js +1 -1
  36. package/dist/platform.js +0 -11
  37. package/dist/platform.js.map +1 -1
  38. package/dist/platformUtils.d.ts +7 -0
  39. package/dist/platformUtils.js +6 -0
  40. package/dist/platformUtils.js.map +1 -1
  41. package/package.json +1 -1
package/.luarc.json ADDED
@@ -0,0 +1,5 @@
1
+ {
2
+ "diagnostics.globals": [
3
+ "bit"
4
+ ]
5
+ }
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
  [![npm](https://badgen.net/npm/v/homebridge-midea-platform)](https://www.npmjs.com/package/homebridge-midea-platform)
9
9
  [![npm](https://badgen.net/npm/dt/homebridge-midea-platform?label=downloads)](https://www.npmjs.com/package/homebridge-midea-platform)
10
10
 
11
- *Verified* plugin for Midea devices. This is implemented by building on the Homebridge platform plugin template and the work done by [@georgezhao2010](https://github.com/georgezhao2010) in the [midea_ac_lan](https://github.com/georgezhao2010/midea_ac_lan) project for Home Assistant. Also thanks to the work done by [@mill1000](https://github.com/mill1000) in the [midea-msmart (msmart-ng)](https://github.com/mill1000/midea-msmart) project.
11
+ *Verified* plugin for Midea devices. This is implemented by building on the Homebridge platform plugin template and the work done by [@georgezhao2010](https://github.com/georgezhao2010) in the [midea_ac_lan](https://github.com/georgezhao2010/midea_ac_lan) project for Home Assistant and the project [midea-local](https://github.com/midea-lan/midea-local). Also thanks to the work done by [@mill1000](https://github.com/mill1000) in the [midea-msmart (msmart-ng)](https://github.com/mill1000/midea-msmart) project.
12
12
 
13
13
  Pull requests and/or other offers of development assistance gratefully received.
14
14