Skip to content

Commit 84f4b28

Browse files
authored
Add data dictionary for washing machine properties
1 parent da6f504 commit 84f4b28

File tree

1 file changed

+160
-0
lines changed

1 file changed

+160
-0
lines changed
Lines changed: 160 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
#WashingMachine
2+
properties:
3+
- property: Child_lock
4+
icon: mdi:lock
5+
switch:
6+
- property: Current_program_phase
7+
icon: mdi:state-machine
8+
sensor:
9+
device_class: enum
10+
options:
11+
0: not_available
12+
1: weigh
13+
2: prewash
14+
3: wash
15+
4: rinse
16+
7: spin-dry
17+
8: drying
18+
10: finished
19+
read_only: true
20+
- property: Detergent_display
21+
icon: mdi:alpha-d-circle-outline
22+
sensor:
23+
device_class: enum
24+
options:
25+
0: "off"
26+
1: "on"
27+
- property: Door_status
28+
icon: mdi:washing-machine
29+
sensor:
30+
device_class: enum
31+
options:
32+
1: "open"
33+
3: "closed"
34+
- property: Electricit_consumption_int
35+
icon: mdi:lightning-bolt
36+
sensor:
37+
read_only: true
38+
state_class: total_increasing
39+
device_class: energy
40+
unit: kWh
41+
- property: Energy_estimate
42+
icon: mdi:lightning-bolt
43+
sensor:
44+
read_only: true
45+
state_class: total
46+
device_class: energy
47+
unit: kWh
48+
- property: ExtraRinseNum
49+
icon: mdi:tray-plus
50+
entity_category: diagnostic
51+
select:
52+
options:
53+
0: "0"
54+
1: "1"
55+
2: "2"
56+
3: "3"
57+
- property: machine_status
58+
icon: mdi:washing-machine
59+
sensor:
60+
device_class: enum
61+
options:
62+
0: "off"
63+
1: "standby"
64+
2: "running"
65+
- property: mute
66+
icon: mdi:volume-variant-off
67+
switch:
68+
device_class: switch
69+
- property: Prewash
70+
icon: mdi:numeric-1-circle-outline
71+
switch:
72+
device_class: switch
73+
- property: RinseNum
74+
icon: mdi:tray-plus
75+
sensor:
76+
device_class: enum
77+
options:
78+
1: "1"
79+
2: "2"
80+
3: "3"
81+
- property: Selected_program_ID
82+
icon: mdi:tshirt-crew
83+
select:
84+
options:
85+
1: "cotton_dry"
86+
2: "synthetic_dry"
87+
4: "refresh"
88+
5: "anti_allergy"
89+
6: "drum_cleaning"
90+
7: "cotton"
91+
8: "synthetic"
92+
9: "eco_40_60"
93+
10: "wool"
94+
11: "fast15"
95+
14: "spin-dry"
96+
16: "baby"
97+
20: "rinse_spin"
98+
22: "clean_dry_60"
99+
41: "power49"
100+
42: "auto"
101+
- property: Selected_program_remaining_time_in_minutes
102+
icon: mdi:camera-timer
103+
sensor:
104+
device_class: duration
105+
unit: min
106+
read_only: true
107+
- property: Selected_program_total_time_in_minutes
108+
icon: mdi:camera-timer
109+
sensor:
110+
device_class: duration
111+
unit: min
112+
read_only: true
113+
- property: Selected_program_total_running_time_in_minutes
114+
icon: mdi:camera-timer
115+
sensor:
116+
device_class: duration
117+
unit: min
118+
read_only: true
119+
- property: Softer_display
120+
icon: mdi:alpha-s-circle-outline
121+
sensor:
122+
device_class: enum
123+
options:
124+
0: "off"
125+
1: "on"
126+
- property: Steam
127+
icon: mdi:heat-wave
128+
switch:
129+
- property: temperature
130+
icon: mdi:thermometer-lines
131+
select:
132+
options:
133+
0: "cold"
134+
2: "20"
135+
3: "30"
136+
4: "40"
137+
6: "60"
138+
9: "90"
139+
- property: Spin_speed_rpm
140+
icon: mdi:thermometer-lines
141+
select:
142+
options:
143+
14: "1400"
144+
12: "1200"
145+
10: "1000"
146+
80: "800"
147+
60: "600"
148+
0: "none"
149+
- property: spintime_index
150+
icon: mdi:camera-timer
151+
sensor:
152+
device_class: duration
153+
unit: min
154+
read_only: true
155+
- property: Water_consumption_int
156+
icon: mdi:water-pump
157+
sensor:
158+
state_class: total_increasing
159+
device_class: water
160+
unit: L

0 commit comments

Comments
 (0)