Skip to content

Commit dd006f4

Browse files
committed
Add support for Moes IR SD16Pro controlled heatpump/AC.
Issue #478
1 parent 5a7d345 commit dd006f4

File tree

3 files changed

+78
-0
lines changed

3 files changed

+78
-0
lines changed

ACKNOWLEDGEMENTS.md

+1
Original file line numberDiff line numberDiff line change
@@ -254,3 +254,4 @@ Further device support has been made with the assistance of users. Please consi
254254
- [xZetsubou](https://github.com/xZetsubou) for contributing improvements for covers to better support Zemismart roller shades, triple switch with timers, and quad switch plus USB with restore power state config.
255255
- [burn1879](https://github.com/burn1879) for contributing support for subdevices, and Loratap zigbee curtains.
256256
- [hronek](https://github.com/hronek) for assisting with support for BLE PT216 temperature and humidity sensors.
257+
- [bparten](https://github.com/bparten) for assisting with support for Moes IR hub connected heatpump.

DEVICES.md

+2
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,8 @@ of device.
377377

378378
### Devices supported via IR hubs
379379

380+
- Air conditioner / heatpump via Moes IR hub
381+
380382
### Devices supported via Zigbee hubs
381383

382384
- LoraTap SC500ZB-V2 curtain controller
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
name: IR heatpump
2+
products:
3+
- id: hwktwkq
4+
name: Moes IR remote heatpump
5+
primary_entity:
6+
entity: climate
7+
dps:
8+
- id: 1
9+
type: boolean
10+
name: hvac_mode
11+
mapping:
12+
- dps_val: false
13+
value: "off"
14+
- dps_val: true
15+
constraint: mode
16+
conditions:
17+
- dps_val: cold
18+
value: cool
19+
- dps_val: warm
20+
value: heat
21+
- dps_val: auto
22+
value: heatcool
23+
- dps_val: air
24+
value: fan_only
25+
- dps_val: dehumidify
26+
value: dry
27+
- id: 2
28+
type: integer
29+
name: current_temperature
30+
mapping:
31+
- scale: 10
32+
- id: 3
33+
type: integer
34+
name: temperature
35+
range:
36+
min: 16
37+
max: 32
38+
- id: 4
39+
type: string
40+
name: mode
41+
hidden: true
42+
- id: 5
43+
type: string
44+
name: fan_mode
45+
mapping:
46+
- dps_val: auto
47+
value: Auto
48+
- dps_val: low
49+
value: Low
50+
- dps_val: middle
51+
value: Medium
52+
- dps_val: high
53+
value: High
54+
- id: 9
55+
type: integer
56+
name: unknown_9
57+
- id: 10
58+
type: integer
59+
name: unknown_10
60+
- id: 11
61+
type: string
62+
name: display_unit
63+
- id: 12
64+
type: integer
65+
name: current_humidity
66+
- id: 15
67+
type: string
68+
name: unknown_15
69+
- id: 16
70+
type: string
71+
name: unknown_16
72+
- id: 18
73+
type: integer
74+
name: unknown_18
75+

0 commit comments

Comments
 (0)