homebridge-midea-platform 1.1.0-beta.4 → 1.1.0

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 (72) hide show
  1. package/.husky/pre-commit +0 -0
  2. package/CHANGELOG.md +3 -0
  3. package/config.schema.json +8 -1
  4. package/dist/accessory/AccessoryFactory.d.ts +11 -11
  5. package/dist/accessory/AccessoryFactory.js +28 -28
  6. package/dist/accessory/AirConditionerAccessory.d.ts +86 -86
  7. package/dist/accessory/AirConditionerAccessory.d.ts.map +1 -1
  8. package/dist/accessory/AirConditionerAccessory.js +560 -561
  9. package/dist/accessory/AirConditionerAccessory.js.map +1 -1
  10. package/dist/accessory/BaseAccessory.d.ts +11 -11
  11. package/dist/accessory/BaseAccessory.js +21 -21
  12. package/dist/accessory/DehumidifierAccessory.d.ts +45 -45
  13. package/dist/accessory/DehumidifierAccessory.js +343 -343
  14. package/dist/accessory/ElectricWaterHeaterAccessory.d.ts +44 -44
  15. package/dist/accessory/ElectricWaterHeaterAccessory.js +176 -176
  16. package/dist/accessory/FanAccessory.d.ts +39 -39
  17. package/dist/accessory/FanAccessory.js +123 -123
  18. package/dist/accessory/GasWaterHeaterAccessory.d.ts +51 -51
  19. package/dist/accessory/GasWaterHeaterAccessory.js +216 -216
  20. package/dist/core/MideaCloud.d.ts +35 -35
  21. package/dist/core/MideaCloud.js +350 -350
  22. package/dist/core/MideaConstants.d.ts +48 -48
  23. package/dist/core/MideaConstants.js +56 -56
  24. package/dist/core/MideaDevice.d.ts +76 -76
  25. package/dist/core/MideaDevice.js +409 -409
  26. package/dist/core/MideaDiscover.d.ts +35 -35
  27. package/dist/core/MideaDiscover.js +212 -212
  28. package/dist/core/MideaMessage.d.ts +75 -75
  29. package/dist/core/MideaMessage.js +184 -184
  30. package/dist/core/MideaPacketBuilder.d.ts +10 -10
  31. package/dist/core/MideaPacketBuilder.js +60 -60
  32. package/dist/core/MideaSecurity.d.ts +63 -63
  33. package/dist/core/MideaSecurity.js +242 -242
  34. package/dist/core/MideaUtils.d.ts +32 -32
  35. package/dist/core/MideaUtils.js +181 -181
  36. package/dist/devices/DeviceFactory.d.ts +11 -11
  37. package/dist/devices/DeviceFactory.js +30 -30
  38. package/dist/devices/a1/MideaA1Device.d.ts +76 -76
  39. package/dist/devices/a1/MideaA1Device.js +136 -136
  40. package/dist/devices/a1/MideaA1Message.d.ts +40 -40
  41. package/dist/devices/a1/MideaA1Message.js +198 -198
  42. package/dist/devices/ac/MideaACDevice.d.ts +100 -98
  43. package/dist/devices/ac/MideaACDevice.d.ts.map +1 -1
  44. package/dist/devices/ac/MideaACDevice.js +370 -357
  45. package/dist/devices/ac/MideaACDevice.js.map +1 -1
  46. package/dist/devices/ac/MideaACMessage.d.ts +92 -92
  47. package/dist/devices/ac/MideaACMessage.js +589 -589
  48. package/dist/devices/e2/MideaE2Device.d.ts +44 -44
  49. package/dist/devices/e2/MideaE2Device.js +119 -119
  50. package/dist/devices/e2/MideaE2Message.d.ts +33 -33
  51. package/dist/devices/e2/MideaE2Message.js +132 -132
  52. package/dist/devices/e3/MideaE3Device.d.ts +43 -43
  53. package/dist/devices/e3/MideaE3Device.js +125 -125
  54. package/dist/devices/e3/MideaE3Message.d.ts +51 -51
  55. package/dist/devices/e3/MideaE3Message.js +136 -136
  56. package/dist/devices/fa/MideaFADevice.d.ts +36 -36
  57. package/dist/devices/fa/MideaFADevice.js +92 -92
  58. package/dist/devices/fa/MideaFAMessage.d.ts +38 -38
  59. package/dist/devices/fa/MideaFAMessage.js +98 -98
  60. package/dist/index.d.ts +6 -6
  61. package/dist/index.js +6 -6
  62. package/dist/platform.d.ts +60 -60
  63. package/dist/platform.js +213 -213
  64. package/dist/platformUtils.d.ts +97 -96
  65. package/dist/platformUtils.d.ts.map +1 -1
  66. package/dist/platformUtils.js +95 -94
  67. package/dist/platformUtils.js.map +1 -1
  68. package/dist/settings.d.ts +8 -8
  69. package/dist/settings.js +11 -11
  70. package/docs/ac.md +2 -0
  71. package/docs/fa.md +3 -0
  72. package/package.json +1 -1
