forked from Baenker/Servicemeldungen-Homematic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Servicemeldungen.js
2207 lines (1933 loc) · 93.2 KB
/
Servicemeldungen.js
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
/*******************************************************
* 29.03.19 V1.20 Komplett umgeschrieben
* UNREACH, STICKY_UNREACH, SABOTAGE hinzugefügt
* 01.04.19 V1.21 Error hinzugefügt
* 02.04.19 V1.22 Übersetung Errormeldungen eingefügt
* Unterdrückung des Logeintrags wenn kein Datenpunkt zu einen bestimmten Servicetyp vorhanden ist. Wird nur beim manuellen Starten ausgegeben
* 04.04.19 V1.23 LOWBAT, LOW_BAT und ERROR_NON_FLAT_POSITIONING hinzugefügt
* 11.04.19 V1.24 Replace von ae zu ä usw hinzugefügt (erstmal nur wenn durch obj ausgeführt)
* Status_text in eigene Function ausgelaggert
* datum seit in eigene function ausgelaggert
* FAULT_REPORTING und DEVICE_IN_BOOTLOADER hinzugefügt
* Alle globalen Variablen auf const und let geändert
* Alle Nebenfuntionen auf let und const geändert
* Update Batterieliste
* Fehler bei Sticky_Unreach beseitigt
* 17.04.19 V1.25 Timer der Push verzögert verändert.
* 23.04.19 V1.26 Texte in Array eingebaut
* Timer verändert
* 28.04.19 V1.27 Timer verändert
* 11.05.19 V1.28 Timer verändert
* 13.05.19 V1.29 bestehender Timer wird abgebrochen und stattdessen neue Push verschickt
* Config_PENDING und UPDATE_PENDING aufgenommen
* Es wird die höchste Prio je nach Servicemeldung für Pushover gewählt.
* 14.05.19 V1.30 Parameter with_time wird wieder berücksichtigt
* 24.05.19 V1.31 Paramteer write_message wird wieder berücksichtigt
* Parameter write_state wird berücksichtigt für LOWBAT, LOW_BAT, UNREACH und STICKY_UNREACH die anderen folgen später
* Datenpunkte DEVICE_IN_BOOTLOADER wurde nicht überwacht nur ausgewertet
* 27.05.19 V1.32 Paramter write_state wird komplett berücksichtigt
* Erster Versuch doppelte Servicemelungen zu unterdrücken
* alte Variabe datum_neu übersehen
* 28.05.19 V1.33 Neuer Versuch doppelte zu unterdrücken (nur als log) etwas mehr logging
* 29.05.19 V1.34 Neuer Versuch doppelte zu unterdrücken
* 31.05.19 V1.35 Neuer Versuch
* 01.06.19 V1.36 doppelte Servicemeldungen werden unterdrückt. Logging reduziert
* 06.06.19 V1.37 Neuer Versuch. Mehr Logging
* 07.06.19 V1.38 und bzw oder Fehler entfernt.
* 09.06.19 V1.39 Zwei Abfragen seperat
* 10.06.19 V1.40 Abfrage vertauscht
* 15.06.19 V1.41 Einschränkung auf UNREACH und Sticky Unreach
* 18.06.19 V1.42 meldung_neu und meldung_alt werden nur unter bestimmten Umständen gefüllt
* 19.06.19 V1.43 Logging verändert. Evtl noch ein Problem bei der Unterdrückung doppelter Meldungen wenn schon ein Timer besteht
* 20.06.19 V1.44 Update Batterienliste
* Logging optimiert
* 22.06.19 V1.45 message_tmp und message_tmp1 entfernt (hatte ich beim ändern übersehen)
* Sticky_Unreach wird erst gezählt wenn Unreach erledigt ist (Danke an ArnoD)
* 01.07.19 V1.46 Update Batterieliste
* Bugfix Gesamtanzahl Servicemeldungen wurde nicht auf 0 gesetzt
* 02.07.19 V1.47 Logging reduziert
* Bugfix Gesamtzahl Servicemeldungen kein Aufruf der Function mehr. Feld wird direkt geschrieben
* 04.07.19 V1.48 Bugfix Feld mit Servicemeldungen wird bei keiner Servicemeldung nicht gelöscht.
* Bugfix Feld mit Servicemeldungen wurde nicht immer zuverlässig oder verzögert aktualisiert
* Neuer Parameter "find_bug"
* 05.07.19 V1.49 Update Batterieliste
* 08.07.19 V1.50 Meldung das der Batterietyp für Cux-Geräte fehlt unterdrückt
* Log fehlerhafter Eintrag LOWBAT statt LOW_BAT
* Status von FAULT_REPORTING wurde nicht übersetzt
* 09.07.19 V1.51 Unterschiedlicher Loggingtext beim auftreten und aufheben einer Servicemeldung
* Wenn Sticky_UNreach und Unreach gleichzeitig auftreten wird eine Push verschickt
* find_bug geändert auf Zeitstempel von UNREACH Meldungen
* 11.07.19 V1.52 Update Batterieliste
* 19.07.19 V1.53 Logging für Zeitstempel Unreach geändert (find_bug)
* Bei V1.45 wurde nicht auf die Alarm Punkte abgefragt sondern auf UNREACH und STICKY_UNREACH
* 31.07.19 V1.54 Erstmal wieder find_bug auf false
* 21.08.19 V1.55 Vergleich von neuen und alten Servicemeldungen nun als Array damit bei mehr als 2 Meldungen die Meldung korrekt unterdrückt wird
* 23.08.19 V1.56 Änderungen im Umgang mit Unreach und Sticky_Unreach
* 06.09.19 V1.57 no_observation arbeitet nicht richtig. Korrekur erstmal nur für LOWBAT und LOW_BAT
* 07.09.19 V1.58 Vergleich no_oberservation bei der Verarbeitung aller Datenpunkte erntfernt da zukünftig überflüssig
* Neuer Paramter show_each_device zeigt von jedem Gerät die überwachten Datenpunkte beim Scriptstart an
* no_observation auch für UNREACH
* 08.09.19 V1.59 Korrektur aller Servicemeldungen für no_observation
* 11.09.19 V1.60 Update Batterieliste
* 12.09.19 V1.61 Problem mit Cuxd Geräten behoben
* 12.11.19 V1.62 neue Option für Cuxd-Geräte
* 13.11.19 V1.63 Kleinere anpassungen
* 20.11.19 V1.64 Meldungen wurden immer mit Prio 0 verschickt
* Update Batterieliste
* doppelte Meldungen unterdrückt
* 23.11.19 V1.65 Bugfix Prio
* 02.12.19 V1.66 Unterdrückung bereits aufgetreter Meldungen
* 21.01.20 V1.67 Bei Stati abfragen von === auf ==
* Wenn Betroffen größer 0 kein Vergleich mehr auf Heating Gruppen (erstmal nur Testweise)
* 22.01.20 V1.68 Unterdrückund doppelter Push bei HMIP wenn Gerät in Heizungsgruppe für Sabotage
* 03.02.20 V1.69 Unterdrückund doppelter Push bei HMIP wenn Gerät in Heizungsgruppe für alle anderen Serviemeldungen
* 05.02.20 V1.70 Änderung für cuxd Geräte
* 17.02.20 V1.71 Update Batterieliste
* Überprüfung ob bestimmte Datenpunkte die überwacht werden sollen existieren
* Plausi-Prüfung CUXD
* 18.02.20 V1.72 Abfrage ob weitere Datenpunkte existieren
* Version wird bei Scriptstart angezeigt
* 18.05.20 V1.73 Versuch Fehler abzufangen falls common_name nicht existiert
* 04.11.20 V1.80 Anpassungen wegen JavaScript Adapter Update --> Läuft nur ab Version 4.90 vom Adapter
* Abfrgae mit existsState auf Konfigurationsfelder
* HmIP-eTRV-C hinzugefügt
* 24.11.20 V1.81 HmIP-DSD-PCB hinzugefügt
* 31.01.21 V1.82 HmIP-WGC hinzugefügt
Feld Servicemeldung Gesamt wurde nicht richtig gesetzt
* 05.03.21 V1.83 Anpassungen Fault_Reporting
* Andere theoretisch mögliche LOWBAT_REPORTING, U_SOURCE_FAIL, USBH_POWERFAIL, STICKY_SABOTAGE, ERROR_REDUCED, ERROR_SABOTAGE
*******************************************************/
const Version = 1.83;
const logging = true; //Sollte immer auf true stehen. Bei false wird garnicht protokolliert
const debugging = false; //true protokolliert viele zusätzliche Infos
const find_bug = false; //erhöht das Logging wird nur verwendet wenn ein aktulles Bug gesucht wird
const show_each_device = false; //zeigt alle verfügbaren Datenpunkte je Device
const autoAck = true; //Löschen bestätigbarer Kommunikationsstörungen (true = an, false = aus)
const observation = true; //Dauerhafte Überwachung der Geräte auf Servicemeldungen aktiv (true = aktiv // false =inaktiv)
const onetime = true; //Prüft beim Script Start ob derzeit Geräte eine Servicemeldung haben
const with_time = false; //Hängt die Uhrzeit an die Serviemeldung
//Geräte die nicht überwacht werden sollen. Komma getrennt erfassen
const no_observation = 'LEQ092862x9, XXX';
//Instanz Cuxd ausschließen. Instanz als Zahl z. B. '1' oder bei Nichtnutzung hohe Nr eintragen z. B. '9'
const CUXD = '9';
//pro Fehlertyp kann eine andere Prio genutzt werden
const prio_LOWBAT = 0;
const prio_UNREACH = 0;
const prio_STICKY_UNREACH = 0;
const prio_CONFIG_PENDING = 0;
const prio_UPDATE_PENDING = 0;
const prio_DEVICE_IN_BOOTLOADER = 0;
const prio_ERROR = 0;
const prio_ERROR_CODE = 0;
const prio_FAULT_REPORTING = 0;
const prio_SABOTAGE= 0;
const prio_ERROR_NON_FLAT_POSITIONING = 0;
//Variablen für Servicemeldung in Objekt schreiben // Wenn einer Meldung auftritt wird diese in ein Textfeld geschrieben. z. B. für vis
const write_message = false; // true schreibt beim auftreten einer Servicemeldung die Serviemeldung in ein Objekt
const id_Text_Servicemeldung = ''; // Objekt wo die Servicemeldung hingeschrieben werden soll (String)
//Variablen für Pushover
const sendpush = true; //true = verschickt per Pushover Nachrchten // false = Pushover wird nicht benutzt
const pushover_Instanz0 = 'pushover.0'; // Pushover instance für Pio = 0
const pushover_Instanz1 = 'pushover.1'; // Pushover instance für Pio = 1
const pushover_Instanz2 = 'pushover.2'; // Pushover instance für Pio = 2
const pushover_Instanz3 = 'pushover.3'; // Pushover instance für Pio = -1 oder -2
let h_prio = -2; //nicht verändern die höchste Prio nach Fehlertyp wird verwendet
let titel;
let message;
let device = 'TPhone'; //Welches Gerät soll die Nachricht bekommen
//let _device = 'All';
//Variablen für Telegram
const sendtelegram = false; //true = verschickt per Telegram Nachrchten // false = Telegram wird nicht benutzt
const user_telegram = ''; //User der die Nachricht bekommen soll
//Variable zum verschicken der Servicemeldungen per eMail
const sendmail = false; //true = verschickt per email Nachrchten // false = email wird nicht benutzt
//Ergebnis in Datenfelder schreiben
const write_state = true; //Schreibt die Ergebnisse der Servicemeldungen in Datenfelder. (true = schreiben, false, kein schreiben)
//nicht benutzte Felder einfach leer lassen --> var id_IST_XXX = '';
//Müssen selber als Zahl angelegt werden
const id_IST_LOWBAT = 'Systemvariable.0.Servicemeldungen.Anzahl_LOWBAT'/*Anzahl LOWBAT*/;
const id_IST_LOW_BAT = '';
const id_IST_UNREACH = 'Systemvariable.0.Servicemeldungen.Anzahl_UNREACH'/*Anzahl_UNREACH*/;
const id_IST_STICKY_UNREACH = 'Systemvariable.0.Servicemeldungen.Anzahl_STICKY_UNREACH'/*Anzahl_STICKY_UNREACH*/;
const id_IST_CONFIG_PENDING = '';
const id_IST_UPDATE_PENDING = '';
const id_IST_DEVICE_IN_BOOTLOADER = '';
const id_IST_ERROR = '';
const id_IST_ERROR_NON_FLAT_POSITIONING = '';
const id_IST_ERROR_CODE = '';
const id_IST_FAULT_REPORTING = '';
const id_IST_SABOTAGE = '';
const id_IST_Gesamt = "Systemvariable.0.Servicemeldungen.Anzahl_GESAMT"/*Anzahl_GESAMT*/;
//Ab hier eigentliches Script
const SelectorLOWBAT = $('channel[state.id=hm-rpc.*.0.LOWBAT_ALARM]');
const SelectorLOW_BAT = $('channel[state.id=hm-rpc.*.0.LOW_BAT_ALARM]');
const SelectorUNREACH = $('channel[state.id=hm-rpc.*.0.UNREACH_ALARM]');
const SelectorSTICKY_UNREACH = $('channel[state.id=hm-rpc.*.0.STICKY_UNREACH_ALARM]');
const SelectorCONFIG_PENDING = $('channel[state.id=hm-rpc.*.0.CONFIG_PENDING_ALARM]');
const SelectorUPDATE_PENDING = $('channel[state.id=hm-rpc.*.0.UPDATE_PENDING_ALARM]');
const SelectorDEVICE_IN_BOOTLOADER = $('channel[state.id=hm-rpc.*.0.DEVICE_IN_BOOTLOADER_ALARM]');
const SelectorERROR = $('channel[state.id=hm-rpc.*.1.ERROR]');
const SelectorERROR_CODE = $('channel[state.id=hm-rpc.*.ERROR_CODE]');
const SelectorFAULT_REPORTING = $('channel[state.id=hm-rpc.*.4.FAULT_REPORTING]');
const SelectorSABOTAGE = $('channel[state.id=hm-rpc.*.0.SABOTAGE_ALARM]');
const SelectorERROR_NON_FLAT_POSITIONING = $('channel[state.id=hm-rpc.*.0.ERROR_NON_FLAT_POSITIONING_ALARM]');
let timer = null;
let timer_sticky_unreach = null;
let meldung_alt = [];
let meldung_neu = [];
function send_pushover (device, message, titel, prio) {
//Version V4.01 vom 10.04.19
let pushover_Instanz;
if (prio === 0){pushover_Instanz = pushover_Instanz0;}
else if (prio == 1){pushover_Instanz = pushover_Instanz1;}
else if (prio == 2){pushover_Instanz = pushover_Instanz2;}
else {pushover_Instanz = pushover_Instanz3;}
sendTo(pushover_Instanz, {
device: device,
message: message,
title: titel,
priority: prio,
retry: 60,
expire: 600,
html: 1
});
}
function send_telegram (message, user_telegram) {
sendTo('telegram.0', {
text: message,
user: user_telegram,
parse_mode: 'HTML'
});
}
function send_mail (message) {
sendTo("email", {
//from: "[email protected]",
//to: "[email protected]",
subject: "Servicemeldung",
text: message
});
}
function replaceAll(string, token, newtoken) {
if(token!=newtoken)
while(string.indexOf(token) > -1) {
string = string.replace(token, newtoken);
}
return string;
}
function func_translate_status(meldungsart, native_type, status){
let status_text;
if(meldungsart == 'UNREACH_ALARM' || meldungsart == 'STICKY_UNREACH_ALARM'){
if(status == 0){
status_text = 'keine Kommunikationsfehler';
}
else if (status == 1){
status_text = 'Kommunikation gestört';
}
else if (status == 2){
status_text = 'Kommunikation war gestört';
}
}
else if(meldungsart == 'SABOTAGE_ALARM'){
if(status == 0){
status_text = 'Keine Sabotage';
}
else if(status == 1){
status_text = 'Sabotage';
}
else if(status == 2){
status_text = 'Sabotage aufgehoben';
}
}
else if(meldungsart == 'ERROR'){
if((native_type == 'HM-Sec-RHS') || (native_type == 'HM-Sec-RHS-2') || (native_type == 'HM-Sec-SC') || (native_type == 'HM-Sec-SC-2') ||
(native_type == 'HM-Sec-SCo') || (native_type == 'HM-Sec-MD') || (native_type == 'HM-Sec-MDIR') || (native_type == 'HM-Sec-MDIR-2')){
if(status == 7){
status_text = 'Sabotage';
}
else {
status_text = 'ERROR mit dem Wert: ' +status;
}
}
else if ((native_type=='HM-Sec-Key') || (native_type=='HM-Sec-Key-S') || (native_type=='HM-Sec-Key-O')){
if(status == 1){
status_text = 'Einkuppeln fehlgeschlagen';
}
else if(status == 2){
status_text = 'Motorlauf abgebrochen';
}
else {
status_text = 'ERROR mit dem Wert: ' +status;
}
}
else if (native_type=='HM-CC-VD'){
if(status == 1){
status_text = 'Ventil Antrieb blockiert';
}
else if(status == 2){
status_text = 'Ventil nicht montiert';
}
else if(status == 3){
status_text = 'Stellbereich zu klein';
}
else if(status == 4){
status_text = 'Batteriezustand niedrig';
}
else {
status_text = 'ERROR mit dem Wert: ' +status;
}
}
else {
status_text = meldungsart +' mit dem Wert: ' +status;
}
}
else if(meldungsart == 'LOWBAT_ALARM' || meldungsart == 'LOW_BAT_ALARM'){
if(status === 0){
status_text = 'Batterie ok';
}
else if (status == 1){
status_text = 'Batterie niedrig';
}
else if (status == 2){
status_text = 'Batterie ok';
}
}
else if(meldungsart == 'ERROR_NON_FLAT_POSITIONING_ALARM'){
if(status === 0){
status_text = 'Keine Meldung';
}
else if(status == 1){
status_text = 'Gerät wurde angehoben.';
}
else if(status == 2){
status_text = 'Gerät wurde angehoben. Bestätigt';
}
}
else if(meldungsart == 'CONFIG_PENDING_ALARM'){
if(status === 0){
status_text = 'keine Meldung';
}
else if (status == 1){
status_text = 'Konfigurationsdaten stehen zur Übertragung an';
}
else if (status == 2){
status_text = 'Konfigurationsdaten standen zur Übertragung an';
}
}
else if(meldungsart == 'UPDATE_PENDING_ALARM'){
if(status === 0){
status_text = 'kein Update verfügbar';
}
else if (status == 1){
status_text = 'Update verfügbar';
}
else if (status == 2){
status_text = 'Update wurde eingespielt';
}
}
else if(meldungsart == 'DEVICE_IN_BOOTLOADER_ALARM'){
if(status === 0){
status_text = 'Keine Meldung';
}
else if(status == 1){
status_text = 'Gerät startet neu';
}
else if(status == 2){
status_text = 'Gerät wurde neu getsartet';
}
}
else if(meldungsart == 'FAULT_REPORTING'){
if(native_type == 'HM-CC-RT-DN'){
if(status == 0){
status_text = 'keine Störung';
}
else if(status == 1){
status_text = 'Ventil blockiert';
}
else if(status == 2){
status_text = 'Einstellbereich Ventil zu groß';
}
else if(status == 3){
status_text = 'Einstellbereich Ventil zu klein';
}
else if(status == 4){
status_text = 'Kommunikationsfehler';
}
else if(status == 6){
status_text = 'Spannung Batterien/Akkus gering';
}
else if(status == 7){
status_text = 'Fehlstellung Ventil';
}
else{
status_text = meldungsart+' mit dem Wert: ' +status;
}
}
else{
status_text = meldungsart+' mit dem Wert: ' +status;
}
}
else{
if(status == 0){
status_text = 'keine Störung';
}
else if(status == 1){
status_text = 'Störung';
}
else if(status == 2){
status_text = 'bestätigte Störung';
}
}
return(status_text);
}
function func_get_datum(id){
let datum = formatDate(getState(id).lc, "TT.MM.JJ SS:mm:ss");
let datum_seit;
if(datum < '01.01.71 01:00:00'){
datum_seit = '';
}else{
datum_seit= ' --- seit: ' +datum +' Uhr';
}
return(datum_seit);
}
function func_Batterie(native_type){
let Batterie = 'unbekannt';
let cr2016 = ['HM-RC-4', 'HM-RC-4-B', 'HM-RC-Key3', 'HM-RC-Key3-B', 'HM-RC-P1', 'HM-RC-Sec3', 'HM-RC-Sec3-B', 'ZEL STG RM HS 4'];
let cr2032 = ['HM-PB-2-WM', 'HM-PB-4-WM', 'HM-PBI-4-FM', 'HM-SCI-3-FM', 'HM-Sec-TiS', 'HM-SwI-3-FM', 'HmIP-FCI1'];
let lr14x2 = ['HM-Sec-Sir-WM', 'HM-OU-CFM-TW', 'HM-OU-CFM-Pl', 'HM-OU-CF-Pl'];
let lr44x2 = ['HM-Sec-SC', 'HM-Sec-SC2L', 'HM-Sec-SC-2', 'HM-Sec-RHS'];
let lr6x2 = ['HM-CC-VD', 'HM-CC-RT-DN', 'HM-Sec-WDS', 'HM-Sec-WDS-2', 'HM-CC-TC', 'HM-Dis-TD-T', 'HB-UW-Sen-THPL-I', 'HM-WDS40-TH-I', 'HM-WDS40-TH-I-2', 'HM-WDS10-TH-O', 'HmIP-SMI', 'HMIP-eTRV', 'HM-WDS30-OT2-SM-2', 'HmIP-SMO', 'HmIP-SMO-A', 'HmIP-SPI', 'HmIP-eTRV-2', 'HmIP-SPDR', 'HmIP-SWD', 'HmIP-STHO-A', 'HmIP-eTRV-B', 'HmIP-PCBS-BAT','HmIP-STHO', 'HmIP-eTRV-C', 'HmIP-WGC'];
let lr6x3 = ['HmIP-SWO-PL', 'HM-Sec-MDIR', 'HM-Sec-MDIR-2', 'HM-Sec-SD', 'HM-Sec-Key', 'HM-Sec-Key-S', 'HM-Sec-Key-O', 'HM-Sen-Wa-Od', 'HM-Sen-MDIR', 'HM-Sen-MDIR-O', 'HM-Sen-MDIR-O-2', 'HM-WDS100-C6-O', 'HM-WDS100-C6-O-2', 'HM-WDS100-C6-O-2', 'HmIP-ASIR', 'HmIP-SWO-B', 'HM-Sen-MDIR-O-3', 'HM-Sec-MDIR-3'];
let lr6x4 = ['HM-CCU-1', 'HM-ES-TX-WM', 'HM-WDC7000'];
let lr3x1 = ['HM-RC-4-2', 'HM-RC-4-3', 'HM-RC-Key4-2', 'HM-RC-Key4-3', 'HM-RC-Sec4-2', 'HM-RC-Sec4-3', 'HM-Sec-RHS-2', 'HM-Sec-SCo', 'HmIP-KRC4', 'HmIP-KRCA', 'HmIP-SRH', 'HMIP-SWDO', 'HmIP-DBB', 'HmIP-RCB1'];
let lr3x2 = ['HM-TC-IT-WM-W-EU', 'HM-Dis-WM55', 'HM-Dis-EP-WM55', 'HM-PB-2-WM55', 'HM-PB-2-WM55-2', 'HM-PB-6-WM55', 'HM-PBI-2-FM', 'HM-RC-8', 'HM-Sen-DB-PCB', 'HM-Sen-EP', 'HM-Sen-MDIR-SM', 'HM-Sen-MDIR-WM55', 'HM-WDS30-T-O', 'HM-WDS30-OT2-SM', 'HmIP-STH', 'HmIP-STHD', 'HmIP-WRC2', 'HmIP-WRC6', 'HmIP-WTH', 'HmIP-WTH-2', 'HmIP-SAM', 'HmIP-SLO', 'HMIP-SWDO-I', 'HmIP-FCI6', 'HmIP-SMI55', 'HM-PB-2-FM', 'HmIP-SWDM', 'HmIP-SCI', 'HmIP-SWDM-B2', 'HmIP-RC8', 'ALPHA-IP-RBG', 'HmIP-DSD-PCB'];
let lr3x3 = ['HM-PB-4Dis-WM', 'HM-PB-4Dis-WM-2', 'HM-RC-Dis-H-x-EU', 'HM-Sen-LI-O'];
let lr3x3a = ['HM-RC-19', 'HM-RC-19-B', 'HM-RC-12', 'HM-RC-12-B', 'HM-RC-12-W'];
let lr14x3 = ['HmIP-MP3P'];
let block9 = ['HM-LC-Sw1-Ba-PCB', 'HM-LC-Sw4-PCB', 'HM-MOD-EM-8', 'HM-MOD-Re-8', 'HM-Sen-RD-O', 'HM-OU-CM-PCB', 'HM-LC-Sw4-WM'];
let fixed = ['HM-Sec-SD-2', 'HmIP-SWSD'];
let ohne = ['HM-LC-Sw1PBU-FM', 'HM-LC-Sw1-Pl-DN-R1', 'HM-LC-Sw1-DR', 'HM-LC-RGBW-WM', 'HM-LC-Sw1-Pl-CT-R1', 'HmIP-HEATING', 'HM-LC-Sw1-FM', 'HM-LC-Sw2-FM', 'HM-LC-Sw4-DR', 'HM-LC-Sw1-Pl', 'HM-LC-Sw1-Pl-2', 'HM-LC-Sw4-Ba-PCB', 'HM-LC-Sw1-SM', 'HM-LC-Sw4-SM', 'HM-Sys-sRP-Pl', 'HM-LC-Sw2PBU-FM', 'HM-LC-Sw1-PCB', 'HM-LC-Sw4-DR-2'];
let recharge = ['HM-Sec-Win', 'HM-Sec-SFA-SM', 'HM-RC-19-SW'];
for (var i = 0; i < cr2016.length; i++) {
if (cr2016[i].toUpperCase() == native_type.toUpperCase()) {
Batterie = '1x CR2016';
break;
}
}
for (i = 0; i < cr2032.length; i++) {
if (cr2032[i].toUpperCase() == native_type.toUpperCase()) {
Batterie = '1x CR2032';
break;
}
}
for (i = 0; i < lr14x2.length; i++) {
if (lr14x2[i].toUpperCase() == native_type.toUpperCase()) {
Batterie = '2x LR14';
break;
}
}
for (i = 0; i <lr44x2.length; i++) {
if (lr44x2[i].toUpperCase() == native_type.toUpperCase()) {
Batterie = '2x LR44/AG13';
break;
}
}
for (i = 0; i <lr6x2.length; i++) {
if (lr6x2[i].toUpperCase() == native_type.toUpperCase()) {
Batterie = '2x LR6/AA';
break;
}
}
for (i = 0; i < lr6x3.length; i++) {
if (lr6x3[i].toUpperCase() == native_type.toUpperCase()) {
Batterie = '3x LR6/AA';
break;
}
}
for (i = 0; i < lr6x4.length; i++) {
if (lr6x4[i].toUpperCase() == native_type.toUpperCase()) {
Batterie = '4x LR6/AA';
break;
}
}
for (i = 0; i < lr3x1.length; i++) {
if (lr3x1[i].toUpperCase() == native_type.toUpperCase()) {
Batterie = '1x LR3/AAA';
break;
}
}
for (i = 0; i < lr3x2.length; i++) {
if (lr3x2[i].toUpperCase() == native_type.toUpperCase()) {
Batterie = '2x LR3/AAA';
break;
}
}
for (i = 0; i < lr3x3.length; i++) {
if (lr3x3[i].toUpperCase() == native_type.toUpperCase()) {
Batterie = '3x LR3/AAA';
break;
}
}
for (i = 0; i < lr3x3a.length; i++) {
if (lr3x3a[i].toUpperCase() == native_type.toUpperCase()) {
Batterie = '3x AAA Akkus - bitte laden';
break;
}
}
for (i = 0; i < lr14x3.length; i++) {
if (lr14x3[i].toUpperCase() == native_type.toUpperCase()) {
Batterie = '3x LR14/C';
break;
}
}
for (i = 0; i < block9.length; i++) {
if (block9[i].toUpperCase() == native_type.toUpperCase()) {
Batterie = '9Volt Block leer oder unbestimmt';
break;
}
}
for (i = 0; i < fixed.length; i++) {
if (fixed[i].toUpperCase() == native_type.toUpperCase()) {
Batterie = 'Festbatterie leer';
break;
}
}
for (i = 0; i < ohne.length; i++) {
if (ohne[i].toUpperCase() == native_type.toUpperCase()) {
Batterie = 'ohne Batterie';
break;
}
}
for (i = 0; i < recharge.length; i++) {
if (recharge[i].toUpperCase() == native_type.toUpperCase()) {
Batterie = 'Akku entladen - bitte aufladen';
break;
}
}
return(Batterie);
}
function func_IST_Gesamt(){
//wird nicht mehr verwendet
log('Fehler function func_IST_Gesamt wurde aufgerufen.');
let IST_LOWBAT = 0;
let IST_LOW_BAT = 0;
let IST_UNREACH = 0;
let IST_STICKY_UNREACH = 0;
let IST_CONFIG_PENDING = 0;
let IST_UPDATE_PENDING = 0;
let IST_DEVICE_IN_BOOTLOADER = 0;
let IST_ERROR = 0;
let IST_ERROR_NON_FLAT_POSITIONING = 0;
let IST_ERROR_CODE = 0;
let IST_FAULT_REPORTING = 0;
let IST_SABOTAGE = 2;
let IST_Gesamt = 0;
if(write_state){
if(existsState(id_IST_LOWBAT)){
IST_LOWBAT = parseFloat(getState(id_IST_LOWBAT).val);
}
if(existsState(id_IST_LOW_BAT)){
IST_LOW_BAT = parseFloat(getState(id_IST_LOW_BAT).val);
}
if(existsState(id_IST_UNREACH)){
IST_UNREACH = parseFloat(getState(id_IST_UNREACH).val);
}
if(existsState(id_IST_STICKY_UNREACH)){
IST_STICKY_UNREACH = parseFloat(getState(id_IST_STICKY_UNREACH).val);
}
if(existsState(id_IST_CONFIG_PENDING)){
IST_CONFIG_PENDING = parseFloat(getState(id_IST_CONFIG_PENDING).val);
}
if(existsState(id_IST_UPDATE_PENDING)){
IST_UPDATE_PENDING = parseFloat(getState(id_IST_UPDATE_PENDING).val);
}
if(existsState(id_IST_UPDATE_PENDING)){
IST_UPDATE_PENDING = parseFloat(getState(id_IST_UPDATE_PENDING).val);
}
if(existsState(id_IST_DEVICE_IN_BOOTLOADER)){
IST_DEVICE_IN_BOOTLOADER = parseFloat(getState(id_IST_DEVICE_IN_BOOTLOADER).val);
}
if(existsState(id_IST_ERROR)){
IST_ERROR = parseFloat(getState(id_IST_ERROR).val);
}
if(existsState(id_IST_ERROR_CODE)){
IST_ERROR_CODE = parseFloat(getState(id_IST_ERROR_CODE).val);
}
if(existsState(id_IST_FAULT_REPORTING)){
IST_FAULT_REPORTING = parseFloat(getState(id_IST_FAULT_REPORTING).val);
}
if(existsState(id_IST_SABOTAGE)){
IST_SABOTAGE = parseFloat(getState(id_IST_SABOTAGE).val);
}
if(!existsState(id_IST_Gesamt)){
if(debugging){
log('Feld id_IST_Gesamt nicht ausgewählt');
}
}
else{
IST_Gesamt = IST_LOWBAT + IST_LOW_BAT + IST_UNREACH + IST_STICKY_UNREACH + IST_CONFIG_PENDING + IST_UPDATE_PENDING + IST_DEVICE_IN_BOOTLOADER + IST_ERROR + IST_ERROR_CODE + IST_FAULT_REPORTING + IST_SABOTAGE;
if(debugging){
log('Derzeitige Servicemeldungen: ' +IST_Gesamt +' --- Ergebnis in Objekt geschrieben');
}
setState(id_IST_Gesamt,IST_Gesamt);
}
}
}
function Servicemeldung(obj) {
var prio = h_prio
var common_name;
var obj;
var id_name;
var native_type;
var meldungsart;
var Gesamt = 0;
var Gesamt_UNREACH = 0;
var Gesamt_STICKY_UNREACH = 0;
var Gesamt_SABOTAGE = 0;
var Gesamt_ERROR = 0;
var Gesamt_LOWBAT = 0;
var Gesamt_LOW_BAT = 0;
var Gesamt_ERROR_NON_FLAT_POSITIONING = 0;
var Gesamt_CONFIG_PENDING = 0;
var Gesamt_UPDATE_PENDING = 0;
var Gesamt_DEVICE_IN_BOOTLOADER = 0;
var Gesamt_FAULT_REPORTING = 0;
var Betroffen = 0;
var Betroffen_no_observation = 0;
var Betroffen_UNREACH = 0;
var Betroffen_STICKY_UNREACH = 0;
var Betroffen_SABOTAGE = 0;
var Betroffen_ERROR = 0;
var Betroffen_LOWBAT = 0;
var Betroffen_LOW_BAT = 0;
var Betroffen_ERROR_NON_FLAT_POSITIONING = 0;
var Betroffen_CONFIG_PENDING = 0;
var Betroffen_UPDATE_PENDING = 0;
var Betroffen_DEVICE_IN_BOOTLOADER = 0;
var Betroffen_FAULT_REPORTING = 0;
var Betroffen_UNREACH_no_observation = 0;
var Betroffen_STICKY_UNREACH_no_observation = 0;
var Betroffen_SABOTAGE_no_observation = 0;
var Betroffen_ERROR_no_observation = 0;
var Betroffen_LOWBAT_no_observation = 0;
var Betroffen_LOW_BAT_no_observation = 0;
var Betroffen_ERROR_NON_FLAT_POSITIONING_no_observation = 0;
var Betroffen_CONFIG_PENDING_no_observation = 0;
var Betroffen_UPDATE_PENDING_no_observation = 0;
var Betroffen_DEVICE_IN_BOOTLOADER_no_observation = 0;
var Betroffen_FAULT_REPORTING_no_observation = 0;
var id_UNREACH;
var servicemeldung = [];
var formatiert_servicemeldung = [];
var log_manuell = false;
if (obj) {
common_name = obj.common.name.substr(0, obj.common.name.indexOf(':'));
id_name = obj.id.split('.')[2];
native_type = getObject(obj.id.substring(0, obj.id.lastIndexOf('.') - 2)).native.TYPE;
meldungsart = obj.id.split('.')[4];
var status = obj.newState.val;
var status_text = func_translate_status(meldungsart, native_type, status);
common_name = replaceAll(common_name, '.', ' '); // Umwandeln aller "." in Leerzeichen
common_name = replaceAll(common_name, 'ae', 'ä'); // Sonderzeichen umwandeln für bessere Text- und Sprachausgabe
common_name = replaceAll(common_name, 'ue', 'ü');
common_name = replaceAll(common_name, 'oe', 'ö');
common_name = replaceAll(common_name, 'ss', 'ß');
if(no_observation.search(id_name) == -1){
if(meldungsart != 'ERROR' && meldungsart != 'FAULT_REPORTING' && status != 1){
log('Servicemeldung aufgehoben: ' +common_name +' ('+id_name +') --- ' +native_type +'--- Typ: '+meldungsart +' --- Status: ' +status +' ' +status_text);
}
else{
log('Neue Servicemeldung: ' +common_name +' ('+id_name +') --- ' +native_type +'--- Typ: '+meldungsart +' --- Status: ' +status +' ' +status_text);
}
}
else{
if(debugging){
log('[DEBUG] ' +'Neue Servicemeldung außerhalb der Überwachung: ' +common_name +' ('+id_name +') --- ' +native_type +'--- Typ: '+meldungsart +' --- Status: ' +status +' ' +status_text);
}
}
}
else {
if(logging){
log('Script manuell gestartet. (Version: '+Version +')');
}
log_manuell = true;
}
SelectorLOWBAT.each(function (id, i) { // Schleife für jedes gefundenen Element *.LOWBAT
if(existsObject(id)){
if(CUXD != id.split('.')[1]){
if(id.search('CUX') == -1){
if(getObject(id.substring(0, id.lastIndexOf('.') - 2)).common.name){
common_name = getObject(id.substring(0, id.lastIndexOf('.') - 2)).common.name;
}
else{
log('[Script wird gestoppt] Der Common_name-Datenpunkt ' +id +' existiert nicht.', 'warn');
return false;
}
id_name = id.split('.')[2];
obj = getObject(id);
native_type = getObject(id.substring(0, id.lastIndexOf('.') - 2)).native.TYPE;
meldungsart = id.split('.')[4];
var status = getState(id).val;
var status_text = func_translate_status(meldungsart, native_type, status);
var Batterie = func_Batterie(native_type);
var datum_seit = func_get_datum(id);
if (status === 1 && no_observation.search(id_name) != -1) {
++Betroffen_no_observation
++Betroffen_LOWBAT_no_observation
}
if (status === 1 && no_observation.search(id_name) == -1) { // wenn Zustand = true, dann wird die Anzahl der Geräte hochgezählt
++Betroffen;
++Betroffen_LOWBAT
if(prio < prio_LOWBAT){prio = prio_LOWBAT;}
if(with_time && datum_seit !== ''){
formatiert_servicemeldung.push(common_name +' ('+id_name +')' + ' - <font color="red">Spannung Batterien/Akkus gering.</font> '+Batterie +datum_seit);
servicemeldung.push(common_name +' ('+id_name +')' + ' - Spannung Batterien/Akkus gering. '+Batterie);
}
else{
formatiert_servicemeldung.push(common_name +' ('+id_name +')' + ' - <font color="red">Spannung Batterien/Akkus gering.</font> '+Batterie +datum_seit);
servicemeldung.push(common_name +' ('+id_name +')' + ' - Spannung Batterien/Akkus gering. '+Batterie);
}
}
++Gesamt; // Zählt die Anzahl der vorhandenen Geräte unabhängig vom Status
++Gesamt_LOWBAT
if(show_each_device && log_manuell){
log('Geräte Nr. ' +i +' Name: '+ common_name +' ('+id_name+') --- '+native_type +' --- Typ: '+meldungsart +' --- Status: ' +status +' ' +status_text +datum_seit +' --- ' +Batterie);
}
//wenn Batterie unbekannt dann Log
if(Batterie == 'unbekannt' && native_type !=='' && id_name.substring(0, 3) != 'CUX'){
log('Bitte melden: ' + common_name +' ('+id_name+') --- '+native_type +' --- Batterietyp fehlt im Script');
}
}
else{
log('[Script wird gestoppt] LOWBAT: Die Cuxd-Instanz wurde im Script auf ' +CUXD +' gestellt. Ein Objekt hat folgenden Namen: ' +id ,'warn');
return false;
}
}
}
else{
log('[Script wird gestoppt] Der Datenpunkt ' +id +' existiert nicht.', 'warn');
return false;
}
});
// Schleife ist durchlaufen.
if(Gesamt_LOWBAT === 0){
if(log_manuell){
log('Keine Geräte gefunden mit dem Datenpunkt LOWBAT.');
}
}
else{
if(Betroffen_LOWBAT_no_observation > 0){
if(debugging || log_manuell){
log('Es gibt: '+Gesamt_LOWBAT +' Geräte mit dem Datenpunkt ' +meldungsart+'. Derzeit: '+Betroffen_LOWBAT_no_observation +' unterdrückte Servicemeldung(en).');
}
}
if(Betroffen_LOWBAT > 0){
if(debugging || log_manuell){
log('Es gibt: '+Gesamt_LOWBAT +' Geräte mit dem Datenpunkt ' +meldungsart+'. Derzeit: '+Betroffen_LOWBAT +' Servicemeldung(en).');
}
if(write_state){
if(existsObject(id_IST_LOWBAT)){
setState(id_IST_LOWBAT,Betroffen_LOWBAT);
}
else{
if(debugging){
log('[DEBUG] ' +'id_IST Feld für LOWBAT nicht gefüllt');
}
}
}
else{
if(debugging){
log('[DEBUG] ' +'Variable write_state steht auf false');
}
}
}
else{
if((log_manuell) || (onetime && log_manuell)){
log('Es gibt: '+Gesamt_LOWBAT +' Geräte mit dem Datenpunkt LOWBAT.');
}
if(write_state){
if(existsObject(id_IST_LOWBAT)){
setState(id_IST_LOWBAT,0);
}
else{
if(debugging){
log('[DEBUG] ' +'id_IST Feld für LOWBAT nicht gefüllt');
}
}
}
else{
if(debugging){
log('[DEBUG] ' +'Variable write_state steht auf false');
}
}
}
}
SelectorLOW_BAT.each(function (id, i) { // Schleife für jedes gefundenen Element
if(existsObject(id)){
if(getObject(id.substring(0, id.lastIndexOf('.') - 2)).common.name){
common_name = getObject(id.substring(0, id.lastIndexOf('.') - 2)).common.name;
}
else{
log('[Script wird gestoppt] Der Common_name-Datenpunkt ' +id +' existiert nicht.', 'warn');
return false;
}
id_name = id.split('.')[2];
obj = getObject(id);
native_type = getObject(id.substring(0, id.lastIndexOf('.') - 2)).native.TYPE;
meldungsart = id.split('.')[4];
var status = getState(id).val;
var status_text = func_translate_status(meldungsart, native_type, status);
var Batterie = func_Batterie(native_type);
//var datum = formatDate(getState(id).lc, "TT.MM.JJ SS:mm:ss");
var datum_seit = func_get_datum(id);
if (status === 1 && no_observation.search(id_name) != -1) {
++Betroffen_no_observation
++Betroffen_LOW_BAT_no_observation
}
if(status == 1 && native_type =='HmIP-HEATING'){
if(debugging){
log(common_name +' ('+id_name +') hat eine Servicemeldung gemeldet. Da es eine Heizungsgruppe ist erfolgt keine Push');
}
}
if (status == 1 && no_observation.search(id_name) == -1 && native_type !='HmIP-HEATING') {
++Betroffen;
++Betroffen_LOW_BAT
if(prio < prio_LOWBAT){prio = prio_LOWBAT;}
if(with_time && datum_seit !== ''){
formatiert_servicemeldung.push(common_name +' ('+id_name +')' + ' - <font color="red">Spannung Batterien/Akkus gering.</font> '+Batterie +datum_seit);
servicemeldung.push(common_name +' ('+id_name +')' + ' - Spannung Batterien/Akkus gering. '+Batterie +datum_seit);
}
else{
formatiert_servicemeldung.push(common_name +' ('+id_name +')' + ' - <font color="red">Spannung Batterien/Akkus gering.</font> '+Batterie);
servicemeldung.push(common_name +' ('+id_name +')' + ' - Spannung Batterien/Akkus gering. '+Batterie);
}
}
++Gesamt; // Zählt die Anzahl der vorhandenen Geräte unabhängig vom Status
++Gesamt_LOW_BAT
if(show_each_device && log_manuell){
log('Geräte Nr. ' +i +' Name: '+ common_name +' ('+id_name+') --- '+native_type +' --- Typ: '+meldungsart +' --- Status: ' +status +' ' +status_text +datum_seit +' --- ' +Batterie);
}
//wenn Batterie unbekannt dann Log
if(Batterie == 'unbekannt' && native_type !==''){
log('Bitte melden: ' + common_name +' ('+id_name+') --- '+native_type +' --- Batterietyp fehlt im Script');
}
}
else{
log('[Script wird gestoppt] Der Datenpunkt ' +id +' existiert nicht.', 'warn');
return false;
}
});
// Schleife ist durchlaufen.
if(Gesamt_LOW_BAT === 0){
if(log_manuell){
log('Keine Geräte gefunden mit dem Datenpunkt LOW_BAT.');
}
}
else{
if(Betroffen_LOW_BAT_no_observation > 0){
if(debugging || log_manuell){
log('Es gibt: '+Gesamt_LOW_BAT +' Geräte mit dem Datenpunkt ' +meldungsart+'. Derzeit: '+Betroffen_LOW_BAT_no_observation +' unterdrückte Servicemeldung(en).');
}
}
if(Betroffen_LOW_BAT > 0){
if(debugging || log_manuell){
log('Es gibt: '+Gesamt_LOW_BAT +' Geräte mit dem Datenpunkt ' +meldungsart+'. Derzeit: '+Betroffen_LOW_BAT +' Servicemeldung(en).');
}
if(write_state){
if(existsObject(id_IST_LOW_BAT)){
setState(id_IST_LOW_BAT,Betroffen_LOW_BAT);
}
else{
if(debugging){
log('[DEBUG] ' +'id_IST Feld für LOW_BAT nicht gefüllt');
}
}
}
else{
if(debugging){
log('[DEBUG] ' +'Variable write_state steht auf false');
}
}
}
else{
if((log_manuell) || (onetime && log_manuell)){
log('Es gibt: '+Gesamt_LOW_BAT +' Geräte mit dem Datenpunkt LOW_BAT.');
}
if(write_state){
if(existsObject(id_IST_LOW_BAT)){
setState(id_IST_LOW_BAT,0);
}
else{
if(debugging){
log('[DEBUG] ' +'id_IST Feld für LOW_BAT nicht gefüllt');
}
}
}
else{
if(debugging){
log('[DEBUG] ' +'Variable write_state steht auf false');
}
}
}
}
SelectorUNREACH.each(function (id, i) { // Schleife für jedes gefundenen Element
if(existsObject(id)){
if(CUXD != id.split('.')[1]){
if(id.search('CUX') == -1){
common_name = getObject(id.substring(0, id.lastIndexOf('.') - 2)).common.name;
id_name = id.split('.')[2];
obj = getObject(id);
native_type = getObject(id.substring(0, id.lastIndexOf('.') - 2)).native.TYPE;
meldungsart = id.split('.')[4];
var id_STICKY_UNREACH = id.substring(0, id.lastIndexOf('.')+1) +'STICKY_UNREACH_ALARM';
if(native_type.substring(0, 3) == 'HM-' && id_name.substring(0, 3) != 'CUX'){
var statusSTICKY_UNREACH = getState(id_STICKY_UNREACH).val;
}
var status = getState(id).val;
var status_text = func_translate_status(meldungsart, native_type, status);
var datum_seit = func_get_datum(id);
if (status === 1 && no_observation.search(id_name) != -1) {
++Betroffen_no_observation
++Betroffen_UNREACH_no_observation
}
if(status == 1 && native_type =='HmIP-HEATING'){
if(debugging){
log(common_name +' ('+id_name +') hat eine Servicemeldung gemeldet. Da es eine Heizungsgruppe ist erfolgt keine Push');
}
}
if (status == 1 && no_observation.search(id_name) == -1 && native_type !='HmIP-HEATING') {
++Betroffen;
++Betroffen_UNREACH;
if(prio < prio_UNREACH){prio = prio_UNREACH;}
if(with_time && datum_seit !== ''){
formatiert_servicemeldung.push(common_name +' ('+id_name +')' + ' - <font color="red">Kommunikation gestört.</font>' +datum_seit);
servicemeldung.push(common_name +' ('+id_name +')' + ' - Kommunikation gestört.' +datum_seit);
}
else{
formatiert_servicemeldung.push(common_name +' ('+id_name +')' + ' - <font color="red">Kommunikation gestört.</font>');
servicemeldung.push(common_name +' ('+id_name +')' + ' - Kommunikation gestört.');
}