forked from jacauc/SunsynkEsphome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsunsynk.yaml
841 lines (753 loc) · 24.2 KB
/
sunsynk.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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
# Once jinja templates are merged we can programatically enable/disable PV sensors with a boolean substitiution at the top of the script
# see: https://github.com/esphome/esphome/discussions/3969#discussioncomment-4016197
esphome:
name: "sunsynk"
esp32:
board: esp32dev
framework:
type: arduino
#################################### GLOBALS ####################################
substitutions:
modbus_update_interval: "3s"
settings_skipped_updates: "10"
query_throttle: "50ms"
#################################### STATIC SECTION ####################################
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
fast_connect: true
ap:
ssid: '${device_name}'
password: !secret fallback_password
ota:
safe_mode: true
reboot_timeout: 10min
num_attempts: 5
#web_server:
# port: 80
# auth:
# username: !secret esphome_web_username
# password: !secret esphome_web_password
#switch:
# - platform: restart
# name: "${device_name} Restart"
captive_portal:
# Enable logging
logger:
baud_rate: 0
# Enable Home Assistant API
api:
password: !secret esphome_api_password
# https://esphome.io/components/time.html#home-assistant-time-source
time:
- platform: homeassistant
id: homeassistant_time
#################################### STATIC SECTION ####################################
uart:
id: mod_bus
tx_pin: 17
rx_pin: 16
baud_rate: 9600
stop_bits: 1
modbus:
id: sunsynk_modbus
flow_control_pin: 4
modbus_controller:
- id: sunsynk_esphome
address: 0x01
modbus_id: sunsynk_modbus
setup_priority: -10
update_interval: 5000ms
sensor:
- platform: modbus_controller # 060 DayActive Power Wh
modbus_controller_id: sunsynk_esphome
name: "SS DayActive Power"
id: sunsynk_esphome_day_activepower
register_type: holding
address: 60
unit_of_measurement: "kWh"
accuracy_decimals: 1
device_class: energy
state_class: total_increasing
filters: #GOOD
- lambda: |-
x = x / 10;
float MAX_VALUE = 32767;
if (x > MAX_VALUE) return (0 - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 061 DayReactive Power Wh
modbus_controller_id: sunsynk_esphome
name: "SS DayReactive Power"
id: sunsynk_esphome_day_reactivepower
register_type: holding
address: 61
unit_of_measurement: "kWh"
accuracy_decimals: 1
device_class: energy
state_class: total_increasing
filters: #GOOD
- lambda: |-
x = x / 10;
float MAX_VALUE = 32767;
if (x > MAX_VALUE) return (0 - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 070 Battery Charge Day
modbus_controller_id: sunsynk_esphome
name: "SS Battery Charge Day"
id: sunsynk_esphome_battery_charge_day
register_type: holding
address: 70
unit_of_measurement: "kWh"
accuracy_decimals: 1
device_class: energy
state_class: total_increasing
filters: #GOOD
- lambda: |-
x = x / 10;
float MAX_VALUE = 32767;
if (x > MAX_VALUE) return (0 - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 071 Battery Discharge Day
modbus_controller_id: sunsynk_esphome
name: "SS Battery Discharge Day"
id: sunsynk_esphome_battery_discharge_day
register_type: holding
address: 71
unit_of_measurement: "kWh"
accuracy_decimals: 1
device_class: energy
state_class: total_increasing
filters: #GOOD
- lambda: |-
x = x / 10;
float MAX_VALUE = 32767;
if (x > MAX_VALUE) return (0 - 65535) /1;
else return (x) /1;
- platform: modbus_controller #72 Battery Charge Total
modbus_controller_id: sunsynk_esphome
name: "SS Battery Charge Total"
id: sunsynk_esphome_battery_charge_total
register_type: holding
address: 72
unit_of_measurement: "kWh"
accuracy_decimals: 1
device_class: energy
state_class: total_increasing
filters:
- lambda: |-
x = x / -1;
if (x > 32767) return (0 - x + 65535) /10;
else return (0 - x) /10;
- platform: modbus_controller #74 Battery Discharge Total
modbus_controller_id: sunsynk_esphome
name: "SS Battery Discharge Total"
id: sunsynk_esphome_battery_discharge_total
register_type: holding
address: 74
unit_of_measurement: "kWh"
accuracy_decimals: 0
device_class: energy
state_class: total_increasing
filters:
- lambda: |-
if (x > 32767) return (x - 65535) /10;
else return (x) /10;
- platform: modbus_controller #076 Grid Import Day (Buy)
modbus_controller_id: sunsynk_esphome
name: "SS Grid Import Day (Buy)"
id: sunsynk_esphome_grid_import_day
register_type: holding
address: 76
unit_of_measurement: "kWh"
accuracy_decimals: 0
device_class: energy
state_class: total_increasing
filters: # GOOD
- lambda: |-
if (x > 32767) return (x - 65535) / 10;
else return x /10;
#- platform: modbus_controller #077 Grid Export Day (Sell)
# modbus_controller_id: sunsynk_esphome
# name: "SS Day_GridSell_Power (Sell)"
# id: sunsynk_esphome_Day_GridSell_Power
# register_type: holding
# address: 77
# unit_of_measurement: "kWh"
# accuracy_decimals: 0
# device_class: energy
# state_class: total_increasing
# filters: # GOOD
# - lambda: |-
# if (x > 32767) return (x - 65535) / 10;
# else return x /10;
- platform: modbus_controller # 78 Grid Import Total (Buy)
modbus_controller_id: sunsynk_esphome
name: "SS Grid Import Total (Buy)"
id: sunsynk_esphome_grid_import_total_buy
register_type: holding
address: 78
unit_of_measurement: "kWh"
accuracy_decimals: 0
device_class: energy
state_class: total_increasing
filters: #GOOD
- lambda: |-
x = x / -1;
if (x > 32767) return (0 - x + 65535) /1;
else return (0 - x) /1;
- platform: modbus_controller # 079 Grid Frequency
modbus_controller_id: sunsynk_esphome
name: "SS Grid Frequency"
id: sunsynk_esphome_grid_frequency
register_type: holding
address: 79
unit_of_measurement: "hz"
accuracy_decimals: 2
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /100;
else return (x) /100;
#device_class: none
state_class: measurement
# - platform: modbus_controller # 80 Grid Buy Total
# modbus_controller_id: sunsynk_esphome
# name: "SS Total_Grid Buy_Power"
# id: sunsynk_esphome_Total_Grid Buy_Power
# register_type: holding
# address: 80
# unit_of_measurement: "kWh"
# accuracy_decimals: 2
# device_class: energy
# state_class: total_increasing
# filters:
# - lambda: |-
# if (x > 32767) return (x - 65535) / 10;
# else return x /10;
# - platform: modbus_controller # 81 Grid Export Total (Sell)
# modbus_controller_id: sunsynk_esphome
# name: "SS Grid Export Total (Sell)"
# id: sunsynk_esphome_grid_export_total_sell
# register_type: holding
# address: 81
# unit_of_measurement: "kWh"
# accuracy_decimals: 2
# device_class: energy
# state_class: total_increasing
# filters:
# - lambda: |-
# if (x > 32767) return (x - 65535) / 10;
# else return x /10;
- platform: modbus_controller # 85 Load Power Total
modbus_controller_id: sunsynk_esphome
name: "SS Load Power Total"
id: sunsynk_esphome_load_power_total
register_type: holding
address: 85
unit_of_measurement: "kWh"
accuracy_decimals: 0
device_class: energy
state_class: total_increasing
filters: #GOOD
- lambda: |-
if (x > 32767) return (0 - x + 65535) /1;
else return (0 - x) /1;
- platform: modbus_controller # 090 DC Transformer Temperature
modbus_controller_id: sunsynk_esphome
name: "SS DC Transformer Temperature"
id: sunsynk_esphome_dctransformer_temperature
register_type: holding
address: 090
unit_of_measurement: "°C"
accuracy_decimals: 1
device_class: temperature
state_class: measurement
filters: # GOOD
- lambda: |-
if (x > 32767) return ((x - 65535)-1000) / 10;
else return ((x)-1000) / 10;
- platform: modbus_controller # 091 Radiator Temperature
modbus_controller_id: sunsynk_esphome
name: "SS DC Radiator Temperature"
id: sunsynk_esphome_radiator_temperature
register_type: holding
address: 091
unit_of_measurement: "°C"
accuracy_decimals: 1
device_class: temperature
state_class: measurement
filters: # GOOD
- lambda: |-
if (x > 32767) return ((x - 65535)-1000) / 10;
else return ((x)-1000) / 10;
# - platform: modbus_controller # 92
# modbus_controller_id: sunsynk_esphome
# name: "SS Total_Gen_power"
# id: sunsynk_esphome_Total_Gen_power
# register_type: holding
# address: 092
# unit_of_measurement: "kWh"
# accuracy_decimals: 0
# device_class: energy
# state_class: measurement
# filters:
# - multiply: 0.1
# - platform: modbus_controller # 95 Environment Temp
# modbus_controller_id: sunsynk_esphome
# name: "SS Environment Temp"
# id: sunsynk_esphome_environment_temperature
# register_type: holding
# address: 095
# unit_of_measurement: "°C"
# accuracy_decimals: 0
# device_class: temperature
# state_class: measurement
# filters:
# - multiply: 0.1
# - platform: modbus_controller # 96 Total PV Power
# modbus_controller_id: sunsynk_esphome
# name: "SS Total PV Power (kWh)"
# id: sunsynk_esphome_total_pv_power_kwh
# register_type: holding
# address: 96
# unit_of_measurement: "kWh"
# accuracy_decimals: 2
# device_class: energy
# state_class: total_increasing
# filters:
# - multiply: 0.1
- platform: modbus_controller #108 Solar PV Day (Production)
modbus_controller_id: sunsynk_esphome
name: "SS Solar PV Day"
id: sunsynk_esphome_Solar_PV_day
register_type: holding
address: 108
unit_of_measurement: "kWh"
accuracy_decimals: 0
device_class: energy
state_class: total_increasing
filters: # GOOD
- lambda: |-
x = x / 1;
float MAX_VALUE = 32767;
if (x > MAX_VALUE) return (0 - 65535) / 10;
else return x /10;
- platform: modbus_controller # 109 PV1 Voltage
modbus_controller_id: sunsynk_esphome
name: "SS PV1 Voltage"
id: sunsynk_esphome_pv1_voltage
register_type: holding
address: 109
unit_of_measurement: "V"
accuracy_decimals: 2
device_class: voltage
state_class: measurement
filters:
- multiply: 0.1
- platform: modbus_controller # 110 PV1 Amps
modbus_controller_id: sunsynk_esphome
name: "SS PV1 Amps"
id: sunsynk_esphome_pv1_amps
register_type: holding
address: 110
unit_of_measurement: "A"
accuracy_decimals: 2
device_class: current
state_class: measurement
filters:
- multiply: 0.1
- platform: modbus_controller # 111 PV2 Voltage
modbus_controller_id: sunsynk_esphome
name: "SS PV2 Voltage"
id: sunsynk_esphome_pv2_voltage
register_type: holding
address: 111
unit_of_measurement: "V"
accuracy_decimals: 2
device_class: voltage
state_class: measurement
filters:
- multiply: 0.1
- platform: modbus_controller # 112 PV2 Amps
modbus_controller_id: sunsynk_esphome
name: "SS PV2 Amps"
id: sunsynk_esphome_pv2_amps
register_type: holding
address: 112
unit_of_measurement: "A"
accuracy_decimals: 2
device_class: current
state_class: measurement
filters:
- multiply: 0.1
# - platform: modbus_controller # 113 PV3 Voltage
# modbus_controller_id: sunsynk_esphome
# name: "SS PV3 Voltage"
# id: sunsynk_esphome_pv3_voltage
# register_type: holding
# address: 113
# unit_of_measurement: "V"
# accuracy_decimals: 2
# device_class: voltage
# state_class: measurement
# filters:
# - multiply: 0.1
#- platform: modbus_controller # 114 PV3 Amps
# modbus_controller_id: sunsynk_esphome
# name: "SS PV3 Amps"
# id: sunsynk_esphome_pv3_amps
# register_type: holding
# address: 114
# unit_of_measurement: "A"
# accuracy_decimals: 2
# device_class: current
# state_class: measurement
# filters:
# - multiply: 0.1
- platform: modbus_controller # 150 Grid Voltage
modbus_controller_id: sunsynk_esphome
name: "SS Grid Voltage"
id: sunsynk_esphome_grid_voltage
register_type: holding
address: 150
unit_of_measurement: "V"
accuracy_decimals: 1
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /10;
else return (x) /10;
device_class: voltage
state_class: measurement
- platform: modbus_controller # 154 Grid Inverter Voltage
modbus_controller_id: sunsynk_esphome
name: "SS Grid Inverter Voltage"
id: sunsynk_esphome_grid_inverter_voltage
register_type: holding
address: 154
unit_of_measurement: "V"
accuracy_decimals: 1
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /10;
else return (x) /10;
device_class: voltage
state_class: measurement
- platform: modbus_controller # 167 Grid Inverter Load
modbus_controller_id: sunsynk_esphome
name: "SS Grid Inverter Load"
id: sunsynk_esphome_grid_inverter_load
register_type: holding
address: 167
unit_of_measurement: "W"
accuracy_decimals: 0
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
device_class: power
state_class: measurement
- platform: modbus_controller # 169 Grid Power
modbus_controller_id: sunsynk_esphome
name: "SS Grid Power"
id: sunsynk_esphome_grid_power
register_type: holding
address: 169
unit_of_measurement: "W"
accuracy_decimals: 0
device_class: power
state_class: measurement
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 175 Inverter Output Power
modbus_controller_id: sunsynk_esphome
name: "SS Inverter Output Power"
id: sunsynk_esphome_inverter_output_power
register_type: holding
address: 175
unit_of_measurement: "W"
accuracy_decimals: 1
device_class: power
filters: #GOOD
- lambda: |-
if (x > 32767) return (0 - x + 65535) /-1;
else return (0 - x) /-1;
- platform: modbus_controller # 178 Load Power
modbus_controller_id: sunsynk_esphome
name: "SS Load Power"
id: sunsynk_esphome_load_power
register_type: holding
address: 178
unit_of_measurement: "W"
accuracy_decimals: 0
device_class: power
state_class: measurement
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 181 Gen Power - I think
modbus_controller_id: sunsynk_esphome
name: "SS Gen Power"
id: sunsynk_esphome_gen_power
register_type: holding
address: 181
unit_of_measurement: "W"
accuracy_decimals: 0
device_class: power
state_class: measurement
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 182 Battery Temperature
modbus_controller_id: sunsynk_esphome
name: "SS Battery Temperature"
id: sunsynk_esphome_battery_temperature
register_type: holding
address: 182
unit_of_measurement: "°C"
accuracy_decimals: 1
device_class: temperature
state_class: measurement
filters: # GOOD
- lambda: |-
if (x > 32767) return ((x - 65535)-1000) / 10;
else return ((x)-1000) / 10;
- platform: modbus_controller # 183 Battery Voltage
modbus_controller_id: sunsynk_esphome
name: "SS Battery Voltage"
id: sunsynk_esphome_battery_voltage
register_type: holding
address: 183
unit_of_measurement: "V"
accuracy_decimals: 1
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) / 100;
else return x / 100;
device_class: voltage
state_class: measurement
- platform: modbus_controller # 184 Battery SOC
modbus_controller_id: sunsynk_esphome
name: "SS Battery SOC"
id: sunsynk_esphome_battery_soc
register_type: holding
address: 184
unit_of_measurement: "%"
accuracy_decimals: 0
device_class: battery
state_class: measurement
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller #186 PV1 Power
modbus_controller_id: sunsynk_esphome
name: "SS PV1 Power"
id: sunsynk_esphome_pv1_power
register_type: holding
address: 186
unit_of_measurement: "W"
accuracy_decimals: 2
device_class: power
state_class: measurement
- platform: modbus_controller #187 PV2 Power
modbus_controller_id: sunsynk_esphome
name: "SS PV2 Power"
id: sunsynk_esphome_pv2_power
register_type: holding
address: 187
unit_of_measurement: "W"
accuracy_decimals: 2
device_class: power
state_class: measurement
#- platform: modbus_controller #188 PV3 Power
# modbus_controller_id: sunsynk_esphome
# name: "SS PV3 Power"
# id: sunsynk_esphome_pv3_power
# register_type: holding
# address: 188
# unit_of_measurement: "W"
# accuracy_decimals: 2
# device_class: power
# state_class: measurement
#- platform: modbus_controller #189 PV4 Power
# modbus_controller_id: sunsynk_esphome
# name: "SS PV4 Power"
# id: sunsynk_esphome_pv4_power
# register_type: holding
# address: 189
# unit_of_measurement: "W"
# accuracy_decimals: 2
# device_class: power
# state_class: measurement
- platform: modbus_controller #190 Battery Output power
modbus_controller_id: sunsynk_esphome
name: "SS Battery output power"
id: sunsynk_esphome_Battery_output_power
register_type: holding
address: 190
unit_of_measurement: "W"
accuracy_decimals: 2
device_class: power
state_class: measurement
- platform: modbus_controller # 191 Battery Output Current
modbus_controller_id: sunsynk_esphome
name: "SS Battery Output Current"
id: sunsynk_esphome_battery_output_current
register_type: holding
address: 191
unit_of_measurement: "A"
accuracy_decimals: 1
device_class: current
state_class: measurement
filters: #GOOD
- lambda: |-
if (x > 32767) return (0 - x + 65535) /100;
else return (0 - x) /100;
- platform: modbus_controller # 216 Battery Charging Efficiency
modbus_controller_id: sunsynk_esphome
name: "SS Battery Charging Efficiency"
id: sunsynk_esphome_battery_charging_efficiency
register_type: holding
address: 216
unit_of_measurement: "%"
accuracy_decimals: 1
device_class: battery
state_class: measurement
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /10;
else return (x) /10;
- platform: modbus_controller # 312 Battery Charge Voltage
modbus_controller_id: sunsynk_esphome
name: "SS Battery Charge Voltage"
id: sunsynk_esphome_battery_charge_voltage
register_type: holding
address: 312
unit_of_measurement: "V"
accuracy_decimals: 1
filters: #GOOD
- lambda: |-
x = x / -1;
if (x > 32767) return (0 - x + 65535) /100;
else return (0 - x) /100;
device_class: voltage
state_class: measurement
############################################### BINARY SENSORS ###############################################
binary_sensor:
- platform: modbus_controller # 194 Grid Connected Status
modbus_controller_id: sunsynk_esphome
name: "SS Grid Connected Status"
id: sunsynk_esphome_grid_connected_status
register_type: holding
address: 194
############################################### BINARY SENSORS SETTINGS ###############################################
- platform: modbus_controller # 248 Settings Use Timer Enabled
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Use Timer Enabled"
id: sunsynk_esphome_setting_use_timer_enabled
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 248
bitmask: 1
- platform: modbus_controller # 244 Settings Load Limit Enabled
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Load Limit Enabled"
id: sunsynk_esphome_setting_load_limit2
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 244
- platform: modbus_controller # 274 Settings Grid Charge Timezone1
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Grid Charge Timezone1"
id: sunsynk_esphome_setting_grid_charge_timezone1
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 274
- platform: modbus_controller # 275 Settings Grid Charge Timezone2
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Grid Charge Timezone2"
id: sunsynk_esphome_setting_grid_charge_timezone2
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 275
- platform: modbus_controller # 276 Settings Grid Charge Timezone3
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Grid Charge Timezone3"
id: sunsynk_esphome_setting_grid_charge_timezone3
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 276
- platform: modbus_controller # 277 Settings Grid Charge Timezone4
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Grid Charge Timezone4"
id: sunsynk_esphome_setting_grid_charge_timezone4
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 277
- platform: modbus_controller # 278 Settings Grid Charge Timezone5
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Grid Charge Timezone5"
id: sunsynk_esphome_setting_grid_charge_timezone5
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 278
- platform: modbus_controller # 279 Settings Grid Charge Timezone6
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Grid Charge Timezone6"
id: sunsynk_esphome_setting_grid_charge_timezone6
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 279
- platform: modbus_controller # 247 Settings Solar Export Enabled
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Solar Export Enabled"
id: sunsynk_esphome_setting_solar_export_enabled
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 247
- platform: modbus_controller # 232 Settings Battery Grid Charge Enabled
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Battery Grid Charge Enabled"
id: sunsynk_esphome_setting_battery_grid_charge_enabled
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 232
############################################### TEXT SENSORS SETTINGS ###############################################
text_sensor:
- platform: modbus_controller # 243 Settings Energy Management Model (PL)
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Energy Management Model"
id: sunsynk_esphome_setting_energy_management_model
register_type: holding
skip_updates: ${settings_skipped_updates}
raw_encode: HEXBYTES
address: 243
lambda: |-
uint16_t value = modbus_controller::word_from_hex_str(x, 0);
switch (value) {
case 0: return std::string("Battery Priority Mode");
case 1: return std::string("Load First Mode");
default: return std::string("Unknown");
}
- platform: modbus_controller # 059 Overall State
modbus_controller_id: sunsynk_esphome
name: "SS Overall State"
id: sunsynk_esphome_overall_state
register_type: holding
skip_updates: ${settings_skipped_updates}
raw_encode: HEXBYTES
address: 59
lambda: |- # It is not clear what each of these states mean. TODO Fill in the string values once known
uint16_t value = modbus_controller::word_from_hex_str(x, 0);
switch (value) {
case 0: return std::string("0");
case 1: return std::string("1");
case 2: return std::string("2");
case 3: return std::string("3");
case 4: return std::string("4");
case 5: return std::string("5");
default: return std::string("Unknown");
}