homebridge-midea-platform 1.2.5 → 1.2.6-beta.1
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.
- package/.zed/settings.json +12 -0
- package/CHANGELOG.md +3 -0
- package/README.md +1 -0
- package/ac.lua +5150 -0
- package/config.schema.json +56 -14
- package/dist/accessory/AccessoryFactory.d.ts +2 -1
- package/dist/accessory/AccessoryFactory.js +3 -0
- package/dist/accessory/AccessoryFactory.js.map +1 -1
- package/dist/accessory/FreshAirApplianceAccessory.d.ts +37 -0
- package/dist/accessory/FreshAirApplianceAccessory.js +140 -0
- package/dist/accessory/FreshAirApplianceAccessory.js.map +1 -0
- package/dist/core/MideaConstants.d.ts +4 -0
- package/dist/core/MideaConstants.js +14 -0
- package/dist/core/MideaConstants.js.map +1 -1
- package/dist/devices/DeviceFactory.d.ts +2 -1
- package/dist/devices/DeviceFactory.js +3 -0
- package/dist/devices/DeviceFactory.js.map +1 -1
- package/dist/devices/ce/MideaCEDevice.d.ts +34 -0
- package/dist/devices/ce/MideaCEDevice.js +98 -0
- package/dist/devices/ce/MideaCEDevice.js.map +1 -0
- package/dist/devices/ce/MideaCEMessage.d.ts +43 -0
- package/dist/devices/ce/MideaCEMessage.js +84 -0
- package/dist/devices/ce/MideaCEMessage.js.map +1 -0
- package/dist/platformUtils.d.ts +8 -0
- package/dist/platformUtils.js +7 -0
- package/dist/platformUtils.js.map +1 -1
- package/docs/ce.md +19 -0
- package/homebridge-ui/server.js +2 -33
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -29,6 +29,7 @@ Currently supports the following devices:
|
|
|
29
29
|
|--------|----|------|
|
|
30
30
|
| Air Conditioner | AC | [link](/docs/ac.md) |
|
|
31
31
|
| Dehumidifier | A1 | [link](/docs/a1.md) |
|
|
32
|
+
| Fresh Air Appliance | CE | [link](/docs/ce.md) |
|
|
32
33
|
| Front Load Washer | DB | [link](/docs/db.md) |
|
|
33
34
|
| Electric Water Heater | E2 | [link](/docs/e2.md) |
|
|
34
35
|
| Gas Water Heater | E3 | [link](/docs/e3.md) |
|