Skip to content

Commit b0fbce4

Browse files
authored
Added support for device 008-304 (HiSense Window air conditioner) (#152)
1 parent 6581888 commit b0fbce4

File tree

1 file changed

+145
-0
lines changed

1 file changed

+145
-0
lines changed
Lines changed: 145 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
climate:
2+
presets:
3+
- preset: Bedtime
4+
t_power: 1
5+
t_work_mode: 2
6+
t_fan_speed: 3
7+
t_temp: 64
8+
properties:
9+
- property: daily_energy_kwh
10+
hide: true
11+
sensor:
12+
read_only: true
13+
state_class: total_increasing
14+
device_class: energy
15+
unit: kWh
16+
- property: f_temp_in
17+
climate:
18+
target: current_temperature
19+
- property: t_fan_speed
20+
climate:
21+
target: fan_mode
22+
options:
23+
0: auto
24+
2: low
25+
3: medium
26+
4: high
27+
- property: f_humidity
28+
climate:
29+
target: current_humidity
30+
unknown_value: 128
31+
- property: t_power
32+
climate:
33+
target: is_on
34+
- property: t_sleep
35+
icon: mdi:power-sleep
36+
switch:
37+
device_class: switch
38+
- property: t_temp
39+
climate:
40+
target: target_temperature
41+
min_value:
42+
celsius: 16
43+
fahrenheit: 61
44+
max_value:
45+
celsius: 32
46+
fahrenheit: 90
47+
- property: t_temp_type
48+
climate:
49+
target: temperature_unit
50+
options:
51+
0: celsius
52+
1: fahrenheit
53+
- property: t_work_mode
54+
climate:
55+
target: hvac_mode
56+
options:
57+
0: fan_only
58+
2: cool
59+
3: dry
60+
5: eco
61+
# - property: t_beep
62+
# disable: true
63+
# - property: t_eco
64+
# disable: true
65+
# - property: t_fan_mute
66+
# disable: true
67+
# - property: t_fan_speed_s
68+
# disable: true
69+
# - property: t_tms
70+
# disable: true
71+
# - property: t_super
72+
# disable: true
73+
# - property: t_swing_angle
74+
# disable: true
75+
# - property: t_swing_follow
76+
# disable: true
77+
# - property: t_swing_direction
78+
# disable: true
79+
# - property: t_up_down
80+
# disable: true
81+
82+
# - property: f_e_arkgrille
83+
# disable: true
84+
# - property: f_e_dwmachine
85+
# disable: true
86+
# - property: f_e_incoiltemp
87+
# disable: true
88+
# - property: f_e_incom
89+
# disable: true
90+
# - property: f_e_indisplay
91+
# disable: true
92+
# - property: f_e_ineeprom
93+
# disable: true
94+
# - property: f_e_inele
95+
# disable: true
96+
# - property: f_e_infanmotor
97+
# disable: true
98+
# - property: f_e_inhumidity
99+
# disable: true
100+
# - property: f_e_inkeys
101+
# disable: true
102+
# - property: f_e_intemp
103+
# disable: true
104+
# - property: f_e_invzero
105+
# disable: true
106+
# - property: f_e_inwifi
107+
# disable: true
108+
# - property: f_e_outcoiltemp
109+
# disable: true
110+
# - property: f_e_outeeprom
111+
# disable: true
112+
# - property: f_e_outgastemp
113+
# disable: true
114+
# - property: f_e_outtemp
115+
# disable: true
116+
# - property: f_e_over_cold
117+
# disable: true
118+
# - property: f_e_over_hot
119+
# disable: true
120+
# - property: f_e_push
121+
# disable: true
122+
# - property: f_e_upmachine
123+
# disable: true
124+
# - property: f_e_waterfull
125+
# disable: true
126+
# - property: f_ecm
127+
# disable: true
128+
# - property: f_electricity
129+
# disable: true
130+
# - property: f_filter
131+
# disable: true
132+
# - property: f_filter_2
133+
# disable: true
134+
# - property: measured_grid_voltage
135+
# disable: true
136+
# - property: t_dal
137+
# disable: true
138+
# - property: t_talr
139+
# disable: true
140+
# - property: t_demand_response
141+
# disable: true
142+
# - property: t_fanspeedcv
143+
# disable: true
144+
# - property: t_temp_compensate
145+
# disable: true

0 commit comments

Comments
 (0)