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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
| esphome: name: Wemos Goodwe esp8266: board: d1_mini uart: id: mod_bus tx_pin: D7 rx_pin: D6 baud_rate: 9600 stop_bits: 1 rx_buffer_size: 1024 modbus: flow_control_pin: D5 id: modbus1 send_wait_time: 1000ms modbus_controller: - id: goodwe ## the Modbus device addr (defaults to 247 (0xF7) for goodwe inverters) address: 0xF7 modbus_id: modbus1 setup_priority: -10 #command_throttle: 250ms update_interval: 15s sensor: - platform: modbus_controller modbus_controller_id: goodwe id: pv_pv1_voltage name: "${friendly_name} PV1 voltage" address: 0x0300 unit_of_measurement: "V" device_class: voltage state_class: measurement register_type: holding value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: goodwe id: pv_pv2_voltage name: "${friendly_name} PV2 voltage" address: 0x0301 unit_of_measurement: "V" device_class: voltage state_class: measurement register_type: holding value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: goodwe id: pv_pv1_current name: "${friendly_name} PV1 current" address: 0x0302 unit_of_measurement: "A" device_class: current state_class: measurement register_type: holding value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: goodwe id: pv_pv2_current name: "${friendly_name} PV2 current" address: 0x0303 unit_of_measurement: "A" device_class: current state_class: measurement register_type: holding value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: goodwe id: pv_ac1_voltage name: "${friendly_name} AC1 voltage" address: 0x0304 unit_of_measurement: "V" device_class: voltage state_class: measurement register_type: holding value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: goodwe id: pv_ac2_voltage name: "${friendly_name} AC2 voltage" address: 0x0305 unit_of_measurement: "V" device_class: voltage state_class: measurement register_type: holding value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: goodwe id: pv_ac3_voltage name: "${friendly_name} AC3 voltage" address: 0x0306 unit_of_measurement: "V" device_class: voltage state_class: measurement register_type: holding value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: goodwe id: pv_ac1_current name: "${friendly_name} AC1 current" address: 0x0307 unit_of_measurement: "A" device_class: current state_class: measurement register_type: holding value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: goodwe id: pv_ac2_current name: "${friendly_name} AC2 current" address: 0x0308 unit_of_measurement: "A" device_class: current state_class: measurement register_type: holding value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: goodwe id: pv_ac3_current name: "${friendly_name} AC3 current" address: 0x0309 unit_of_measurement: "A" device_class: current state_class: measurement register_type: holding value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 register_count: 4 # skip 0x30A - 0x30C - platform: modbus_controller modbus_controller_id: goodwe id: pv_feeding_power name: "${friendly_name} Feeding Power" address: 0x030D unit_of_measurement: "W" device_class: power state_class: measurement register_type: holding value_type: U_WORD accuracy_decimals: 0 register_count: 2 # skip 0x30E - platform: modbus_controller modbus_controller_id: goodwe id: pv_temperature name: "${friendly_name} Temperature" address: 0x030F unit_of_measurement: "°C" device_class: temperature state_class: measurement register_type: holding value_type: S_WORD accuracy_decimals: 1 filters: - multiply: 0.1 register_count: 3 # skip 0x310 and 0x311 - platform: modbus_controller modbus_controller_id: goodwe id: pv_total_energy name: "${friendly_name} Total Energy" address: 0x0312 unit_of_measurement: "kWh" device_class: energy state_class: total register_type: holding value_type: U_DWORD accuracy_decimals: 1 filters: - multiply: 0.1 - platform: modbus_controller modbus_controller_id: goodwe id: pv_total_hours name: "${friendly_name} Total Hours" address: 0x0314 unit_of_measurement: "h" device_class: duration state_class: total register_type: holding value_type: U_DWORD accuracy_decimals: 0 register_count: 12 # skip 0x316 - 0x31E - platform: modbus_controller modbus_controller_id: goodwe id: pv_day_energy name: "${friendly_name} Day Energy" address: 0x0320 unit_of_measurement: "kWh" device_class: energy state_class: total_increasing register_type: holding value_type: U_WORD accuracy_decimals: 1 filters: - multiply: 0.1 # --- SENSORS FOR EXPORT CONTROL --- - platform: modbus_controller modbus_controller_id: goodwe id: export_limit_enable_actual_status # internal: true # Uncomment if you DON'T want this sensor as a separate entity in Home Assistant name: "Export Limit Switch Actual Status" address: 291 # Decimal for "On Grid Export Power Limit Switch" register_type: holding value_type: U_WORD # Expected values 0 (OFF) or 1 (ON) - platform: modbus_controller modbus_controller_id: goodwe id: export_limit_percentage_actual_status # internal: true # Uncomment if you DON'T want this sensor as a separate entity in Home Assistant name: "Export Limit Percentage Actual Status" address: 292 # Decimal for "Set the ARP power percentage" register_type: holding value_type: U_WORD # Expected values 0-100 unit_of_measurement: "%" switch: - platform: modbus_controller modbus_controller_id: goodwe use_write_multiple: True id: export_limit_enable register_type: holding address: 291 name: "Power limit enable" bitmask: 0x01 icon: "mdi:toggle-switch" number: - platform: modbus_controller modbus_controller_id: goodwe use_write_multiple: True name: "Export Limit Percentage" register_type: holding address: 292 value_type: U_WORD min_value: 0 max_value: 100 entity_category: config |
www.google.nl
:strip_exif()/f/image/zcaQ07j3jsKVimlDrQuVzPOc.jpg?f=fotoalbum_large)
:strip_exif()/f/image/TrxULgQA84UNDX9IPhktkZjK.jpg?f=fotoalbum_large)
:strip_exif()/f/image/Lu9KqRPbP70tIM8SaAwY5kKL.jpg?f=fotoalbum_large)
:strip_exif()/f/image/ctERQuepUF2dao8gmmJKeYip.jpg?f=fotoalbum_large)
:strip_exif()/f/image/k1I8e6XdMsUDQPoT4H2SXoWT.jpg?f=fotoalbum_large)
:strip_exif()/f/image/KJ931fkNawv3PSn7BOpRXQe5.png?f=user_large)
:strip_exif()/f/image/d7oUnZd1UzFj8IVXuEBDlMoL.jpg?f=fotoalbum_large)
:strip_exif()/f/image/TEfORs4hyQIdU4D1bMExALtF.jpg?f=fotoalbum_large)
/f/image/htJwioOjOMiOPG35VRtGhYzG.png?f=fotoalbum_large)
/f/image/hziSnqKVc0RQBbyG0fUHp1R4.png?f=fotoalbum_large)
/f/image/mxk8egUZ0nP6zZk5NKcjKzR8.png?f=fotoalbum_large)
/f/image/SG6K7CoWmWOyvuAiHU28m9nA.png?f=fotoalbum_large)
/f/image/3i5TzlIpx8lf5o9KtZ9DNcn2.png?f=fotoalbum_large)
/f/image/x4e9k965Ol53BMTavbp690wM.png?f=fotoalbum_large)
:strip_exif()/f/image/MvYfNs7WZ1vEbhtjns3PP14d.png?f=user_large)