forked from snaptec/openWB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
loadvars.sh
1190 lines (1138 loc) · 44.7 KB
/
loadvars.sh
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
#!/bin/bash
loadvars(){
#reload mqtt vars
renewmqtt=$(</var/www/html/openWB/ramdisk/renewmqtt)
if (( renewmqtt == 1 )); then
echo 0 > /var/www/html/openWB/ramdisk/renewmqtt
echo 01 | tee ramdisk/mqtt*
fi
#get temp vars
sofortll=$(<ramdisk/lp1sofortll)
sofortlls1=$(<ramdisk/lp2sofortll)
sofortlls2=$(<ramdisk/lp3sofortll)
sofortlllp4=$(<ramdisk/lp4sofortll)
sofortlllp5=$(<ramdisk/lp5sofortll)
sofortlllp6=$(<ramdisk/lp6sofortll)
sofortlllp7=$(<ramdisk/lp7sofortll)
sofortlllp8=$(<ramdisk/lp8sofortll)
#get oldvars for mqtt
opvwatt=$(<ramdisk/mqttpvwatt)
owattbezug=$(<ramdisk/mqttwattbezug)
ollaktuell=$(<ramdisk/mqttladeleistunglp1)
ohausverbrauch=$(<ramdisk/mqtthausverbrauch)
ollkombiniert=$(<ramdisk/llkombiniert)
ollaktuells1=$(<ramdisk/mqttladeleistungs1)
ollaktuells2=$(<ramdisk/mqttladeleistungs2)
ospeicherleistung=$(<ramdisk/mqttspeicherleistung)
oladestatus=$(<ramdisk/mqttlastladestatus)
olademodus=$(<ramdisk/mqttlastlademodus)
osoc=$(<ramdisk/mqttsoc)
osoc1=$(<ramdisk/mqttsoc1)
ospeichersoc=$(<ramdisk/mqttspeichersoc)
ladestatus=$(</var/www/html/openWB/ramdisk/ladestatus)
odailychargelp1=$(<ramdisk/mqttdailychargelp1)
odailychargelp2=$(<ramdisk/mqttdailychargelp2)
odailychargelp3=$(<ramdisk/mqttdailychargelp3)
oaktgeladens1=$(<ramdisk/mqttaktgeladens1)
oaktgeladens2=$(<ramdisk/mqttaktgeladens2)
oaktgeladen=$(<ramdisk/mqttaktgeladen)
orestzeitlp1=$(<ramdisk/mqttrestzeitlp1)
orestzeitlp2=$(<ramdisk/mqttrestzeitlp2)
orestzeitlp3=$(<ramdisk/mqttrestzeitlp3)
ogelrlp1=$(<ramdisk/mqttgelrlp1)
ogelrlp2=$(<ramdisk/mqttgelrlp2)
ogelrlp3=$(<ramdisk/mqttgelrlp3)
olastregelungaktiv=$(<ramdisk/lastregelungaktiv)
ohook1aktiv=$(<ramdisk/hook1akt)
ohook2aktiv=$(<ramdisk/hook2akt)
ohook3aktiv=$(<ramdisk/hook3akt)
lp1enabled=$(<ramdisk/lp1enabled)
lp2enabled=$(<ramdisk/lp2enabled)
lp3enabled=$(<ramdisk/lp3enabled)
lp4enabled=$(<ramdisk/lp4enabled)
lp5enabled=$(<ramdisk/lp5enabled)
lp6enabled=$(<ramdisk/lp6enabled)
lp7enabled=$(<ramdisk/lp7enabled)
lp8enabled=$(<ramdisk/lp8enabled)
version=$(<web/version)
# EVSE DIN Plug State
if [[ $evsecon == "modbusevse" ]]; then
evseplugstate=$(sudo python runs/readmodbus.py $modbusevsesource $modbusevseid 1002 1)
ladestatuslp1=$(</var/www/html/openWB/ramdisk/ladestatus)
if [ "$evseplugstate" -ge "0" ] && [ "$evseplugstate" -le "10" ] ; then
if [[ $evseplugstate > "1" ]]; then
plugstat=$(</var/www/html/openWB/ramdisk/plugstat)
if [[ $plugstat == "0" ]] ; then
if [[ $pushbplug == "1" ]] && [[ $ladestatuslp1 == "0" ]] && [[ $pushbenachrichtigung == "1" ]] ; then
message="Fahrzeug eingesteckt. Ladung startet bei erfüllter Ladebedingung automatisch."
/var/www/html/openWB/runs/pushover.sh "$message"
fi
if [[ $displayconfigured == "1" ]] && [[ $displayEinBeimAnstecken == "1" ]] ; then
export DISPLAY=:0 && xset dpms force on && xset dpms $displaysleep $displaysleep $displaysleep
fi
fi
echo 1 > /var/www/html/openWB/ramdisk/plugstat
plugstat=1
else
echo 0 > /var/www/html/openWB/ramdisk/plugstat
plugstat=0
fi
if [[ $evseplugstate > "2" ]] && [[ $ladestatuslp1 == "1" ]] && [[ $lp1enabled == "1" ]]; then
echo 1 > /var/www/html/openWB/ramdisk/chargestat
chargestat=1
else
echo 0 > /var/www/html/openWB/ramdisk/chargestat
chargestat=0
fi
fi
fi
if [[ $evsecon == "ipevse" ]]; then
evseplugstatelp1=$(sudo python runs/readipmodbus.py $evseiplp1 $evseidlp1 1002 1)
ladestatuslp1=$(</var/www/html/openWB/ramdisk/ladestatus)
if [[ $evseplugstatelp1 > "1" ]]; then
echo 1 > /var/www/html/openWB/ramdisk/plugstat
else
echo 0 > /var/www/html/openWB/ramdisk/plugstat
fi
if [[ $evseplugstatelp1 > "2" ]] && [[ $ladestatuslp1 == "1" ]] && [[ $lp1enabled == "1" ]]; then
echo 1 > /var/www/html/openWB/ramdisk/chargestat
else
echo 0 > /var/www/html/openWB/ramdisk/chargestat
fi
fi
if [[ $lastmanagement == "1" ]]; then
if [[ $evsecons1 == "modbusevse" ]]; then
evseplugstatelp2=$(sudo python runs/readmodbus.py $evsesources1 $evseids1 1002 1)
ladestatuss1=$(</var/www/html/openWB/ramdisk/ladestatuss1)
if [[ $evseplugstatelp2 > "0" ]] && [[ $evseplugstatelp2 < "7" ]] ; then
if [[ $evseplugstatelp2 > "1" ]]; then
plugstat2=$(</var/www/html/openWB/ramdisk/plugstats1)
if [[ $plugstat2 == "0" ]] ; then
if [[ $displayconfigured == "1" ]] && [[ $displayEinBeimAnstecken == "1" ]] ; then
export DISPLAY=:0 && xset dpms force on && xset dpms $displaysleep $displaysleep $displaysleep
fi
fi
echo 1 > /var/www/html/openWB/ramdisk/plugstats1
plugstat2=1
else
echo 0 > /var/www/html/openWB/ramdisk/plugstats1
plugstat2=0
fi
if [[ $evseplugstatelp2 > "2" ]] && [[ $ladestatuss1 == "1" ]] ; then
echo 1 > /var/www/html/openWB/ramdisk/chargestats1
else
echo 0 > /var/www/html/openWB/ramdisk/chargestats1
fi
fi
fi
if [[ $evsecons1 == "slaveeth" ]]; then
evseplugstatelp2=$(sudo python runs/readslave.py 1002 1)
ladestatuss1=$(</var/www/html/openWB/ramdisk/ladestatuss1)
if [[ $evseplugstatelp2 > "1" ]]; then
echo 1 > /var/www/html/openWB/ramdisk/plugstats1
else
echo 0 > /var/www/html/openWB/ramdisk/plugstats1
fi
if [[ $evseplugstatelp2 > "2" ]] && [[ $ladestatuss1 == "1" ]] ; then
echo 1 > /var/www/html/openWB/ramdisk/chargestats1
else
echo 0 > /var/www/html/openWB/ramdisk/chargestats1
fi
fi
if [[ $evsecons1 == "ipevse" ]]; then
evseplugstatelp2=$(sudo python runs/readipmodbus.py $evseiplp2 $evseidlp2 1002 1)
ladestatuslp2=$(</var/www/html/openWB/ramdisk/ladestatuss1)
if [[ $evseplugstatelp2 > "1" ]]; then
echo 1 > /var/www/html/openWB/ramdisk/plugstats1
else
echo 0 > /var/www/html/openWB/ramdisk/plugstats1
fi
if [[ $evseplugstatelp2 > "2" ]] && [[ $ladestatuslp2 == "1" ]] && [[ $lp2enabled == "1" ]]; then
echo 1 > /var/www/html/openWB/ramdisk/chargestats1
else
echo 0 > /var/www/html/openWB/ramdisk/chargestats1
fi
fi
plugstatlp2=$(<ramdisk/plugstats1)
chargestatlp2=$(<ramdisk/chargestats1)
fi
if [[ $lastmanagements2 == "1" ]]; then
if [[ $evsecons2 == "ipevse" ]]; then
evseplugstatelp3=$(sudo python runs/readipmodbus.py $evseiplp3 $evseidlp3 1002 1)
ladestatuslp3=$(</var/www/html/openWB/ramdisk/ladestatuss2)
if [[ $evseplugstatelp3 > "1" ]]; then
echo 1 > /var/www/html/openWB/ramdisk/plugstatlp3
else
echo 0 > /var/www/html/openWB/ramdisk/plugstatlp3
fi
if [[ $evseplugstatelp3 > "2" ]] && [[ $ladestatuslp3 == "1" ]] && [[ $lp3enabled == "1" ]]; then
echo 1 > /var/www/html/openWB/ramdisk/chargestatlp3
else
echo 0 > /var/www/html/openWB/ramdisk/chargestatlp3
fi
fi
if [[ $evsecons2 == "modbusevse" ]]; then
evseplugstatelp3=$(sudo python runs/readmodbus.py $evsesources2 $evseids2 1002 1)
ladestatuss2=$(</var/www/html/openWB/ramdisk/ladestatuss2)
if [[ $evseplugstatelp3 > "1" ]]; then
echo 1 > /var/www/html/openWB/ramdisk/plugstatlp3
else
echo 0 > /var/www/html/openWB/ramdisk/plugstatlp3
fi
if [[ $evseplugstatelp3 > "2" ]] && [[ $ladestatuss2 == "1" ]] ; then
echo 1 > /var/www/html/openWB/ramdisk/chargestatlp3
else
echo 0 > /var/www/html/openWB/ramdisk/chargestatlp3
fi
fi
fi
if [[ $lastmanagementlp4 == "1" ]]; then
if [[ $evseconlp4 == "ipevse" ]]; then
evseplugstatelp4=$(sudo python runs/readipmodbus.py $evseiplp4 $evseidlp4 1002 1)
ladestatuslp4=$(</var/www/html/openWB/ramdisk/ladestatuslp4)
if [[ $evseplugstatelp4 > "1" ]]; then
echo 1 > /var/www/html/openWB/ramdisk/plugstatlp4
else
echo 0 > /var/www/html/openWB/ramdisk/plugstatlp4
fi
if [[ $evseplugstatelp4 > "2" ]] && [[ $ladestatuslp4 == "1" ]] && [[ $lp4enabled == "1" ]]; then
echo 1 > /var/www/html/openWB/ramdisk/chargestatlp4
else
echo 0 > /var/www/html/openWB/ramdisk/chargestatlp4
fi
fi
fi
if [[ $lastmanagementlp5 == "1" ]]; then
if [[ $evseconlp5 == "ipevse" ]]; then
evseplugstatelp5=$(sudo python runs/readipmodbus.py $evseiplp5 $evseidlp5 1002 1)
ladestatuslp5=$(</var/www/html/openWB/ramdisk/ladestatuslp5)
if [[ $evseplugstatelp5 > "1" ]]; then
echo 1 > /var/www/html/openWB/ramdisk/plugstatlp5
else
echo 0 > /var/www/html/openWB/ramdisk/plugstatlp5
fi
if [[ $evseplugstatelp5 > "2" ]] && [[ $ladestatuslp5 == "1" ]] && [[ $lp5enabled == "1" ]] ; then
echo 1 > /var/www/html/openWB/ramdisk/chargestatlp5
else
echo 0 > /var/www/html/openWB/ramdisk/chargestatlp5
fi
fi
fi
if [[ $lastmanagementlp6 == "1" ]]; then
if [[ $evseconlp6 == "ipevse" ]]; then
evseplugstatelp6=$(sudo python runs/readipmodbus.py $evseiplp6 $evseidlp6 1002 1)
ladestatuslp6=$(</var/www/html/openWB/ramdisk/ladestatuslp6)
if [[ $evseplugstatelp6 > "1" ]]; then
echo 1 > /var/www/html/openWB/ramdisk/plugstatlp6
else
echo 0 > /var/www/html/openWB/ramdisk/plugstatlp6
fi
if [[ $evseplugstatelp6 > "2" ]] && [[ $ladestatuslp6 == "1" ]] && [[ $lp6enabled == "1" ]] ; then
echo 1 > /var/www/html/openWB/ramdisk/chargestatlp6
else
echo 0 > /var/www/html/openWB/ramdisk/chargestatlp6
fi
fi
fi
if [[ $lastmanagementlp7 == "1" ]]; then
if [[ $evseconlp7 == "ipevse" ]]; then
evseplugstatelp7=$(sudo python runs/readipmodbus.py $evseiplp7 $evseidlp7 1002 1)
ladestatuslp7=$(</var/www/html/openWB/ramdisk/ladestatuslp7)
if [[ $evseplugstatelp7 > "1" ]]; then
echo 1 > /var/www/html/openWB/ramdisk/plugstatlp7
else
echo 0 > /var/www/html/openWB/ramdisk/plugstatlp7
fi
if [[ $evseplugstatelp7 > "2" ]] && [[ $ladestatuslp7 == "1" ]] && [[ $lp7enabled == "1" ]] ; then
echo 1 > /var/www/html/openWB/ramdisk/chargestatlp7
else
echo 0 > /var/www/html/openWB/ramdisk/chargestatlp7
fi
fi
fi
if [[ $lastmanagementlp8 == "1" ]]; then
if [[ $evseconlp8 == "ipevse" ]]; then
evseplugstatelp8=$(sudo python runs/readipmodbus.py $evseiplp8 $evseidlp8 1002 1)
ladestatuslp8=$(</var/www/html/openWB/ramdisk/ladestatuslp8)
if [[ $evseplugstatelp8 > "1" ]]; then
echo 1 > /var/www/html/openWB/ramdisk/plugstatlp8
else
echo 0 > /var/www/html/openWB/ramdisk/plugstatlp8
fi
if [[ $evseplugstatelp8 > "2" ]] && [[ $ladestatuslp8 == "1" ]] && [[ $lp8enabled == "1" ]] ; then
echo 1 > /var/www/html/openWB/ramdisk/chargestatlp8
else
echo 0 > /var/www/html/openWB/ramdisk/chargestatlp8
fi
fi
fi
# Lastmanagement var check age
if test $(find "ramdisk/lastregelungaktiv" -mmin +2); then
echo "" > ramdisk/lastregelungaktiv
fi
# Werte für die Berechnung ermitteln
lademodus=$(</var/www/html/openWB/ramdisk/lademodus)
if [ -z "$lademodus" ] ; then
mosquitto_pub -r -t "openWB/set/ChargeMode" -m "$bootmodus"
lademodus=$bootmodus
fi
llalt=$(cat /var/www/html/openWB/ramdisk/llsoll)
#PV Leistung ermitteln
if [[ $pvwattmodul != "none" ]]; then
pvwatt=$(modules/$pvwattmodul/main.sh || true)
if ! [[ $pvwatt =~ $re ]] ; then
pvwatt="0"
fi
else
pvwatt=$(</var/www/html/openWB/ramdisk/pvwatt)
fi
#Speicher werte
if [[ $speichermodul != "none" ]] ; then
timeout 5 modules/$speichermodul/main.sh || true
speicherleistung=$(</var/www/html/openWB/ramdisk/speicherleistung)
speichersoc=$(</var/www/html/openWB/ramdisk/speichersoc)
speichersoc=$(echo $speichersoc | sed 's/\..*$//')
speichervorhanden="1"
echo 1 > /var/www/html/openWB/ramdisk/speichervorhanden
if [[ $speichermodul == "speicher_alphaess" ]] ; then
pvwatt=$(</var/www/html/openWB/ramdisk/pvwatt)
fi
if [[ $speichermodul == "speicher_e3dc" ]] ; then
pvwatt=$(</var/www/html/openWB/ramdisk/pvwatt)
fi
if [[ $speichermodul == "speicher_sonneneco" ]] ; then
pvwatt=$(</var/www/html/openWB/ramdisk/pvwatt)
fi
else
speichervorhanden="0"
echo 0 > /var/www/html/openWB/ramdisk/speichervorhanden
fi
#Ladeleistung ermitteln
if [[ $ladeleistungmodul != "none" ]]; then
timeout 10 modules/$ladeleistungmodul/main.sh || true
llkwh=$(</var/www/html/openWB/ramdisk/llkwh)
llkwhges=$llkwh
lla1=$(cat /var/www/html/openWB/ramdisk/lla1)
lla2=$(cat /var/www/html/openWB/ramdisk/lla2)
lla3=$(cat /var/www/html/openWB/ramdisk/lla3)
lla1=$(echo $lla1 | sed 's/\..*$//')
lla2=$(echo $lla2 | sed 's/\..*$//')
lla3=$(echo $lla3 | sed 's/\..*$//')
ladeleistung=$(cat /var/www/html/openWB/ramdisk/llaktuell)
ladeleistunglp1=$ladeleistung
if ! [[ $lla1 =~ $re ]] ; then
lla1="0"
fi
if ! [[ $lla2 =~ $re ]] ; then
lla2="0"
fi
if ! [[ $lla3 =~ $re ]] ; then
lla3="0"
fi
if ! [[ $ladeleistung =~ $re ]] ; then
ladeleistung="0"
fi
ladestatus=$(</var/www/html/openWB/ramdisk/ladestatus)
else
lla1=0
lla2=0
lla3=0
ladeleistung=0
llkwh=0
llkwhges=$llkwh
fi
#zweiter ladepunkt
if [[ $lastmanagement == "1" ]]; then
if [[ $socmodul1 != "none" ]]; then
timeout 10 modules/$socmodul1/main.sh || true
soc1=$(</var/www/html/openWB/ramdisk/soc1)
if ! [[ $soc1 =~ $re ]] ; then
soc1="0"
fi
soc1vorhanden=1
echo 1 > /var/www/html/openWB/ramdisk/soc1vorhanden
else
echo 0 > /var/www/html/openWB/ramdisk/soc1vorhanden
soc1=0
soc1vorhanden=0
fi
timeout 10 modules/$ladeleistungs1modul/main.sh || true
llkwhs1=$(</var/www/html/openWB/ramdisk/llkwhs1)
llkwhges=$(echo "$llkwhges + $llkwhs1" |bc)
llalts1=$(cat /var/www/html/openWB/ramdisk/llsolls1)
ladeleistungs1=$(cat /var/www/html/openWB/ramdisk/llaktuells1)
ladeleistunglp2=$ladeleistungs1
llas11=$(cat /var/www/html/openWB/ramdisk/llas11)
llas12=$(cat /var/www/html/openWB/ramdisk/llas12)
llas13=$(cat /var/www/html/openWB/ramdisk/llas13)
llas11=$(echo $llas11 | sed 's/\..*$//')
llas12=$(echo $llas12 | sed 's/\..*$//')
llas13=$(echo $llas13 | sed 's/\..*$//')
ladestatuss1=$(</var/www/html/openWB/ramdisk/ladestatuss1)
if ! [[ $ladeleistungs1 =~ $re ]] ; then
ladeleistungs1="0"
fi
ladeleistung=$(( ladeleistung + ladeleistungs1 ))
echo "$ladeleistung" > /var/www/html/openWB/ramdisk/llkombiniert
else
echo "$ladeleistung" > /var/www/html/openWB/ramdisk/llkombiniert
ladeleistunglp2=0
soc1vorhanden=0
fi
#dritter ladepunkt
if [[ $lastmanagements2 == "1" ]]; then
timeout 10 modules/$ladeleistungs2modul/main.sh || true
llkwhs2=$(</var/www/html/openWB/ramdisk/llkwhs2)
llkwhges=$(echo "$llkwhges + $llkwhs2" |bc)
llalts2=$(cat /var/www/html/openWB/ramdisk/llsolls2)
ladeleistungs2=$(cat /var/www/html/openWB/ramdisk/llaktuells2)
ladeleistunglp3=$ladeleistungs2
llas21=$(cat /var/www/html/openWB/ramdisk/llas21)
llas22=$(cat /var/www/html/openWB/ramdisk/llas22)
llas23=$(cat /var/www/html/openWB/ramdisk/llas23)
llas21=$(echo $llas21 | sed 's/\..*$//')
llas22=$(echo $llas22 | sed 's/\..*$//')
llas23=$(echo $llas23 | sed 's/\..*$//')
ladestatuss2=$(</var/www/html/openWB/ramdisk/ladestatuss2)
if ! [[ $ladeleistungs2 =~ $re ]] ; then
ladeleistungs2="0"
fi
ladeleistung=$(( ladeleistung + ladeleistungs2 ))
echo "$ladeleistung" > /var/www/html/openWB/ramdisk/llkombiniert
else
echo "$ladeleistung" > /var/www/html/openWB/ramdisk/llkombiniert
ladeleistungs2="0"
ladeleistunglp3=0
fi
#vierter ladepunkt
if [[ $lastmanagementlp4 == "1" ]]; then
timeout 3 modules/mpm3pmlllp4/main.sh || true
llkwhlp4=$(</var/www/html/openWB/ramdisk/llkwhlp4)
llkwhges=$(echo "$llkwhges + $llkwhlp4" |bc)
llaltlp4=$(cat /var/www/html/openWB/ramdisk/llsolllp4)
ladeleistunglp4=$(cat /var/www/html/openWB/ramdisk/llaktuelllp4)
lla1lp4=$(cat /var/www/html/openWB/ramdisk/lla1lp4)
lla2lp4=$(cat /var/www/html/openWB/ramdisk/lla2lp4)
lla3lp4=$(cat /var/www/html/openWB/ramdisk/lla3lp4)
lla1lp4=$(echo $lla1lp4 | sed 's/\..*$//')
lla2lp4=$(echo $lla2lp4 | sed 's/\..*$//')
lla3lp4=$(echo $lla3lp4 | sed 's/\..*$//')
ladestatuslp4=$(</var/www/html/openWB/ramdisk/ladestatuslp4)
if ! [[ $ladeleistunglp4 =~ $re ]] ; then
ladeleistunglp4="0"
fi
ladeleistung=$(( ladeleistung + ladeleistunglp4 ))
else
ladeleistunglp4=0
fi
#fünfter ladepunkt
if [[ $lastmanagementlp5 == "1" ]]; then
timeout 3 modules/mpm3pmlllp5/main.sh || true
llkwhlp5=$(</var/www/html/openWB/ramdisk/llkwhlp5)
llkwhges=$(echo "$llkwhges + $llkwhlp5" |bc)
llaltlp5=$(cat /var/www/html/openWB/ramdisk/llsolllp5)
ladeleistunglp5=$(cat /var/www/html/openWB/ramdisk/llaktuelllp5)
lla1lp5=$(cat /var/www/html/openWB/ramdisk/lla1lp5)
lla2lp5=$(cat /var/www/html/openWB/ramdisk/lla2lp5)
lla3lp5=$(cat /var/www/html/openWB/ramdisk/lla3lp5)
lla1lp5=$(echo $lla1lp5 | sed 's/\..*$//')
lla2lp5=$(echo $lla2lp5 | sed 's/\..*$//')
lla3lp5=$(echo $lla3lp5 | sed 's/\..*$//')
ladestatuslp5=$(</var/www/html/openWB/ramdisk/ladestatuslp5)
if ! [[ $ladeleistunglp5 =~ $re ]] ; then
ladeleistunglp5="0"
fi
ladeleistung=$(( ladeleistung + ladeleistunglp5 ))
else
ladeleistunglp5=0
fi
#sechster ladepunkt
if [[ $lastmanagementlp6 == "1" ]]; then
timeout 3 modules/mpm3pmlllp6/main.sh || true
llkwhlp6=$(</var/www/html/openWB/ramdisk/llkwhlp6)
llkwhges=$(echo "$llkwhges + $llkwhlp6" |bc)
llaltlp6=$(cat /var/www/html/openWB/ramdisk/llsolllp6)
ladeleistunglp6=$(cat /var/www/html/openWB/ramdisk/llaktuelllp6)
lla1lp6=$(cat /var/www/html/openWB/ramdisk/lla1lp6)
lla2lp6=$(cat /var/www/html/openWB/ramdisk/lla2lp6)
lla3lp6=$(cat /var/www/html/openWB/ramdisk/lla3lp6)
lla1lp6=$(echo $lla1lp6 | sed 's/\..*$//')
lla2lp6=$(echo $lla2lp6 | sed 's/\..*$//')
lla3lp6=$(echo $lla3lp6 | sed 's/\..*$//')
ladestatuslp6=$(</var/www/html/openWB/ramdisk/ladestatuslp6)
if ! [[ $ladeleistunglp6 =~ $re ]] ; then
ladeleistunglp6="0"
fi
ladeleistung=$(( ladeleistung + ladeleistunglp6 ))
else
ladeleistunglp6=0
fi
#siebter ladepunkt
if [[ $lastmanagementlp7 == "1" ]]; then
timeout 3 modules/mpm3pmlllp7/main.sh || true
llkwhlp7=$(</var/www/html/openWB/ramdisk/llkwhlp7)
llkwhges=$(echo "$llkwhges + $llkwhlp7" |bc)
llaltlp7=$(cat /var/www/html/openWB/ramdisk/llsolllp7)
ladeleistunglp7=$(cat /var/www/html/openWB/ramdisk/llaktuelllp7)
lla1lp7=$(cat /var/www/html/openWB/ramdisk/lla1lp7)
lla2lp7=$(cat /var/www/html/openWB/ramdisk/lla2lp7)
lla3lp7=$(cat /var/www/html/openWB/ramdisk/lla3lp7)
lla1lp7=$(echo $lla1lp7 | sed 's/\..*$//')
lla2lp7=$(echo $lla2lp7 | sed 's/\..*$//')
lla3lp7=$(echo $lla3lp7 | sed 's/\..*$//')
ladestatuslp7=$(</var/www/html/openWB/ramdisk/ladestatuslp7)
if ! [[ $ladeleistunglp7 =~ $re ]] ; then
ladeleistunglp7="0"
fi
ladeleistung=$(( ladeleistung + ladeleistunglp7 ))
else
ladeleistunglp7=0
fi
#achter ladepunkt
if [[ $lastmanagementlp8 == "1" ]]; then
timeout 3 modules/mpm3pmlllp8/main.sh || true
llkwhlp8=$(</var/www/html/openWB/ramdisk/llkwhlp8)
llkwhges=$(echo "$llkwhges + $llkwhlp8" |bc)
llaltlp8=$(cat /var/www/html/openWB/ramdisk/llsolllp8)
ladeleistunglp8=$(cat /var/www/html/openWB/ramdisk/llaktuelllp8)
lla1lp8=$(cat /var/www/html/openWB/ramdisk/lla1lp8)
lla2lp8=$(cat /var/www/html/openWB/ramdisk/lla2lp8)
lla3lp8=$(cat /var/www/html/openWB/ramdisk/lla3lp8)
lla1lp8=$(echo $lla1lp8 | sed 's/\..*$//')
lla2lp8=$(echo $lla2lp8 | sed 's/\..*$//')
lla3lp8=$(echo $lla3lp8 | sed 's/\..*$//')
ladestatuslp8=$(</var/www/html/openWB/ramdisk/ladestatuslp8)
if ! [[ $ladeleistunglp8 =~ $re ]] ; then
ladeleistunglp8="0"
fi
ladeleistung=$(( ladeleistung + ladeleistunglp8 ))
else
ladeleistunglp8=0
fi
echo "$ladeleistung" > /var/www/html/openWB/ramdisk/llkombiniert
echo $llkwhges > ramdisk/llkwhges
#Wattbezug
if [[ $wattbezugmodul != "none" ]]; then
wattbezug=$(modules/$wattbezugmodul/main.sh || true)
if ! [[ $wattbezug =~ $re ]] ; then
wattbezug="0"
fi
#evu glaettung
if (( evuglaettungakt == 1 )); then
ganzahl=$(( evuglaettung / 10 ))
for ((i=ganzahl;i>=1;i--)); do
i2=$(( i + 1 ))
cp ramdisk/glaettung$i ramdisk/glaettung$i2
done
echo $wattbezug > ramdisk/glaettung1
for ((i=1;i<=ganzahl;i++)); do
glaettung=$(<ramdisk/glaettung$i)
glaettungw=$(( glaettung + glaettungw))
done
glaettungfinal=$((glaettungw / ganzahl))
echo $glaettungfinal > ramdisk/glattwattbezug
wattbezug=$glaettungfinal
fi
#uberschuss zur berechnung
wattbezugint=$(printf "%.0f\n" $wattbezug)
uberschuss=$((wattbezugint * -1))
if [[ $speichervorhanden == "1" ]]; then
if [[ $speicherpveinbeziehen == "1" ]]; then
if (( speicherleistung > 0 )); then
if (( speichersoc > speichersocnurpv )); then
speicherww=$((speicherleistung + speicherwattnurpv))
uberschuss=$((uberschuss + speicherww))
else
speicherww=$((speicherleistung - speichermaxwatt))
uberschuss=$((uberschuss + speicherww))
fi
fi
fi
fi
evua1=$(cat /var/www/html/openWB/ramdisk/bezuga1)
evua2=$(cat /var/www/html/openWB/ramdisk/bezuga2)
evua3=$(cat /var/www/html/openWB/ramdisk/bezuga3)
evua1=$(echo $evua1 | sed 's/\..*$//')
evua2=$(echo $evua2 | sed 's/\..*$//')
evua3=$(echo $evua3 | sed 's/\..*$//')
if ! [[ $evua1 =~ $re ]] ; then
evua1="0"
fi
if ! [[ $evua2 =~ $re ]] ; then
evua2="0"
fi
if ! [[ $evua3 =~ $re ]] ; then
evua3="0"
fi
evuas=($evua1 $evua2 $evua3)
maxevu=${evuas[0]}
for v in "${evuas[@]}"; do
if (( v > maxevu )); then maxevu=$v; fi;
done
lowevu=${evuas[0]}
for v in "${evuas[@]}"; do
if (( v < lowevu )); then lowevu=$v; fi;
done
schieflast=$(( maxevu - lowevu ))
echo $schieflast > /var/www/html/openWB/ramdisk/schieflast
else
wattbezug=$pvwatt
wattbezugint=$(printf "%.0f\n" $wattbezug)
wattbezugint=$(echo "($wattbezugint+$hausbezugnone+$ladeleistung)" |bc)
wattbezug=$wattbezugint
echo "$wattbezugint" > /var/www/html/openWB/ramdisk/wattbezug
uberschuss=$((wattbezugint * -1))
fi
#Soc ermitteln
if [[ $socmodul != "none" ]]; then
socvorhanden=1
echo 1 > /var/www/html/openWB/ramdisk/socvorhanden
if (( stopsocnotpluggedlp1 == 1 )); then
if (( plugstat == 1 )); then
timeout 10 modules/$socmodul/main.sh || true
soc=$(</var/www/html/openWB/ramdisk/soc)
if ! [[ $soc =~ $re ]] ; then
soc="0"
fi
else
echo 600 > /var/www/html/openWB/ramdisk/soctimer
soc=$(</var/www/html/openWB/ramdisk/soc)
fi
else
timeout 10 modules/$socmodul/main.sh || true
soc=$(</var/www/html/openWB/ramdisk/soc)
if ! [[ $soc =~ $re ]] ; then
soc="0"
fi
fi
else
socvorhanden=0
echo 0 > /var/www/html/openWB/ramdisk/socvorhanden
soc=0
fi
hausverbrauch=$((wattbezugint - pvwatt - ladeleistung - speicherleistung))
if (( hausverbrauch < 0 )); then
hausverbrauch=0
fi
echo $hausverbrauch > /var/www/html/openWB/ramdisk/hausverbrauch
if [[ $wattbezugmodul == "bezug_e3dc" ]] || [[ $wattbezugmodul == "bezug_kostalpiko" ]] || [[ $wattbezugmodul == "bezug_kostalplenticoreem300haus" ]] || [[ $wattbezugmodul == "bezug_sbs25" ]] || [[ $wattbezugmodul == "bezug_solarlog" ]] || [[ $wattbezugmodul == "bezug_sonneneco" ]]; then
ra='^-?[0-9]+$'
watt2=$(</var/www/html/openWB/ramdisk/wattbezug)
if [[ -e /var/www/html/openWB/ramdisk/bezugwatt0pos ]]; then
importtemp=$(</var/www/html/openWB/ramdisk/bezugwatt0pos)
else
importtemp=$(timeout 4 mosquitto_sub -t openWB/evu/WHImported_temp)
if ! [[ $importtemp =~ $ra ]] ; then
importtemp="0"
fi
dtime=$(date +"%T")
echo " $dtime loadvars read openWB/evu/WHImported_temp from mosquito $importtemp"
echo $importtemp > /var/www/html/openWB/ramdisk/bezugwatt0pos
fi
if [[ -e /var/www/html/openWB/ramdisk/bezugwatt0neg ]]; then
exporttemp=$(</var/www/html/openWB/ramdisk/bezugwatt0neg)
else
exporttemp=$(timeout 4 mosquitto_sub -t openWB/evu/WHExport_temp)
if ! [[ $exporttemp =~ $ra ]] ; then
exporttemp="0"
fi
dtime=$(date +"%T")
echo " $dtime loadvars read openWB/evu/WHExport_temp from mosquito $exporttemp"
echo $exporttemp > /var/www/html/openWB/ramdisk/bezugwatt0neg
fi
sudo python /var/www/html/openWB/runs/simcount.py $watt2 bezug bezugkwh einspeisungkwh
importtemp1=$(</var/www/html/openWB/ramdisk/bezugwatt0pos)
exporttemp1=$(</var/www/html/openWB/ramdisk/bezugwatt0neg)
if [[ $importtemp != $importtemp1 ]]; then
mosquitto_pub -t openWB/evu/WHImported_temp -r -m "$importtemp1"
fi
if [[ $exporttemp != $exporttemp1 ]]; then
mosquitto_pub -t openWB/evu/WHExport_temp -r -m "$exporttemp1"
fi
# sim bezug end
fi
if [[ $speichermodul == "speicher_e3dc" ]] || [[ $speichermodul == "speicher_byd" ]] || [[ $speichermodul == "speicher_kostalplenticore" ]] || [[ $speichermodul == "speicher_powerwall" ]] || [[ $speichermodul == "speicher_sbs25" ]] || [[ $speichermodul == "speicher_solaredge" ]] || [[ $speichermodul == "speicher_sonneneco" ]] || [[ $speichermodul == "speicher_varta" ]] || [[ $speichermodul == "speicher_victron" ]] ; then
ra='^-?[0-9]+$'
watt2=$(</var/www/html/openWB/ramdisk/speicherleistung)
if [[ -e /var/www/html/openWB/ramdisk/speicherwatt0pos ]]; then
importtemp=$(</var/www/html/openWB/ramdisk/speicherwatt0pos)
else
importtemp=$(timeout 4 mosquitto_sub -t openWB/housebattery/WHImported_temp)
if ! [[ $importtemp =~ $ra ]] ; then
importtemp="0"
fi
dtime=$(date +"%T")
echo " $dtime loadvars read openWB/housebattery/WHImported_temp from mosquito $importtemp"
echo $importtemp > /var/www/html/openWB/ramdisk/speicherwatt0pos
fi
if [[ -e /var/www/html/openWB/ramdisk/speicherwatt0neg ]]; then
exporttemp=$(</var/www/html/openWB/ramdisk/speicherwatt0neg)
else
exporttemp=$(timeout 4 mosquitto_sub -t openWB/housebattery/WHExport_temp)
if ! [[ $exporttemp =~ $ra ]] ; then
exporttemp="0"
fi
dtime=$(date +"%T")
echo " $dtime loadvars read openWB/housebattery/WHExport_temp from mosquito $exporttemp"
echo $exporttemp > /var/www/html/openWB/ramdisk/speicherwatt0neg
fi
sudo python /var/www/html/openWB/runs/simcount.py $watt2 speicher speicherikwh speicherekwh
importtemp1=$(</var/www/html/openWB/ramdisk/speicherwatt0pos)
exporttemp1=$(</var/www/html/openWB/ramdisk/speicherwatt0neg)
if [[ $importtemp != $importtemp1 ]]; then
mosquitto_pub -t openWB/housebattery/WHImported_temp -r -m "$importtemp1"
fi
if [[ $exporttemp != $exporttemp1 ]]; then
mosquitto_pub -t openWB/housebattery/WHExport_temp -r -m "$exporttemp1"
fi
# sim speicher end
fi
#Uhrzeit
date=$(date)
H=$(date +%H)
if [[ $debug == "1" ]]; then
echo "$(tail -20000 /var/www/html/openWB/ramdisk/openWB.log)" > /var/www/html/openWB/ramdisk/openWB.log
date
if [[ $speichermodul != "none" ]] ; then
echo speicherleistung $speicherleistung speichersoc $speichersoc
fi
echo pvwatt $pvwatt ladeleistung "$ladeleistung" llalt "$llalt" nachtladen "$nachtladen" nachtladen "$nachtladens1" minimalA "$minimalstromstaerke" maximalA "$maximalstromstaerke"
echo lla1 "$lla1" llas11 "$llas11" llas21 "$llas21" mindestuberschuss "$mindestuberschuss" abschaltuberschuss "$abschaltuberschuss" lademodus "$lademodus"
echo lla2 "$lla2" llas12 "$llas12" llas22 "$llas22" sofortll "$sofortll" wattbezugint "$wattbezugint" wattbezug "$wattbezug" uberschuss "$uberschuss"
echo lla3 "$lla3" llas13 "$llas13" llas23 "$llas23" soclp1 $soc soclp2 $soc1
echo evua 1 "$evua1" 2 "$evua2" 3 "$evua3"
echo lp1enabled "$lp1enabled" lp2enabled "$lp2enabled" lp3enabled "$lp3enabled"
echo plugstatlp1 "$plugstat" plugstatlp2 "$plugstatlp2" chargestatlp1 "$chargestat" chargestatlp2 "$chargestatlp2"
fi
tempPubList=""
if [[ "$opvwatt" != "$pvwatt" ]]; then
tempPubList="${tempPubList}\nopenWB/pv/W=${pvwatt}"
echo $pvwatt > ramdisk/mqttpvwatt
fi
if [[ "$owattbezug" != "$wattbezug" ]]; then
tempPubList="${tempPubList}\nopenWB/evu/W=${wattbezug}"
echo $wattbezug > ramdisk/mqttwattbezug
fi
if [[ "$ollaktuell" != "$ladeleistunglp1" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/1/W=${ladeleistunglp1}"
echo $ladeleistunglp1 > ramdisk/mqttladeleistunglp1
fi
if [[ "$oladestatus" != "$ladestatus" ]]; then
tempPubList="${tempPubList}\nopenWB/ChargeStatus=${ladelestatus}"
echo $ladestatus > ramdisk/mqttlastladestatus
fi
if [[ "$olademodus" != "$lademodus" ]]; then
tempPubList="${tempPubList}\nopenWB/global/ChargeMode=${lademodus}"
echo $lademodus > ramdisk/mqttlastlademodus
fi
if [[ "$ohausverbrauch" != "$hausverbrauch" ]]; then
tempPubList="${tempPubList}\nopenWB/global/WHouseConsumption=${hausverbrauch}"
echo $hausverbrauch > ramdisk/mqtthausverbrauch
fi
if [[ "$ollaktuells1" != "$ladeleistungs1" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/2/W=${ladeleistungs1}"
echo $ladeleistungs1 > ramdisk/mqttladeleistungs1
fi
if [[ "$ollaktuells2" != "$ladeleistungs2" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/3/W=${ladeleistungs2}"
echo $ladeleistungs2 > ramdisk/mqttladeleistungs2
fi
if [[ "$ollkombiniert" != "$ladeleistung" ]]; then
tempPubList="${tempPubList}\nopenWB/global/WAllChargePoints=${ladeleistung}"
echo $ladeleistung > ramdisk/mqttladeleistung
fi
if [[ "$ospeicherleistung" != "$speicherleistung" ]]; then
tempPubList="${tempPubList}\nopenWB/housebattery/W=${speicherleistung}"
echo $speichersoc > ramdisk/mqttspeicherleistung
fi
if [[ "$ospeichersoc" != "$speichersoc" ]]; then
tempPubList="${tempPubList}\nopenWB/housebattery/%Soc=${speichersoc}"
echo $speichersoc > ramdisk/mqttspeichersoc
fi
if [[ "$osoc" != "$soc" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/1/%Soc=${soc}"
echo $soc > ramdisk/mqttsoc
fi
if [[ "$osoc1" != "$soc1" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/2/%Soc=${soc1}"
echo $soc1 > ramdisk/mqttsoc1
fi
dailychargelp1=$(curl -s -X POST -d "dailychargelp1call=loadfile" http://127.0.0.1:/openWB/web/tools/dailychargelp1.php | jq -r .text)
dailychargelp2=$(curl -s -X POST -d "dailychargelp2call=loadfile" http://127.0.0.1:/openWB/web/tools/dailychargelp2.php | jq -r .text)
dailychargelp3=$(curl -s -X POST -d "dailychargelp3call=loadfile" http://127.0.0.1:/openWB/web/tools/dailychargelp3.php | jq -r .text)
restzeitlp1=$(<ramdisk/restzeitlp1)
restzeitlp2=$(<ramdisk/restzeitlp2)
restzeitlp3=$(<ramdisk/restzeitlp3)
gelrlp1=$(<ramdisk/gelrlp1)
gelrlp2=$(<ramdisk/gelrlp2)
gelrlp3=$(<ramdisk/gelrlp3)
lastregelungaktiv=$(<ramdisk/lastregelungaktiv)
hook1aktiv=$(<ramdisk/hook1akt)
hook2aktiv=$(<ramdisk/hook2akt)
hook3aktiv=$(<ramdisk/hook3akt)
if [[ "$odailychargelp1" != "$dailychargelp1" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/1/kWhDailyCharged=${dailychargelp1}"
echo $dailychargelp1 > ramdisk/mqttdailychargelp1
fi
if [[ "$odailychargelp2" != "$dailychargelp2" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/2/kWhDailyCharged=${dailychargelp2}"
echo $dailychargelp2 > ramdisk/mqttdailychargelp2
fi
if [[ "$odailychargelp3" != "$dailychargelp3" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/3/kWhDailyCharged=${dailychargelp3}"
echo $dailychargelp3 > ramdisk/mqttdailychargelp3
fi
if [[ "$orestzeitlp1" != "$restzeitlp1" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/1/TimeRemaining=${restzeitlp1}"
echo $restzeitlp1 > ramdisk/mqttrestzeitlp1
fi
if [[ "$orestzeitlp2" != "$restzeitlp2" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/2/TimeRemaining=${restzeitlp2}"
echo $restzeitlp2 > ramdisk/mqttrestzeitlp2
fi
if [[ "$orestzeitlp3" != "$restzeitlp3" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/3/TimeRemaining=${restzeitlp3}"
echo $restzeitlp3 > ramdisk/mqttrestzeitlp3
fi
if (( ogelrlp1 != gelrlp1 )); then
tempPubList="${tempPubList}\nopenWB/lp/1/kmCharged=${gelrlp1}"
echo $gelrlp1 > ramdisk/mqttgelrlp1
fi
if (( ogelrlp2 != gelrlp2 )); then
tempPubList="${tempPubList}\nopenWB/lp/2/kmCharged=${gelrlp2}"
echo $gelrlp2 > ramdisk/mqttgelrlp2
fi
if (( ogelrlp3 != gelrlp3 )); then
tempPubList="${tempPubList}\nopenWB/lp/3/kmCharged=${gelrlp3}"
echo $gelrlp3 > ramdisk/mqttgelrlp3
fi
if (( ohook1aktiv != hook1aktiv )); then
tempPubList="${tempPubList}\nopenWB/boolHook1Active=${hook1aktiv}"
echo $hook1aktiv > ramdisk/mqtthook1aktiv
fi
if (( ohook2aktiv != hook2aktiv )); then
tempPubList="${tempPubList}\nopenWB/boolHook2Active=${hook2aktiv}"
echo $hook2aktiv > ramdisk/mqtthook2aktiv
fi
if (( ohook3aktiv != hook3aktiv )); then
tempPubList="${tempPubList}\nopenWB/boolHook3Active=${hook3aktiv}"
echo $hook3aktiv > ramdisk/mqtthook3aktiv
fi
oversion=$(<ramdisk/mqttversion)
if [[ $oversion != $version ]]; then
tempPubList="${tempPubList}\nopenWB/system/Version=${version}"
echo -n "$version" > ramdisk/mqttversion
fi
ominimalstromstaerke=$(<ramdisk/mqttminimalstromstaerke)
if (( ominimalstromstaerke != minimalstromstaerke )); then
tempPubList="${tempPubList}\nopenWB/AMinimalAmpsConfigured=${minimalstromstaerke}"
echo $minimalstromstaerke > ramdisk/mqttminimalstromstaerke
fi
omaximalstromstaerke=$(<ramdisk/mqttmaximalstromstaerke)
if (( omaximalstromstaerke != maximalstromstaerke )); then
tempPubList="${tempPubList}\nopenWB/AMaximalAmpsConfigured=${maximalstromstaerke}"
echo $maximalstromstaerke > ramdisk/mqttmaximalstromstaerke
fi
osofortll=$(<ramdisk/mqttsofortll)
if (( osofortll != sofortll )); then
tempPubList="${tempPubList}\nopenWB/lp/1/ADirectModeAmps=${sofortll}"
echo $sofortll > ramdisk/mqttsofortll
fi
osofortlls1=$(<ramdisk/mqttsofortlls1)
if (( osofortlls1 != sofortlls1 )); then
tempPubList="${tempPubList}\nopenWB/lp/2/ADirectModeAmps=${sofortlls1}"
echo $sofortlls1 > ramdisk/mqttsofortlls1
fi
osofortlls2=$(<ramdisk/mqttsofortlls2)
if (( osofortlls2 != sofortlls2 )); then
tempPubList="${tempPubList}\nopenWB/lp/3/ADirectModeAmps=${sofortlls2}"
echo $sofortlls2 > ramdisk/mqttsofortlls2
fi
osofortlllp4=$(<ramdisk/mqttsofortlllp4)
if (( osofortlllp4 != sofortlllp4 )); then
tempPubList="${tempPubList}\nopenWB/lp/4/ADirectModeAmps=${sofortlllp4}"
echo $sofortlllp4 > ramdisk/mqttsofortlllp4
fi
osofortlllp5=$(<ramdisk/mqttsofortlllp5)
if (( osofortlllp5 != sofortlllp5 )); then
tempPubList="${tempPubList}\nopenWB/lp/5/ADirectModeAmps=${sofortlllp5}"
echo $sofortlllp5 > ramdisk/mqttsofortlllp5
fi
osofortlllp6=$(<ramdisk/mqttsofortlllp6)
if (( osofortlllp6 != sofortlllp6 )); then
tempPubList="${tempPubList}\nopenWB/lp/6/ADirectModeAmps=${sofortlllp6}"
echo $sofortlllp6 > ramdisk/mqttsofortlllp6
fi
osofortlllp7=$(<ramdisk/mqttsofortlllp7)
if (( osofortlllp7 != sofortlllp7 )); then
tempPubList="${tempPubList}\nopenWB/lp/7/ADirectModeAmps=${sofortlllp7}"
echo $sofortlllp7 > ramdisk/mqttsofortlllp7
fi
osofortlllp8=$(<ramdisk/mqttsofortlllp8)
if (( osofortlllp8 != sofortlllp8 )); then
tempPubList="${tempPubList}\nopenWB/lp/8/ADirectModeAmps=${sofortlllp8}"
echo $sofortlllp8 > ramdisk/mqttsofortlllp8
fi
olastmanagement=$(<ramdisk/mqttlastmanagement)
if [[ "$olastmanagement" != "$lastmanagement" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/2/boolChargePointConfigured=${lastmanagement}"
echo $lastmanagement > ramdisk/mqttlastmanagement
fi
osoc1vorhanden=$(<ramdisk/mqttsoc1vorhanden)
if [[ "$osoc1vorhanden" != "$soc1vorhanden" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/2/boolSocConfigured=${soc1vorhanden}"
echo $soc1vorhanden > ramdisk/mqttsoc1vorhanden
fi
osocvorhanden=$(<ramdisk/mqttsocvorhanden)
if [[ "$osocvorhanden" != "$socvorhanden" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/1/boolSocConfigured=${socvorhanden}"
echo $socvorhanden > ramdisk/mqttsocvorhanden
fi
olastmanagements2=$(<ramdisk/mqttlastmanagements2)
if [[ "$olastmanagements2" != "$lastmanagements2" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/3/boolChargePointConfigured=${lastmanagements2}"
echo $lastmanagements2 > ramdisk/mqttlastmanagements2
fi
olastmanagementlp4=$(<ramdisk/mqttlastmanagementlp4)
if [[ "$olastmanagementlp4" != "$lastmanagementlp4" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/4/boolChargePointConfigured=${lastmanagementlp4}"
echo $lastmanagementlp4 > ramdisk/mqttlastmanagementlp4
fi
olastmanagementlp5=$(<ramdisk/mqttlastmanagementlp5)
if [[ "$olastmanagementlp5" != "$lastmanagementlp5" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/5/boolChargePointConfigured=${lastmanagementlp5}"
echo $lastmanagementlp5 > ramdisk/mqttlastmanagementlp5
fi
olastmanagementlp6=$(<ramdisk/mqttlastmanagementlp6)
if [[ "$olastmanagementlp6" != "$lastmanagementlp6" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/6/boolChargePointConfigured=${lastmanagementlp6}"
echo $lastmanagementlp6 > ramdisk/mqttlastmanagementlp6
fi
olastmanagementlp7=$(<ramdisk/mqttlastmanagementlp7)
if [[ "$olastmanagementlp7" != "$lastmanagementlp7" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/7/boolChargePointConfigured=${lastmanagementlp7}"
echo $lastmanagementlp7 > ramdisk/mqttlastmanagementlp7
fi
olastmanagementlp8=$(<ramdisk/mqttlastmanagementlp8)
if [[ "$olastmanagementlp8" != "$lastmanagementlp8" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/8/boolChargePointConfigured=${lastmanagementlp8}"
echo $lastmanagementlp8 > ramdisk/mqttlastmanagementlp8
fi
olademstat=$(<ramdisk/mqttlademstat)
if [[ "$olademstat" != "$lademstat" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/1/boolDirectModeChargekWh=${lademstat}"
echo $lademstat > ramdisk/mqttlademstat
fi
olademstats1=$(<ramdisk/mqttlademstats1)
if [[ "$olademstats1" != "$lademstats1" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/2/boolDirectModeChargekWh=${lademstats1}"
echo $lademstats1 > ramdisk/mqttlademstats1
fi
olademstats2=$(<ramdisk/mqttlademstats2)
if [[ "$olademstats2" != "$lademstats2" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/3/boolDirectModeChargekWh=${lademstats2}"
echo $lademstats2 > ramdisk/mqttlademstats2
fi
olademkwh=$(<ramdisk/mqttlademkwh)
if (( olademkwh != lademkwh )); then
tempPubList="${tempPubList}\nopenWB/lp/1/kWhDirectModeToChargekWh=${lademkwh}"
echo $lademkwh > ramdisk/mqttlademkwh
fi
olademkwhs1=$(<ramdisk/mqttlademkwhs1)
if (( olademkwhs1 != lademkwhs1 )); then
tempPubList="${tempPubList}\nopenWB/lp/2/kWhDirectModeToChargekWh=${lademkwhs1}"
echo $lademkwhs1 > ramdisk/mqttlademkwhs1
fi
olademkwhs2=$(<ramdisk/mqttlademkwhs2)
if (( olademkwhs2 != lademkwhs2 )); then
tempPubList="${tempPubList}\nopenWB/lp/3/kWhDirectModeToChargekWh=${lademkwhs2}"
echo $lademkwhs2 > ramdisk/mqttlademkwhs2
fi
osofortsocstatlp1=$(<ramdisk/mqttsofortsocstatlp1)
if [[ "$osofortsocstatlp1" != "$sofortsocstatlp1" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/1/boolDirectChargeModeSoc=${sofortsocstatlp1}"
echo $sofortsocstatlp1 > ramdisk/mqttsofortsocstatlp1
fi
osofortsoclp1=$(<ramdisk/mqttsofortsoclp1)
if [[ "$osofortsoclp1" != "$sofortsoclp1" ]]; then
tempPubList="${tempPubList}\nopenWB/lp/1/percentDirectChargeModeSoc=${sofortsoclp1}"