@@ -1,44 +1,44 @@
1
- /***********************************************************************
2
- * Midea Gas Water Heater Device class
3
- *
4
- * Copyright (c) 2024 Kovalovszky Patrik, https://github.com/kovapatrik
5
- *
6
- * With thanks to https://github.com/georgezhao2010/midea_ac_lan
7
- *
8
- */
9
- /// <reference types="node" />
10
- import { Logger } from 'homebridge';
11
- import MideaDevice, { DeviceAttributeBase } from '../../core/MideaDevice';
12
- import { DeviceInfo } from '../../core/MideaConstants';
13
- import { Config, DeviceConfig } from '../../platformUtils';
14
- import { MessageRequest } from '../../core/MideaMessage';
15
- import { MessageSet } from './MideaE3Message';
16
- export interface E3Attributes extends DeviceAttributeBase {
17
- POWER: boolean;
18
- BURNING_STATE: boolean;
19
- ZERO_COLD_WATER: boolean;
20
- PROTECTION: boolean;
21
- ZERO_COLD_PULSE: boolean;
22
- SMART_VOLUME: boolean;
23
- CURRENT_TEMPERATURE?: number;
24
- TARGET_TEMPERATURE: number;
25
- }
26
- export default class MideaE3Device extends MideaDevice {
27
- attributes: E3Attributes;
28
- private _old_subtypes;
29
- private _precision_halves;
30
- /*********************************************************************
31
- * Constructor initializes all the attributes. We set some to invalid
32
- * values so that they are detected as "changed" on the first status
33
- * refresh... and passed back to the Homebridge/HomeKit accessory callback
34
- * function to set their initial values.
35
- */
36
- constructor(logger: Logger, device_info: DeviceInfo, config: Config, deviceConfig: DeviceConfig);
37
- get precision_halves(): boolean;
38
- build_query(): MessageRequest[];
39
- process_message(msg: Buffer): void;
40
- make_message_set(): MessageSet;
41
- set_attribute(attributes: Partial<E3Attributes>): Promise<void>;
42
- protected set_subtype(): void;
43
- }
1
+ /***********************************************************************
2
+ * Midea Gas Water Heater Device class
3
+ *
4
+ * Copyright (c) 2024 Kovalovszky Patrik, https://github.com/kovapatrik
5
+ *
6
+ * With thanks to https://github.com/georgezhao2010/midea_ac_lan
7
+ *
8
+ */
9
+ /// <reference types="node" />
10
+ import { Logger } from 'homebridge';
11
+ import MideaDevice, { DeviceAttributeBase } from '../../core/MideaDevice';
12
+ import { DeviceInfo } from '../../core/MideaConstants';
13
+ import { Config, DeviceConfig } from '../../platformUtils';
14
+ import { MessageRequest } from '../../core/MideaMessage';
15
+ import { MessageSet } from './MideaE3Message';
16
+ export interface E3Attributes extends DeviceAttributeBase {
17
+ POWER: boolean;
18
+ BURNING_STATE: boolean;
19
+ ZERO_COLD_WATER: boolean;
20
+ PROTECTION: boolean;
21
+ ZERO_COLD_PULSE: boolean;
22
+ SMART_VOLUME: boolean;
23
+ CURRENT_TEMPERATURE?: number;
24
+ TARGET_TEMPERATURE: number;
25
+ }
26
+ export default class MideaE3Device extends MideaDevice {
27
+ attributes: E3Attributes;
28
+ private _old_subtypes;
29
+ private _precision_halves;
30
+ /*********************************************************************
31
+ * Constructor initializes all the attributes. We set some to invalid
32
+ * values so that they are detected as "changed" on the first status
33
+ * refresh... and passed back to the Homebridge/HomeKit accessory callback
34
+ * function to set their initial values.
35
+ */
36
+ constructor(logger: Logger, device_info: DeviceInfo, config: Config, deviceConfig: DeviceConfig);
37
+ get precision_halves(): boolean;
38
+ build_query(): MessageRequest[];
39
+ process_message(msg: Buffer): void;
40
+ make_message_set(): MessageSet;
41
+ set_attribute(attributes: Partial<E3Attributes>): Promise<void>;
42
+ protected set_subtype(): void;
43
+ }
44
44
  //# sourceMappingURL=MideaE3Device.d.ts.map
