-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsunsynk.yaml
1062 lines (954 loc) · 32.8 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
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# 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: "5s"
settings_skipped_updates: "10"
query_throttle: "50ms"
device_name: sunsynk
#################################### 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
encryption:
key: !secret esphome_api_key
# 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: ${modbus_update_interval}
command_throttle: ${query_throttle}
sensor:
- platform: modbus_controller #72 and 73 Battery Charge Total unsigned 32 bit integer from 2 registers low word first
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
value_type: U_DWORD_R
filters:
- multiply: 0.1
- platform: modbus_controller #74 and 75 Battery Discharge Total unsigned 32 bit integer from 2 registers low word first
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
value_type: U_DWORD_R
filters:
- multiply: 0.1
# - platform: modbus_controller # 81 abd 82 Grid Export Total (Sell) unsigned 32 bit integer from 2 registers low word first
# 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
# value_type: U_DWORD_R
# filters:
# - multiply: 0.1
## - lambda: |-
## if (x > 32767) return (x - 65535) / 10;
## else return x /10;
- platform: modbus_controller # 78 and 80 Grid Import Total (Buy) unsigned 32 bit integer from 2 registers low word first
#There is one parameter (Grid Import Total) where the values aren't on consecutive registers - 78 and 80. I don't know how to configure this & would need to read up in more detail.
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: 1
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 # 85 and 86 Load Power Total unsigned 32 bit integer from 2 registers low word first
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
value_type: U_DWORD_R
- platform: modbus_controller # 164 Inverter Output Current
modbus_controller_id: sunsynk_esphome
name: "SS Inverter Output Current"
id: sunsynk_esphome_inverter_output_current
register_type: holding
address: 164
unit_of_measurement: "A"
accuracy_decimals: 1
device_class: current
state_class: measurement
value_type: S_WORD
filters: #GOOD
- multiply: 0.01
- platform: modbus_controller # 166 Aux Output Power
modbus_controller_id: sunsynk_esphome
name: "SS Aux Output Power"
id: sunsynk_esphome_aux_output_power
register_type: holding
address: 166
unit_of_measurement: "W"
accuracy_decimals: 0
device_class: power
state_class: measurement
value_type: S_WORD
- platform: modbus_controller # 167 Grid Inverter Load - Don't use 167 - rather use 169 which is the total - Keeping this code here for now to avoid breaking the power flow card
modbus_controller_id: sunsynk_esphome
name: "SS Grid Inverter Load"
id: sunsynk_esphome_grid_inverter_load
register_type: holding
address: 169
unit_of_measurement: "W"
accuracy_decimals: 0
value_type: S_WORD
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
value_type: S_WORD
- platform: modbus_controller # 172 Grid External Power
modbus_controller_id: sunsynk_esphome
name: "SS Grid External Power"
id: sunsynk_esphome_grid_external_power
register_type: holding
address: 172
unit_of_measurement: "W"
accuracy_decimals: 0
device_class: power
state_class: measurement
value_type: S_WORD
- 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
value_type: S_WORD
- 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: 0
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: 0
device_class: power
state_class: measurement
- platform: template # Sum of PV1 and PV2 to get total PV Power
name: "SS Total Solar"
unit_of_measurement: "W"
accuracy_decimals: 0
device_class: power
state_class: measurement
lambda: |-
return (id(sunsynk_esphome_pv1_power).state + id(sunsynk_esphome_pv2_power).state)/2;
update_interval: 5s
- 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 # 184 Battery Usable SOC
modbus_controller_id: sunsynk_esphome
name: "SS Battery Usable SOC"
id: sunsynk_esphome_battery__usable_soc
register_type: holding
address: 184
unit_of_measurement: "%"
accuracy_decimals: 1
device_class: battery
state_class: measurement
filters: #GOOD
# battery normally charges to 99%, shutdown level is 20%, so subtract 19 from value and calculate as percentage divided by 80
- lambda: |-
if (x > 32767) {
int y = ((((x - 65535) -19) /80) *100) /1;
if (y > 100) return 100;
return y;
}
else {
int y = (((x -19) /80) *100) /1;
if (y > 100) return 100;
return y;
}
- 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 # 013 Firmware Control Board
modbus_controller_id: sunsynk_esphome
name: "SS Firmware Control Board"
id: sunsynk_esphome_firmware_control_board
register_type: holding
address: 13
- platform: modbus_controller # 014 Firmware Comms Board
modbus_controller_id: sunsynk_esphome
name: "SS Firmware Comms Board"
id: sunsynk_esphome_firmware_comms_board
register_type: holding
address: 14
- 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: frequency
state_class: measurement
- platform: modbus_controller #tried 60
modbus_controller_id: sunsynk_esphome
name: "SS Daily Load Power"
id: sunsynk_esphome_daily_load_power
register_type: holding
address: 84
unit_of_measurement: "kWh"
accuracy_decimals: 1
device_class: energy
state_class: total_increasing
filters:
- multiply: 0.1
- 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 # 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 # 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 # 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
- 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: 1
device_class: power
state_class: measurement
value_type: S_WORD
- 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
value_type: S_WORD
filters: #GOOD
- multiply: 0.01
- platform: modbus_controller # 192 Load Frequency
modbus_controller_id: sunsynk_esphome
name: "SS Load Frequency"
id: sunsynk_esphome_load_frequency
register_type: holding
address: 192
unit_of_measurement: "Hz"
accuracy_decimals: 2
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /100;
else return (x) /100;
device_class: frequency
state_class: measurement
- 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
# 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 # 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 #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: 1
device_class: energy
state_class: total_increasing
filters: # GOOD
- lambda: |-
if (x > 32767) return (x - 65535) / 10;
else return x /10;
- 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;
if (x > 32767) return (x - 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;
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
value_type: S_WORD
- platform: template # Calculate Essential Load
name: "SS Essential Load"
unit_of_measurement: "W"
accuracy_decimals: 0
device_class: power
state_class: measurement
lambda: |-
return abs(int(round((float(id(sunsynk_esphome_inverter_output_power).state) - float(id(sunsynk_esphome_aux_output_power).state) - float(id(sunsynk_esphome_grid_inverter_load).state)))));
update_interval: 5s
################################################ READ SETTINGS ################################################
- platform: modbus_controller # 250 Settings Timezone1
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Timezone1"
id: sunsynk_esphome_setting_timezone1
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 250
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 251 Settings Timezone2
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Timezone2"
id: sunsynk_esphome_setting_timezone2
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 251
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 252 Settings Timezone3
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Timezone3"
id: sunsynk_esphome_setting_timezone3
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 252
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 253 Settings Timezone4
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Timezone4"
id: sunsynk_esphome_setting_timezone4
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 253
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 254 Settings Timezone5
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Timezone5"
id: sunsynk_esphome_setting_timezone5
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 254
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 255 Settings Timezone6
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Timezone6"
id: sunsynk_esphome_setting_timezone6
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 255
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 268 Settings SoC Timezone1
modbus_controller_id: sunsynk_esphome
name: "SSS Setting SoC Timezone1"
id: sunsynk_esphome_setting_soc_timezone1
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 268
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 269 Settings SoC Timezone2
modbus_controller_id: sunsynk_esphome
name: "SSS Setting SoC Timezone2"
id: sunsynk_esphome_setting_soc_timezone2
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 269
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 270 Settings SoC Timezone3
modbus_controller_id: sunsynk_esphome
name: "SSS Setting SoC Timezone3"
id: sunsynk_esphome_setting_soc_timezone3
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 270
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 271 Settings SoC Timezone4
modbus_controller_id: sunsynk_esphome
name: "SSS Setting SoC Timezone4"
id: sunsynk_esphome_setting_soc_timezone4
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 271
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 272 Settings SoC Timezone5
modbus_controller_id: sunsynk_esphome
name: "SSS Setting SoC Timezone5"
id: sunsynk_esphome_setting_soc_timezone5
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 272
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 273 Settings SoC Timezone6
modbus_controller_id: sunsynk_esphome
name: "SSS Setting SoC Timezone6"
id: sunsynk_esphome_setting_soc_timezone6
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 273
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 256 Settings Sell Mode Timezone1
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Sell Mode Timezone1"
id: sunsynk_esphome_setting_sellmode_timezone1
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 256
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 257 Settings Sell Mode Timezone2
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Sell Mode Timezone2"
id: sunsynk_esphome_setting_sellmode_timezone2
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 257
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 258 Settings Sell Mode Timezone3
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Sell Mode Timezone3"
id: sunsynk_esphome_setting_sellmode_timezone3
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 258
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 259 Settings Sell Mode Timezone4
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Sell Mode Timezone4"
id: sunsynk_esphome_setting_sellmode_timezone4
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 259
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 260 Settings Sell Mode Timezone5
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Sell Mode Timezone5"
id: sunsynk_esphome_setting_sellmode_timezone5
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 260
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 261 Settings Sell Mode Timezone6
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Sell Mode Timezone6"
id: sunsynk_esphome_setting_sellmode_timezone6
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 261
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 245 Settings Export Limit
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Export Limit"
id: sunsynk_esphome_setting_export_limit
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 245
unit_of_measurement: "W"
device_class: power
state_class: measurement
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 217 Settings Battery Shutdown
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Battery Shutdown"
id: sunsynk_esphome_setting_battery_shutdown
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 217
unit_of_measurement: "%"
device_class: battery
state_class: measurement
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 219 Settings Battery Low
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Battery Low"
id: sunsynk_esphome_setting_battery_low
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 219
unit_of_measurement: "%"
device_class: battery
state_class: measurement
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 218 Settings Battery Restart
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Battery Restart"
id: sunsynk_esphome_setting_battery_restart
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 218
unit_of_measurement: "%"
device_class: battery
state_class: measurement
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 210 Settings Battery Max Charge Current
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Battery Max Charge Current"
id: sunsynk_esphome_setting_battery_max_charge_current
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 210
device_class: current
state_class: measurement
unit_of_measurement: "A"
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 211 Settings Battery Max Discharge Current
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Max Discharge Current"
id: sunsynk_esphome_setting_battery_max_discharge_current
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 211
device_class: current
state_class: measurement
unit_of_measurement: "A"
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
- platform: modbus_controller # 230 Settings Grid Charge Current
modbus_controller_id: sunsynk_esphome
name: "SSS Setting Grid Charge Current"
id: sunsynk_esphome_setting_grid_charge_current
register_type: holding
skip_updates: ${settings_skipped_updates}
address: 230
device_class: current
state_class: measurement
unit_of_measurement: "A"
filters: #GOOD
- lambda: |-
if (x > 32767) return (x - 65535) /1;
else return (x) /1;
############################################### 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 # 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