Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. [Aufruf] Nina Gefahrenmeldung Adapter

    NEWS

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    [Aufruf] Nina Gefahrenmeldung Adapter

    This topic has been deleted. Only users with topic management privileges can see it.
    • E
      esche last edited by

      Hallo zusammen

      ich finde die Idee mit dem Adapter sehr gut. Daher habe ich mir diesen in den letzten Tagen etwas genauer angeschaut.
      Ich habe für mich ein kleines Script gebaut, welches die alle paar Minuten prüft, ob es neue Nachrichten vom Adapter gibt. Wenn ja, können diese an die gewünschten Systeme (bei mir bisher Pushover / Telegram) versendet werden.

      Vielleicht nützt es den einen anderen anderen hier etwas, daher habe ich diesen mal auf einem Git Repo hochgeladen.

      https://github.com/mesche/iobroker-scripts/tree/master/nina_messages_eventhandler

      Gerne freue ich mich auch über Feedback oder weitere Ideen für de Umsetzung.
      Bitte zerlegt den Adapter nicht sofort, dies ist bisher nur eine erste Version.

      Gruß
      Esche

      1 Reply Last reply Reply Quote 1
      • A
        andi2055 last edited by

        Auf der Webseite von Nina kann ich auch Gemeinde auswählen. Die Abfrage des Adapters lässt nur Landkreis zu. Sehe ich das richtig?

        Für die Abfrage nach "Luftverschmutzung" ist mir Landkreis eigentlich zu groß. Kann ich das irgendwie auf "Gemeinde" einschränken?

        1 Reply Last reply Reply Quote 0
        • Messiahs
          Messiahs @tombox last edited by

          @tombox
          Wie komm ich den an die AGS ?
          unter https://warnung.bund.de/assets/json/suche_channel.json öffnet sich eine normale WebSite ohne Infos zur AGS..

          T 1 Reply Last reply Reply Quote 0
          • T
            tombox @Messiahs last edited by

            @Messiahs Probier erstmal den werde schauen den anderen auszutauschen
            https://www.statistikportal.de/de/gemeindeverzeichnis

            Messiahs O 2 Replies Last reply Reply Quote 0
            • Messiahs
              Messiahs @tombox last edited by Messiahs

              @tombox
              Danke für die schnelle Antwort.
              Leider wird dort nur die AGS der Gemeinde (06436012) angezeigt, benötigt wird allerdings für den Adapter die AGS des Landkreis (06436000).

              Hat trotzdem mein Problem gelöst. Danke 🙂

              P.S.:
              Eine Unschärfe scheint bei "fullText" zu sein.
              Bsp: "Coronavirus: Informationen des Bundesministeriums für GesundheitNaNundefined"...
              Inhalt von 'description' scheint hier zu fehlen ....

              1 Reply Last reply Reply Quote 0
              • O
                Oli @tombox last edited by

                @tombox

                ich will die Frage von @andi2055 nochmal aufgreifen, ist es möglich eine Gemeinde abzufragen?

                Wenn ich im Adapter meinen Gemeindeschlüssel eingebe, kommt folgende Meldung im Log:

                nina.0	2021-01-06 10:02:02.752	warn	(9198) Cannot reach https://warnung.bund.de/bbk.status/status_095761510000.json Server. Statuscode: 404
                

                Dann hätte ich noch eine weitere Frage.

                Ich möchte mir in meiner Vis anzeigen lassen, wenn neue Meldungen vorhanden sind. Aber egal auf was ich trigger, sobald der Adapter eine neue Abfrage startet, wird in Vis angezeigt, dass neue Meldungen vorhanden sind.

                Im Moment versuche ich das über ein Script, dass klappt aber leider auch nicht.

                on({id: "nina.0.09576.warnung01.identifier"}, function (obj) { 
                    let id = getState("javascript.0.Nina.ID_Warnung_1").val;
                    let idN = getState("nina.0.09576.warnung01.identifier").val;
                
                    if (id != idN) { 
                        setState("javascript.0.Nina.neue_Warnung", true);        
                        setState("javascript.0.Nina.ID_Warnung_1", idN);
                    };
                });
                
                on({id: "nina.0.09576.warnung02.identifier"}, function (obj) {
                    let id = getState("javascript.0.Nina.ID_Warnung_2").val;
                    let idN = getState("nina.0.09576.warnung02.identifier").val;
                
                    if (id != idN) {
                        setState("javascript.0.Nina.neue_Warnung", true);        
                        setState("javascript.0.Nina.ID_Warnung_2", idN);
                    };
                });                
                

                Wie kann ich das am besten realisieren?

                1 Reply Last reply Reply Quote 0
                • S
                  Supermicha last edited by

                  @tombox

                  seit neustem kommem bei mir im log jede Menge Warnungen, Adapter funktioniert aber problemlos...

                  hier mal ein Auszug, das log ist noch länger, scheint für jeden Datenpunkt so eine Meldung zu kommen.

                  ...
                  2021-01-20 23:44:23.592 - warn: nina.0 (1365) State "nina.0.13003.warnung01.info01.eventCode01.value" has no existing object, this might lead to an error in future versions
                  2021-01-20 23:44:23.593 - warn: nina.0 (1365) State "nina.0.13003.warnung01.info01.headline" has no existing object, this might lead to an error in future versions
                  2021-01-20 23:44:23.594 - warn: nina.0 (1365) State "nina.0.13003.warnung01.info01.fullText" has no existing object, this might lead to an error in future versions
                  2021-01-20 23:44:23.594 - warn: nina.0 (1365) State "nina.0.13003.warnung01.info01.description" has no existing object, this might lead to an error in future versions
                  2021-01-20 23:44:23.595 - warn: nina.0 (1365) State "nina.0.13003.warnung01.info01.instruction" has no existing object, this might lead to an error in future versions
                  2021-01-20 23:44:23.595 - warn: nina.0 (1365) State "nina.0.13003.warnung01.info01.contact" has no existing object, this might lead to an error in future versions
                  ...
                  
                  T 1 Reply Last reply Reply Quote 0
                  • T
                    tombox @Supermicha last edited by

                    @supermicha Kümmer ich mich zeitnah drum

                    arteck 1 Reply Last reply Reply Quote 1
                    • S
                      Supermicha last edited by

                      Supi. Danke 👍 👍

                      A 1 Reply Last reply Reply Quote 0
                      • A
                        adarof @Supermicha last edited by adarof

                        Hallo
                        Ich habe seit einigen Wochen das Problem, dass die Corona-Warnungen jedes mal zu "toggeln" scheinen - d.h. Corona-Warnung neu -> 5min später "keine Warnungen mehr" -> 5min später "neue Warnung" -> ....
                        (wobei mein Intervall natürlich die 5min vorgibt)

                        -> Im Log sehe ich nun sowas hier - kann es was damit zu tun haben?
                        -> Kennt das Problem noch jemand?

                        EDIT: Ich habe gerade nochmal etwas ausführlicher von 3 Durchläufen das Log angehangen. Wäre wirklich super, wenn jemand mir sagt, ob das bei ihm auch auftritt oder nicht - damit ich weiss ob ich bei mir noch auf Suche gehen kann oder das allgemein ein Problem ist.

                        gruss -

                        javascript.0	2021-01-23 17:39:31.412	info	(2727) script.js.NinaPopupAndTelegram: NINA: Warnung 2 ignoriert, weil Category ' null'
                        javascript.0	2021-01-23 17:39:31.412	warn	(2727) at process.topLevelDomainCallback (domain.js:126:23)
                        javascript.0	2021-01-23 17:39:31.412	warn	(2727) at processImmediate (timers.js:658:5)
                        javascript.0	2021-01-23 17:39:31.412	warn	(2727) at tryOnImmediate (timers.js:676:5)
                        javascript.0	2021-01-23 17:39:31.412	warn	(2727) at runCallback (timers.js:705:18)
                        javascript.0	2021-01-23 17:39:31.412	warn	(2727) at Immediate.setImmediate (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:5384:37)
                        javascript.0	2021-01-23 17:39:31.412	warn	(2727) at Object.stateChange (/opt/iobroker/node_modules/iobroker.javascript/main.js:472:25)
                        javascript.0	2021-01-23 17:39:31.412	warn	(2727) at Object.callback (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1055:38)
                        javascript.0	2021-01-23 17:39:31.411	warn	(2727) at Object.<anonymous> (script.js.NinaPopupAndTelegram:25:75)
                        javascript.0	2021-01-23 17:39:31.409	warn	(2727) getState "nina.0.05754.warnung02.info01.category01" not found (3)
                        javascript.0	2021-01-23 17:39:31.409	warn	(2727) at process.topLevelDomainCallback (domain.js:126:23)
                        javascript.0	2021-01-23 17:39:31.408	warn	(2727) at processImmediate (timers.js:658:5)
                        javascript.0	2021-01-23 17:39:31.408	warn	(2727) at tryOnImmediate (timers.js:676:5)
                        javascript.0	2021-01-23 17:39:31.408	warn	(2727) at runCallback (timers.js:705:18)
                        javascript.0	2021-01-23 17:39:31.407	warn	(2727) at Immediate.setImmediate (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:5384:37)
                        javascript.0	2021-01-23 17:39:31.407	warn	(2727) at Object.stateChange (/opt/iobroker/node_modules/iobroker.javascript/main.js:472:25)
                        javascript.0	2021-01-23 17:39:31.407	warn	(2727) at Object.callback (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1055:38)
                        javascript.0	2021-01-23 17:39:31.407	warn	(2727) at Object.<anonymous> (script.js.NinaPopupAndTelegram:19:85)
                        javascript.0	2021-01-23 17:39:31.406	warn	(2727) getState "nina.0.05754.warnung02.info01.category01" not found (3)
                        javascript.0	2021-01-23 17:39:31.406	warn	(2727) at process.topLevelDomainCallback (domain.js:126:23)
                        javascript.0	2021-01-23 17:39:31.406	warn	(2727) at processImmediate (timers.js:658:5)
                        javascript.0	2021-01-23 17:39:31.406	warn	(2727) at tryOnImmediate (timers.js:676:5)
                        javascript.0	2021-01-23 17:39:31.406	warn	(2727) at runCallback (timers.js:705:18)
                        javascript.0	2021-01-23 17:39:31.405	warn	(2727) at Immediate.setImmediate (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:5384:37)
                        javascript.0	2021-01-23 17:39:31.405	warn	(2727) at Object.stateChange (/opt/iobroker/node_modules/iobroker.javascript/main.js:472:25)
                        javascript.0	2021-01-23 17:39:31.405	warn	(2727) at Object.callback (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1055:38)
                        javascript.0	2021-01-23 17:39:31.405	warn	(2727) at Object.<anonymous> (script.js.NinaPopupAndTelegram:19:12)
                        javascript.0	2021-01-23 17:39:31.403	warn	(2727) getState "nina.0.05754.warnung02.info01.category01" not found (3)
                        javascript.0	2021-01-23 17:39:31.403	info	(2727) script.js.NinaPopupAndTelegram: NINA: category von Warnung 2 ist 'null'
                        javascript.0	2021-01-23 17:39:31.403	warn	(2727) at process.topLevelDomainCallback (domain.js:126:23)
                        javascript.0	2021-01-23 17:39:31.403	warn	(2727) at processImmediate (timers.js:658:5)
                        javascript.0	2021-01-23 17:39:31.402	warn	(2727) at tryOnImmediate (timers.js:676:5)
                        javascript.0	2021-01-23 17:39:31.402	warn	(2727) at runCallback (timers.js:705:18)
                        javascript.0	2021-01-23 17:39:31.402	warn	(2727) at Immediate.setImmediate (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:5384:37)
                        javascript.0	2021-01-23 17:39:31.402	warn	(2727) at Object.stateChange (/opt/iobroker/node_modules/iobroker.javascript/main.js:472:25)
                        javascript.0	2021-01-23 17:39:31.401	warn	(2727) at Object.callback (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1055:38)
                        javascript.0	2021-01-23 17:39:31.401	warn	(2727) at Object.<anonymous> (script.js.NinaPopupAndTelegram:18:62)
                        javascript.0	2021-01-23 17:39:31.399	warn	(2727) getState "nina.0.05754.warnung02.info01.category01" not found (3)
                        javascript.0	2021-01-23 17:39:31.399	info	(2727) script.js.NinaPopupAndTelegram: NINA: Warnung 1 ignoriert, weil Category ' null'
                        javascript.0	2021-01-23 17:39:31.399	warn	(2727) at process.topLevelDomainCallback (domain.js:126:23)
                        javascript.0	2021-01-23 17:39:31.398	warn	(2727) at processImmediate (timers.js:658:5)
                        javascript.0	2021-01-23 17:39:31.398	warn	(2727) at tryOnImmediate (timers.js:676:5)
                        javascript.0	2021-01-23 17:39:31.398	warn	(2727) at runCallback (timers.js:705:18)
                        javascript.0	2021-01-23 17:39:31.398	warn	(2727) at Immediate.setImmediate (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:5384:37)
                        javascript.0	2021-01-23 17:39:31.398	warn	(2727) at Object.stateChange (/opt/iobroker/node_modules/iobroker.javascript/main.js:472:25)
                        javascript.0	2021-01-23 17:39:31.398	warn	(2727) at Object.callback (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1055:38)
                        javascript.0	2021-01-23 17:39:31.398	warn	(2727) at Object.<anonymous> (script.js.NinaPopupAndTelegram:25:75)
                        javascript.0	2021-01-23 17:39:31.397	warn	(2727) getState "nina.0.05754.warnung01.info01.category01" not found (3)
                        javascript.0	2021-01-23 17:39:31.397	warn	(2727) at process.topLevelDomainCallback (domain.js:126:23)
                        javascript.0	2021-01-23 17:39:31.397	warn	(2727) at processImmediate (timers.js:658:5)
                        javascript.0	2021-01-23 17:39:31.397	warn	(2727) at tryOnImmediate (timers.js:676:5)
                        javascript.0	2021-01-23 17:39:31.397	warn	(2727) at runCallback (timers.js:705:18)
                        javascript.0	2021-01-23 17:39:31.397	warn	(2727) at Immediate.setImmediate (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:5384:37)
                        javascript.0	2021-01-23 17:39:31.397	warn	(2727) at Object.stateChange (/opt/iobroker/node_modules/iobroker.javascript/main.js:472:25)
                        javascript.0	2021-01-23 17:39:31.397	warn	(2727) at Object.callback (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1055:38)
                        javascript.0	2021-01-23 17:39:31.396	warn	(2727) at Object.<anonymous> (script.js.NinaPopupAndTelegram:19:85)
                        javascript.0	2021-01-23 17:39:31.394	warn	(2727) getState "nina.0.05754.warnung01.info01.category01" not found (3)
                        javascript.0	2021-01-23 17:39:31.394	warn	(2727) at process.topLevelDomainCallback (domain.js:126:23)
                        javascript.0	2021-01-23 17:39:31.394	warn	(2727) at processImmediate (timers.js:658:5)
                        javascript.0	2021-01-23 17:39:31.394	warn	(2727) at tryOnImmediate (timers.js:676:5)
                        javascript.0	2021-01-23 17:39:31.394	warn	(2727) at runCallback (timers.js:705:18)
                        javascript.0	2021-01-23 17:39:31.394	warn	(2727) at Immediate.setImmediate (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:5384:37)
                        javascript.0	2021-01-23 17:39:31.394	warn	(2727) at Object.stateChange (/opt/iobroker/node_modules/iobroker.javascript/main.js:472:25)
                        javascript.0	2021-01-23 17:39:31.394	warn	(2727) at Object.callback (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1055:38)
                        javascript.0	2021-01-23 17:39:31.394	warn	(2727) at Object.<anonymous> (script.js.NinaPopupAndTelegram:19:12)
                        javascript.0	2021-01-23 17:39:31.393	warn	(2727) getState "nina.0.05754.warnung01.info01.category01" not found (3)
                        javascript.0	2021-01-23 17:39:31.393	info	(2727) script.js.NinaPopupAndTelegram: NINA: category von Warnung 1 ist 'null'
                        javascript.0	2021-01-23 17:39:31.393	warn	(2727) at process.topLevelDomainCallback (domain.js:126:23)
                        javascript.0	2021-01-23 17:39:31.392	warn	(2727) at processImmediate (timers.js:658:5)
                        javascript.0	2021-01-23 17:39:31.392	warn	(2727) at tryOnImmediate (timers.js:676:5)
                        javascript.0	2021-01-23 17:39:31.392	warn	(2727) at runCallback (timers.js:705:18)
                        javascript.0	2021-01-23 17:39:31.392	warn	(2727) at Immediate.setImmediate (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:5384:37)
                        javascript.0	2021-01-23 17:39:31.392	warn	(2727) at Object.stateChange (/opt/iobroker/node_modules/iobroker.javascript/main.js:472:25)
                        javascript.0	2021-01-23 17:39:31.392	warn	(2727) at Object.callback (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1055:38)
                        javascript.0	2021-01-23 17:39:31.392	warn	(2727) at Object.<anonymous> (script.js.NinaPopupAndTelegram:18:62)
                        javascript.0	2021-01-23 17:39:31.390	warn	(2727) getState "nina.0.05754.warnung01.info01.category01" not found (3)
                        javascript.0	2021-01-23 17:39:31.389	info	(2727) script.js.NinaPopupAndTelegram: NINA: Num Warns vorher 1 aktuell '2
                        
                        javascript.0	2021-01-23 17:34:30.424	info	'
                        javascript.0	2021-01-23 17:34:30.424	info	Bis zunächst 31. Januar 2021 werden die geltenden Corona-Regelungen zur weiteren Eindämmung des Infektionsgeschehens in Nordrhein-Westfalen fortgeführt.<br/>Alle Regeln, den genauen Wortlaut der Coron
                        javascript.0	2021-01-23 17:34:30.424	info	(2727) script.js.NinaPopupAndTelegram: NINA:Nach Parsen von Warnung 1 ist der WarnungenString' Nr 1 :Coronavirus: Informationen des Landes Nordrhein-Westfalen
                        javascript.0	2021-01-23 17:34:30.424	info	(2727) script.js.NinaPopupAndTelegram: NINA: category von Warnung 1 ist 'Health'
                        javascript.0	2021-01-23 17:34:30.423	info	(2727) script.js.NinaPopupAndTelegram: NINA: Num Warns vorher 2 aktuell '1
                        
                        
                        javascript.0	2021-01-23 17:24:31.464	info	(2727) script.js.NinaPopupAndTelegram: NINA: Warnung 2 ignoriert, weil Category ' null'
                        javascript.0	2021-01-23 17:24:31.464	warn	(2727) at process.topLevelDomainCallback (domain.js:126:23)
                        javascript.0	2021-01-23 17:24:31.464	warn	(2727) at processImmediate (timers.js:658:5)
                        javascript.0	2021-01-23 17:24:31.464	warn	(2727) at tryOnImmediate (timers.js:676:5)
                        javascript.0	2021-01-23 17:24:31.464	warn	(2727) at runCallback (timers.js:705:18)
                        javascript.0	2021-01-23 17:24:31.464	warn	(2727) at Immediate.setImmediate (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:5384:37)
                        javascript.0	2021-01-23 17:24:31.464	warn	(2727) at Object.stateChange (/opt/iobroker/node_modules/iobroker.javascript/main.js:472:25)
                        javascript.0	2021-01-23 17:24:31.464	warn	(2727) at Object.callback (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1055:38)
                        javascript.0	2021-01-23 17:24:31.464	warn	(2727) at Object.<anonymous> (script.js.NinaPopupAndTelegram:25:75)
                        javascript.0	2021-01-23 17:24:31.463	warn	(2727) getState "nina.0.05754.warnung02.info01.category01" not found (3)
                        javascript.0	2021-01-23 17:24:31.463	warn	(2727) at process.topLevelDomainCallback (domain.js:126:23)
                        javascript.0	2021-01-23 17:24:31.463	warn	(2727) at processImmediate (timers.js:658:5)
                        javascript.0	2021-01-23 17:24:31.463	warn	(2727) at tryOnImmediate (timers.js:676:5)
                        javascript.0	2021-01-23 17:24:31.463	warn	(2727) at runCallback (timers.js:705:18)
                        javascript.0	2021-01-23 17:24:31.463	warn	(2727) at Immediate.setImmediate (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:5384:37)
                        javascript.0	2021-01-23 17:24:31.463	warn	(2727) at Object.stateChange (/opt/iobroker/node_modules/iobroker.javascript/main.js:472:25)
                        javascript.0	2021-01-23 17:24:31.463	warn	(2727) at Object.callback (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1055:38)
                        javascript.0	2021-01-23 17:24:31.463	warn	(2727) at Object.<anonymous> (script.js.NinaPopupAndTelegram:19:85)
                        javascript.0	2021-01-23 17:24:31.462	warn	(2727) getState "nina.0.05754.warnung02.info01.category01" not found (3)
                        javascript.0	2021-01-23 17:24:31.462	warn	(2727) at process.topLevelDomainCallback (domain.js:126:23)
                        javascript.0	2021-01-23 17:24:31.462	warn	(2727) at processImmediate (timers.js:658:5)
                        javascript.0	2021-01-23 17:24:31.462	warn	(2727) at tryOnImmediate (timers.js:676:5)
                        javascript.0	2021-01-23 17:24:31.462	warn	(2727) at runCallback (timers.js:705:18)
                        javascript.0	2021-01-23 17:24:31.462	warn	(2727) at Immediate.setImmediate (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:5384:37)
                        javascript.0	2021-01-23 17:24:31.462	warn	(2727) at Object.stateChange (/opt/iobroker/node_modules/iobroker.javascript/main.js:472:25)
                        javascript.0	2021-01-23 17:24:31.462	warn	(2727) at Object.callback (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1055:38)
                        javascript.0	2021-01-23 17:24:31.462	warn	(2727) at Object.<anonymous> (script.js.NinaPopupAndTelegram:19:12)
                        javascript.0	2021-01-23 17:24:31.461	warn	(2727) getState "nina.0.05754.warnung02.info01.category01" not found (3)
                        javascript.0	2021-01-23 17:24:31.461	info	(2727) script.js.NinaPopupAndTelegram: NINA: category von Warnung 2 ist 'null'
                        javascript.0	2021-01-23 17:24:31.461	warn	(2727) at process.topLevelDomainCallback (domain.js:126:23)
                        javascript.0	2021-01-23 17:24:31.461	warn	(2727) at processImmediate (timers.js:658:5)
                        javascript.0	2021-01-23 17:24:31.461	warn	(2727) at tryOnImmediate (timers.js:676:5)
                        javascript.0	2021-01-23 17:24:31.461	warn	(2727) at runCallback (timers.js:705:18)
                        javascript.0	2021-01-23 17:24:31.461	warn	(2727) at Immediate.setImmediate (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:5384:37)
                        javascript.0	2021-01-23 17:24:31.461	warn	(2727) at Object.stateChange (/opt/iobroker/node_modules/iobroker.javascript/main.js:472:25)
                        javascript.0	2021-01-23 17:24:31.461	warn	(2727) at Object.callback (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1055:38)
                        javascript.0	2021-01-23 17:24:31.461	warn	(2727) at Object.<anonymous> (script.js.NinaPopupAndTelegram:18:62)
                        javascript.0	2021-01-23 17:24:31.460	warn	(2727) getState "nina.0.05754.warnung02.info01.category01" not found (3)
                        javascript.0	2021-01-23 17:24:31.460	info	(2727) script.js.NinaPopupAndTelegram: NINA: Warnung 1 ignoriert, weil Category ' null'
                        javascript.0	2021-01-23 17:24:31.460	warn	(2727) at process.topLevelDomainCallback (domain.js:126:23)
                        javascript.0	2021-01-23 17:24:31.460	warn	(2727) at processImmediate (timers.js:658:5)
                        javascript.0	2021-01-23 17:24:31.460	warn	(2727) at tryOnImmediate (timers.js:676:5)
                        javascript.0	2021-01-23 17:24:31.460	warn	(2727) at runCallback (timers.js:705:18)
                        javascript.0	2021-01-23 17:24:31.460	warn	(2727) at Immediate.setImmediate (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:5384:37)
                        javascript.0	2021-01-23 17:24:31.460	warn	(2727) at Object.stateChange (/opt/iobroker/node_modules/iobroker.javascript/main.js:472:25)
                        javascript.0	2021-01-23 17:24:31.460	warn	(2727) at Object.callback (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1055:38)
                        javascript.0	2021-01-23 17:24:31.460	warn	(2727) at Object.<anonymous> (script.js.NinaPopupAndTelegram:25:75)
                        javascript.0	2021-01-23 17:24:31.459	warn	(2727) getState "nina.0.05754.warnung01.info01.category01" not found (3)
                        javascript.0	2021-01-23 17:24:31.459	warn	(2727) at process.topLevelDomainCallback (domain.js:126:23)
                        javascript.0	2021-01-23 17:24:31.459	warn	(2727) at processImmediate (timers.js:658:5)
                        javascript.0	2021-01-23 17:24:31.459	warn	(2727) at tryOnImmediate (timers.js:676:5)
                        javascript.0	2021-01-23 17:24:31.459	warn	(2727) at runCallback (timers.js:705:18)
                        javascript.0	2021-01-23 17:24:31.459	warn	(2727) at Immediate.setImmediate (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:5384:37)
                        javascript.0	2021-01-23 17:24:31.458	warn	(2727) at Object.stateChange (/opt/iobroker/node_modules/iobroker.javascript/main.js:472:25)
                        javascript.0	2021-01-23 17:24:31.458	warn	(2727) at Object.callback (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1055:38)
                        javascript.0	2021-01-23 17:24:31.458	warn	(2727) at Object.<anonymous> (script.js.NinaPopupAndTelegram:19:85)
                        javascript.0	2021-01-23 17:24:31.457	warn	(2727) getState "nina.0.05754.warnung01.info01.category01" not found (3)
                        javascript.0	2021-01-23 17:24:31.457	warn	(2727) at process.topLevelDomainCallback (domain.js:126:23)
                        javascript.0	2021-01-23 17:24:31.457	warn	(2727) at processImmediate (timers.js:658:5)
                        javascript.0	2021-01-23 17:24:31.457	warn	(2727) at tryOnImmediate (timers.js:676:5)
                        javascript.0	2021-01-23 17:24:31.457	warn	(2727) at runCallback (timers.js:705:18)
                        javascript.0	2021-01-23 17:24:31.457	warn	(2727) at Immediate.setImmediate (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:5384:37)
                        javascript.0	2021-01-23 17:24:31.457	warn	(2727) at Object.stateChange (/opt/iobroker/node_modules/iobroker.javascript/main.js:472:25)
                        javascript.0	2021-01-23 17:24:31.457	warn	(2727) at Object.callback (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1055:38)
                        javascript.0	2021-01-23 17:24:31.457	warn	(2727) at Object.<anonymous> (script.js.NinaPopupAndTelegram:19:12)
                        javascript.0	2021-01-23 17:24:31.456	warn	(2727) getState "nina.0.05754.warnung01.info01.category01" not found (3)
                        javascript.0	2021-01-23 17:24:31.456	info	(2727) script.js.NinaPopupAndTelegram: NINA: category von Warnung 1 ist 'null'
                        javascript.0	2021-01-23 17:24:31.456	warn	(2727) at process.topLevelDomainCallback (domain.js:126:23)
                        javascript.0	2021-01-23 17:24:31.456	warn	(2727) at processImmediate (timers.js:658:5)
                        javascript.0	2021-01-23 17:24:31.456	warn	(2727) at tryOnImmediate (timers.js:676:5)
                        javascript.0	2021-01-23 17:24:31.456	warn	(2727) at runCallback (timers.js:705:18)
                        javascript.0	2021-01-23 17:24:31.456	warn	(2727) at Immediate.setImmediate (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:5384:37)
                        javascript.0	2021-01-23 17:24:31.456	warn	(2727) at Object.stateChange (/opt/iobroker/node_modules/iobroker.javascript/main.js:472:25)
                        javascript.0	2021-01-23 17:24:31.456	warn	(2727) at Object.callback (/opt/iobroker/node_modules/iobroker.javascript/lib/sandbox.js:1055:38)
                        javascript.0	2021-01-23 17:24:31.455	warn	(2727) at Object.<anonymous> (script.js.NinaPopupAndTelegram:18:62)
                        javascript.0	2021-01-23 17:24:31.453	warn	(2727) getState "nina.0.05754.warnung01.info01.category01" not found (3)
                        javascript.0	2021-01-23 17:24:31.452	info	(2727) script.js.NinaPopupAndTelegram: NINA: Num Warns vorher 1 aktuell '2
                        
                        1 Reply Last reply Reply Quote 0
                        • arteck
                          arteck Developer Most Active @tombox last edited by

                          @tombox liegt am js-controller ...

                          zeitnahe korrektur währe schön...
                          40733feb-f1c3-4005-9a0a-65ee2e481381-grafik.png

                          da der neue js-controller im latest ist

                          R 1 Reply Last reply Reply Quote 0
                          • R
                            Raabensohn @arteck last edited by

                            @arteck said in [Aufruf] Nina Gefahrenmeldung Adapter:

                            @tombox liegt am js-controller ...

                            zeitnahe korrektur währe schön...
                            40733feb-f1c3-4005-9a0a-65ee2e481381-grafik.png

                            da der neue js-controller im latest ist

                            da schließ ich mich an... zu viele Fehler gerade um den Adapter laufen zu lassen... 😕

                            Feuersturm 1 Reply Last reply Reply Quote 0
                            • Feuersturm
                              Feuersturm @Raabensohn last edited by

                              @raabensohn Es sind ja erstmal nur Warnungen. Der Adapter funktioniert ja auch mit den Warnungen.

                              R 1 Reply Last reply Reply Quote 0
                              • R
                                Raabensohn @Feuersturm last edited by

                                @feuersturm
                                klar, aber immer warnungen im Log zu haben nervt halt und wenn wirklich was ist bekommt man es nicht mit...

                                T 1 Reply Last reply Reply Quote 0
                                • T
                                  tombox @Raabensohn last edited by

                                  @raabensohn @Supermichi @arteck
                                  Warnung sind in der github version behoben.

                                  Feuersturm 1 Reply Last reply Reply Quote 1
                                  • Feuersturm
                                    Feuersturm @tombox last edited by

                                    @tombox Danke. Ich hatte beim ersten Starten des Adapters nach dem Update folgende Warnungen im Log.

                                    15 Feb 2021 01:08:43.885
                                    nina.0: State "nina.0.0xxxx.identifierList" has no existing object, this might lead to an error in future versions
                                    15 Feb 2021 01:08:43.882
                                    nina.0: State "nina.0.0xxxx.cancelWarn" has no existing object, this might lead to an error in future versions
                                    15 Feb 2021 01:08:43.879
                                    nina.0: State "nina.0.0xxxx.activeWarn" has no existing object, this might lead to an error in future versions
                                    

                                    Nach einem Neustart der Instanz kamen die Warnungen nicht mehr.
                                    Ich hab daraufhin mal zum testen alles unter nina.0 gelöscht und die Instanz neu gestartet. Keine Warnungen mehr sichtbar 🙂

                                    1 Reply Last reply Reply Quote 0
                                    • Phantomkommander
                                      Phantomkommander last edited by

                                      wie habt ihr aktuell den Adapter in die VIS eingebunden? tue mir da generell noch etwas schwer beim erstellen von Anzeigen in der Vis. 🙈

                                      Feuersturm Negalein 2 Replies Last reply Reply Quote 0
                                      • Feuersturm
                                        Feuersturm @Phantomkommander last edited by

                                        @phantomkommander Ich habe in meiner Wetteransicht einmal die DWD Meldungen und daneben die Nina Meldungen
                                        cf5e46d5-4d36-4fd6-8807-208f990f0b6a-grafik.png

                                        Habe aber gerade bei mir das Problem festgestellt, dass mir gar keine Nina Warnungen mehr angezeigt werden, obwohl in der App welche sichtbar sind. Hat das Problem noch jemand? Ich habe die Adapterversion 0.0.25 im Einsatz.

                                        1 Reply Last reply Reply Quote 1
                                        • Negalein
                                          Negalein Global Moderator @Phantomkommander last edited by

                                          @phantomkommander sagte in [Aufruf] Nina Gefahrenmeldung Adapter:

                                          tue mir da generell noch etwas schwer beim erstellen von Anzeigen in der Vis.

                                          importier dir mal meins.
                                          Vielleicht kannst du dir was übernehmen.

                                          new 14.txt
                                          (Rechtsklick ---> Speichern unter ---> und nicht mit Windows-Editor, sondern zB mit Notepad++ öffnen)

                                          Edit vis.png

                                          Phantomkommander K 2 Replies Last reply Reply Quote 1
                                          • Phantomkommander
                                            Phantomkommander @Negalein last edited by

                                            @negalein hast du auch nur so wenige Punkte?
                                            Im Quelltext sieht das bei dir soviel aus.

                                            58b1c728-6f10-4239-819a-f0ca40073cc8-image.png

                                            Negalein sigi234 T 3 Replies Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            594
                                            Online

                                            31.6k
                                            Users

                                            79.6k
                                            Topics

                                            1.3m
                                            Posts

                                            gefahren gefahrenwarner katwarn nina
                                            62
                                            380
                                            56132
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            Community
                                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                            The ioBroker Community 2014-2023
                                            logo