@@ -1,126 +1,126 @@
1
- "use strict";
2
- /***********************************************************************
3
- * Midea Gas Water Heater Device class
4
- *
5
- * Copyright (c) 2024 Kovalovszky Patrik, https://github.com/kovapatrik
6
- *
7
- * With thanks to https://github.com/georgezhao2010/midea_ac_lan
8
- *
9
- */
10
- var __importDefault = (this && this.__importDefault) || function (mod) {
11
- return (mod && mod.__esModule) ? mod : { "default": mod };
12
- };
13
- Object.defineProperty(exports, "__esModule", { value: true });
14
- const MideaDevice_1 = __importDefault(require("../../core/MideaDevice"));
15
- const MideaE3Message_1 = require("./MideaE3Message");
16
- class MideaE3Device extends MideaDevice_1.default {
17
- /*********************************************************************
18
- * Constructor initializes all the attributes. We set some to invalid
19
- * values so that they are detected as "changed" on the first status
20
- * refresh... and passed back to the Homebridge/HomeKit accessory callback
21
- * function to set their initial values.
22
- */
23
- constructor(logger, device_info, config, deviceConfig) {
24
- super(logger, device_info, config, deviceConfig);
25
- this._old_subtypes = [32, 33, 34, 35, 36, 37, 40, 43, 48, 49, 80];
26
- this.attributes = {
27
- POWER: false,
28
- BURNING_STATE: false,
29
- ZERO_COLD_WATER: false,
30
- PROTECTION: false,
31
- ZERO_COLD_PULSE: false,
32
- SMART_VOLUME: false,
33
- CURRENT_TEMPERATURE: undefined,
34
- TARGET_TEMPERATURE: 40,
35
- };
36
- this._precision_halves = deviceConfig.E3_options.precisionHalves;
37
- }
38
- get precision_halves() {
39
- return this._precision_halves;
40
- }
41
- build_query() {
42
- return [new MideaE3Message_1.MessageQuery(this.device_protocol_version)];
43
- }
44
- process_message(msg) {
45
- const message = new MideaE3Message_1.MessageE3Response(msg);
46
- if (this.verbose) {
47
- this.logger.debug(`[${this.name}] Body:\n${JSON.stringify(message.body)}`);
48
- }
49
- const changed = {};
50
- for (const status of Object.keys(this.attributes)) {
51
- let value = message.get_body_attribute(status.toLowerCase());
52
- if (value !== undefined) {
53
- if (this.attributes[status] !== value) {
54
- // Track only those attributes that change value. So when we send to the Homebridge /
55
- // HomeKit accessory we only update values that change. First time through this
56
- // should be most/all attributes having initialized them to invalid values.
57
- if (this.precision_halves && ['CURRENT_TEMPERATURE', 'TARGET_TEMPERATURE'].includes(status)) {
58
- value = value / 2;
59
- }
60
- this.logger.debug(`[${this.name}] Value for ${status} changed from '${this.attributes[status]}' to '${value}'`);
61
- changed[status] = value;
62
- }
63
- this.attributes[status] = value;
64
- }
65
- }
66
- // Now we update Homebridge / Homekit accessory
67
- if (Object.keys(changed).length > 0) {
68
- this.update(changed);
69
- }
70
- else {
71
- this.logger.debug(`[${this.name}] Status unchanged`);
72
- }
73
- }
74
- make_message_set() {
75
- const message = new MideaE3Message_1.MessageSet(this.device_protocol_version);
76
- message.zero_cold_water = this.attributes.ZERO_COLD_WATER;
77
- message.protection = this.attributes.PROTECTION;
78
- message.zero_cold_pulse = this.attributes.ZERO_COLD_PULSE;
79
- message.smart_volume = this.attributes.SMART_VOLUME;
80
- message.target_temperature = this.attributes.TARGET_TEMPERATURE;
81
- return message;
82
- }
83
- async set_attribute(attributes) {
84
- try {
85
- for (const [k, v] of Object.entries(attributes)) {
86
- let message;
87
- // not sensor data
88
- if (!['BURNING_STATE', 'CURRENT_TEMPERATURE', 'PROTECTION'].includes(k)) {
89
- let value = v;
90
- if (this.precision_halves && k === 'TARGET_TEMPERATURE') {
91
- value = (v * 2) | 0;
92
- }
93
- this.attributes[k] = value;
94
- if (k === 'POWER') {
95
- message = new MideaE3Message_1.MessagePower(this.device_protocol_version);
96
- if (message instanceof MideaE3Message_1.MessagePower) {
97
- message.power = value;
98
- }
99
- }
100
- else if (this._old_subtypes.includes(this.sub_type)) {
101
- message = this.make_message_set();
102
- message[k.toLowerCase()] = value;
103
- }
104
- else {
105
- message = new MideaE3Message_1.MessageNewProtocolSet(this.device_protocol_version);
106
- message.key = k;
107
- message.value = value;
108
- }
109
- if (message) {
110
- this.logger.debug(`[${this.name}] Set message:\n${JSON.stringify(message)}`);
111
- await this.build_send(message);
112
- }
113
- }
114
- }
115
- }
116
- catch (err) {
117
- const msg = err instanceof Error ? err.stack : err;
118
- this.logger.debug(`[${this.name}] Error in set_attribute (${this.ip}:${this.port}):\n${msg}`);
119
- }
120
- }
121
- set_subtype() {
122
- this.logger.debug('No subtype for E3 device');
123
- }
124
- }
125
- exports.default = MideaE3Device;
1
+ "use strict";
2
+ /***********************************************************************
3
+ * Midea Gas Water Heater Device class
4
+ *
5
+ * Copyright (c) 2024 Kovalovszky Patrik, https://github.com/kovapatrik
6
+ *
7
+ * With thanks to https://github.com/georgezhao2010/midea_ac_lan
8
+ *
9
+ */
10
+ var __importDefault = (this && this.__importDefault) || function (mod) {
11
+ return (mod && mod.__esModule) ? mod : { "default": mod };
12
+ };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ const MideaDevice_1 = __importDefault(require("../../core/MideaDevice"));
15
+ const MideaE3Message_1 = require("./MideaE3Message");
16
+ class MideaE3Device extends MideaDevice_1.default {
17
+ /*********************************************************************
18
+ * Constructor initializes all the attributes. We set some to invalid
19
+ * values so that they are detected as "changed" on the first status
20
+ * refresh... and passed back to the Homebridge/HomeKit accessory callback
21
+ * function to set their initial values.
22
+ */
23
+ constructor(logger, device_info, config, deviceConfig) {
24
+ super(logger, device_info, config, deviceConfig);
25
+ this._old_subtypes = [32, 33, 34, 35, 36, 37, 40, 43, 48, 49, 80];
26
+ this.attributes = {
27
+ POWER: false,
28
+ BURNING_STATE: false,
29
+ ZERO_COLD_WATER: false,
30
+ PROTECTION: false,
31
+ ZERO_COLD_PULSE: false,
32
+ SMART_VOLUME: false,
33
+ CURRENT_TEMPERATURE: undefined,
34
+ TARGET_TEMPERATURE: 40,
35
+ };
36
+ this._precision_halves = deviceConfig.E3_options.precisionHalves;
37
+ }
38
+ get precision_halves() {
39
+ return this._precision_halves;
40
+ }
41
+ build_query() {
42
+ return [new MideaE3Message_1.MessageQuery(this.device_protocol_version)];
43
+ }
44
+ process_message(msg) {
45
+ const message = new MideaE3Message_1.MessageE3Response(msg);
46
+ if (this.verbose) {
47
+ this.logger.debug(`[${this.name}] Body:\n${JSON.stringify(message.body)}`);
48
+ }
49
+ const changed = {};
50
+ for (const status of Object.keys(this.attributes)) {
51
+ let value = message.get_body_attribute(status.toLowerCase());
52
+ if (value !== undefined) {
53
+ if (this.attributes[status] !== value) {
54
+ // Track only those attributes that change value. So when we send to the Homebridge /
55
+ // HomeKit accessory we only update values that change. First time through this
56
+ // should be most/all attributes having initialized them to invalid values.
57
+ if (this.precision_halves && ['CURRENT_TEMPERATURE', 'TARGET_TEMPERATURE'].includes(status)) {
58
+ value = value / 2;
59
+ }
60
+ this.logger.debug(`[${this.name}] Value for ${status} changed from '${this.attributes[status]}' to '${value}'`);
61
+ changed[status] = value;
62
+ }
63
+ this.attributes[status] = value;
64
+ }
65
+ }
66
+ // Now we update Homebridge / Homekit accessory
67
+ if (Object.keys(changed).length > 0) {
68
+ this.update(changed);
69
+ }
70
+ else {
71
+ this.logger.debug(`[${this.name}] Status unchanged`);
72
+ }
73
+ }
74
+ make_message_set() {
75
+ const message = new MideaE3Message_1.MessageSet(this.device_protocol_version);
76
+ message.zero_cold_water = this.attributes.ZERO_COLD_WATER;
77
+ message.protection = this.attributes.PROTECTION;
78
+ message.zero_cold_pulse = this.attributes.ZERO_COLD_PULSE;
79
+ message.smart_volume = this.attributes.SMART_VOLUME;
80
+ message.target_temperature = this.attributes.TARGET_TEMPERATURE;
81
+ return message;
82
+ }
83
+ async set_attribute(attributes) {
84
+ try {
85
+ for (const [k, v] of Object.entries(attributes)) {
86
+ let message;
87
+ // not sensor data
88
+ if (!['BURNING_STATE', 'CURRENT_TEMPERATURE', 'PROTECTION'].includes(k)) {
89
+ let value = v;
90
+ if (this.precision_halves && k === 'TARGET_TEMPERATURE') {
91
+ value = (v * 2) | 0;
92
+ }
93
+ this.attributes[k] = value;
94
+ if (k === 'POWER') {
95
+ message = new MideaE3Message_1.MessagePower(this.device_protocol_version);
96
+ if (message instanceof MideaE3Message_1.MessagePower) {
97
+ message.power = value;
98
+ }
99
+ }
100
+ else if (this._old_subtypes.includes(this.sub_type)) {
101
+ message = this.make_message_set();
102
+ message[k.toLowerCase()] = value;
103
+ }
104
+ else {
105
+ message = new MideaE3Message_1.MessageNewProtocolSet(this.device_protocol_version);
106
+ message.key = k;
107
+ message.value = value;
108
+ }
109
+ if (message) {
110
+ this.logger.debug(`[${this.name}] Set message:\n${JSON.stringify(message)}`);
111
+ await this.build_send(message);
112
+ }
113
+ }
114
+ }
115
+ }
116
+ catch (err) {
117
+ const msg = err instanceof Error ? err.stack : err;
118
+ this.logger.debug(`[${this.name}] Error in set_attribute (${this.ip}:${this.port}):\n${msg}`);
119
+ }
120
+ }
121
+ set_subtype() {
122
+ this.logger.debug('No subtype for E3 device');
123
+ }
124
+ }
125
+ exports.default = MideaE3Device;
126
126
  //# sourceMappingURL=MideaE3Device.js.map
