-
Notifications
You must be signed in to change notification settings - Fork 0
/
modbus.yaml
175 lines (139 loc) · 3.96 KB
/
modbus.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
- name: Baxi
type: tcp
host: 192.168.31.117
port: 502
delay: 2
############################## SENSORS ##############################
sensors:
#################### ACS ####################
- name: "ACS Temperatura" # DhwTankTemperature
slave: 100
address: 1631
input_type: holding
data_type: int16
scan_interval: 5
device_class: temperature
unit_of_measurement: °C
state_class: measurement
scale: 0.01
precision: 1
- name: "ACS Temp. Confort" # ZoneDhwComfortSetpoint
slave: 100
address: 1177
input_type: holding
data_type: int16
scan_interval: 5
device_class: temperature
unit_of_measurement: °C
state_class: measurement
scale: 0.01
precision: 1
- name: "ACS Temp. ECO" # ZoneDhwReducedSetpoint
slave: 100
address: 1178
input_type: holding
data_type: int16
scan_interval: 5
device_class: temperature
unit_of_measurement: °C
state_class: measurement
scale: 0.01
precision: 1
- name: "ACS bit Actividad" # ZoneCurrentActivities
slave: 100
address: 1619
input_type: holding
data_type: int16
scan_interval: 5
#################### CLIMATIZACION ####################
- name: "AACC Temperatura" # ZoneTRoom
slave: 100
address: 1104
input_type: holding
data_type: int16
scan_interval: 5
device_class: temperature
unit_of_measurement: °C
state_class: measurement
scale: 0.1
precision: 1
- name: "AACC Temp. Consigna" # ZoneRoomManualSetpoint
slave: 100
address: 664
input_type: holding
data_type: int16
scan_interval: 5
device_class: temperature
unit_of_measurement: °C
state_class: measurement
scale: 0.1
precision: 1
############################## CLIMATES ##############################
climates:
#################### ACS ####################
- name: "Baxi ACS Confort" # Climate Confort
unique_id: baxi_acs_confort
slave: 100
address: 1631
input_type: holding
data_type: uint16
scan_interval: 5
max_temp: 65
min_temp: 40
precision: 1
scale: 0.01
temp_step: 0.5
temperature_unit: C
target_temp_register: 1177
hvac_mode_register:
address: 1161
values:
state_auto: 0
state_heat: 1
state_off: 2
- name: "Baxi ACS ECO" # Climate ECO
unique_id: baxi_acs_eco
slave: 100
address: 1631
input_type: holding
data_type: uint16
scan_interval: 5
max_temp: 45
min_temp: 30
precision: 1
scale: 0.01
temp_step: 0.5
temperature_unit: C
target_temp_register: 1178
hvac_mode_register:
address: 1161
values:
state_auto: 0
state_heat: 1
state_off: 2
#################### CLIMATIZACION ####################
- name: "Baxi AACC" # Climate AACC
unique_id: baxi_aacc
slave: 100
address: 1104
input_type: holding
data_type: uint16
scan_interval: 5
max_temp: 45
min_temp: 15
precision: 1
scale: 0.1
temp_step: 0.5
temperature_unit: C
target_temp_register: 664
hvac_mode_register:
address: 503
values:
state_heat: 0
state_cool: 1
fan_mode_register:
address: 649
values:
state_fan_on: 1
state_fan_off: 2
hvac_onoff_register: 500