@@ -1,52 +1,52 @@
1
- /// <reference types="node" />
2
- import { MessageBody, MessageRequest, MessageResponse, MessageType } from '../../core/MideaMessage';
3
- export declare enum NewProtocolTags {
4
- ZERO_COLD_WATER = 3,
5
- ZERO_COLD_PULSE = 4,
6
- SMART_VOLUME = 7,
7
- TARGET_TEMPERATURE = 8
8
- }
9
- declare abstract class MessageE3Base extends MessageRequest {
10
- constructor(device_protocol_version: number, message_type: MessageType, body_type: number);
11
- }
12
- export declare class MessageQuery extends MessageE3Base {
13
- constructor(device_protocol_version: number);
14
- get _body(): Buffer;
15
- }
16
- export declare class MessagePower extends MessageE3Base {
17
- power: boolean;
18
- constructor(device_protocol_version: number);
19
- get _body(): Buffer;
20
- }
21
- export declare class MessageSet extends MessageE3Base {
22
- target_temperature: number;
23
- zero_cold_water: boolean;
24
- bathtub_volume: number;
25
- protection: boolean;
26
- zero_cold_pulse: boolean;
27
- smart_volume: boolean;
28
- constructor(device_protocol_version: number);
29
- get _body(): Buffer;
30
- }
31
- export declare class MessageNewProtocolSet extends MessageE3Base {
32
- key?: keyof typeof NewProtocolTags;
33
- value?: number | boolean;
34
- constructor(device_protocol_version: number);
35
- get _body(): Buffer;
36
- }
37
- export declare class E3GeneralMessageBody extends MessageBody {
38
- power: boolean;
39
- burning_state: boolean;
40
- zero_cold_water: boolean;
41
- current_temperature: number;
42
- target_temperature: number;
43
- protection: boolean;
44
- zero_cold_pulse: boolean;
45
- smart_volume: boolean;
46
- constructor(body: Buffer);
47
- }
48
- export declare class MessageE3Response extends MessageResponse {
49
- constructor(message: Buffer);
50
- }
51
- export {};
1
+ /// <reference types="node" />
2
+ import { MessageBody, MessageRequest, MessageResponse, MessageType } from '../../core/MideaMessage';
3
+ export declare enum NewProtocolTags {
4
+ ZERO_COLD_WATER = 3,
5
+ ZERO_COLD_PULSE = 4,
6
+ SMART_VOLUME = 7,
7
+ TARGET_TEMPERATURE = 8
8
+ }
9
+ declare abstract class MessageE3Base extends MessageRequest {
10
+ constructor(device_protocol_version: number, message_type: MessageType, body_type: number);
11
+ }
12
+ export declare class MessageQuery extends MessageE3Base {
13
+ constructor(device_protocol_version: number);
14
+ get _body(): Buffer;
15
+ }
16
+ export declare class MessagePower extends MessageE3Base {
17
+ power: boolean;
18
+ constructor(device_protocol_version: number);
19
+ get _body(): Buffer;
20
+ }
21
+ export declare class MessageSet extends MessageE3Base {
22
+ target_temperature: number;
23
+ zero_cold_water: boolean;
24
+ bathtub_volume: number;
25
+ protection: boolean;
26
+ zero_cold_pulse: boolean;
27
+ smart_volume: boolean;
28
+ constructor(device_protocol_version: number);
29
+ get _body(): Buffer;
30
+ }
31
+ export declare class MessageNewProtocolSet extends MessageE3Base {
32
+ key?: keyof typeof NewProtocolTags;
33
+ value?: number | boolean;
34
+ constructor(device_protocol_version: number);
35
+ get _body(): Buffer;
36
+ }
37
+ export declare class E3GeneralMessageBody extends MessageBody {
38
+ power: boolean;
39
+ burning_state: boolean;
40
+ zero_cold_water: boolean;
41
+ current_temperature: number;
42
+ target_temperature: number;
43
+ protection: boolean;
44
+ zero_cold_pulse: boolean;
45
+ smart_volume: boolean;
46
+ constructor(body: Buffer);
47
+ }
48
+ export declare class MessageE3Response extends MessageResponse {
49
+ constructor(message: Buffer);
50
+ }
51
+ export {};
52
52
  //# sourceMappingURL=MideaE3Message.d.ts.map