Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. amgxda

    NEWS

    • Neuer Blog: Fotos und Eindrücke aus Solingen

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 18
    • Best 2
    • Groups 1

    amgxda

    @amgxda

    Starter

    3
    Reputation
    6
    Profile views
    18
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    amgxda Follow
    Starter

    Best posts made by amgxda

    • RE: IoBroker und VOIP / SIP Calls mit Asterisk + Fritzbox

      Zur Info für Nutzer einer aktuellen RaspberryPi OS Version / Debian 12 und Asterisk. Nachdem Asterisk unter Debian 12 aus den Paketquellen geflogen ist, bleibt nur ein selbst kompilieren. Über nachfolgende Anleitung lässt sich eine lauffähige Version (16.30.1) erzeugen, die mit dem iobroker-asterisk kompatibel ist. Tests mit neueren Versionen (20.5) waren jedoch nicht erfolgreich (Manager zwar verbunden, jedoch Fehlermeldung beim Aufruf der Call-Funktion). Der Asterisk-Adapter sollte zudem aus den Github-Quellen installiert werden, da nur dort Änderungen vorhanden sind, die in der npm-Version fehlen. Konfiguration nach Installation wie in der Adapter-Doku beschrieben. Noch ein Hinweis: Weitere Updates für die 16er Version sind nicht zu erwarten, die letzte Änderung ist von Mitte 2023. Ich teste ggf. noch die 18er-Version, diese wird bis 2025 unterstützt.

      Anleitung Asterisk unter Debian 12 Bookworm:


      sudo apt install git vim curl wget libnewt-dev libssl-dev libncurses5-dev subversion libsqlite3-dev build-essential libjansson-dev libxml2-dev uuid-dev

      cd /usr/src/
      sudo wget https://downloads.asterisk.org/pub/telephony/asterisk/old-releases/asterisk-16.30.1.tar.gz
      sudo tar xvf asterisk-16*.tar.gz
      cd asterisk-16*/
      sudo contrib/scripts/get_mp3_source.sh
      sudo contrib/scripts/install_prereq install
      sudo ./configure
      sudo make menuselect

      Im Menü jeweils folgende Pakete auswählen:

      • Add-ons: chan_ooh323 & format_mp3
      • Core Sound Packages: Audio packets CORE-SOUNDS-EN-*
      • Music On Hold: MOH-OPSOUND-WAV bis MOH-G729
      • Extra Sound: EXTRA-SOUNDS-EN-WAV bis EXTRA-SOUNDS-EN-G729
      • Applications: app_macro

      Optional weitere Pakete hinzufügen. Beenden mit "Save&Exit".

      sudo make
      sudo make install
      sudo make progdocs (optionale Dokumentation)
      sudo make samples
      sudo make config
      sudo ldconfig

      sudo groupadd asterisk
      sudo useradd -r -d /var/lib/asterisk -g asterisk asterisk
      sudo usermod -aG audio,dialout asterisk
      sudo chown -R asterisk:asterisk /etc/asterisk
      sudo chown -R asterisk:asterisk /var/{lib,log,spool}/asterisk
      sudo chown -R asterisk:asterisk /usr/lib/asterisk

      Asterisk als Default User für Asterisk:
      sudo nano /etc/default/asterisk
      AST_USER="asterisk"
      AST_GROUP="asterisk"

      sudo nano /etc/asterisk/asterisk.conf
      runuser = asterisk ; The user to run as.
      rungroup = asterisk ; The group to run as

      sudo ufw allow proto tcp from any to any port 5060,5061 (optional Firewall öffnen, falls aktiv)

      sudo systemctl restart asterisk
      sudo systemctl enable asterisk

      Status prüfen:
      sudo systemctl status asterisk
      sudo asterisk -rvv

      posted in JavaScript
      A
      amgxda
    • RE: Test ViessmannAPI v2.0.0

      @tombox

      Hier ein paar Datenpunkte (Luftwärmepumpe):

      Kompressor aktiv:		viessmannapi.0.xxx.0.features.heating.compressors.0.properties.active.value
      Heizkreispumpe aktiv:		viessmannapi.0.xxx.0.features.heating.circuits.1.circulation.pump.properties.status.value
      Warmwasserbereitung:		viessmannapi.0.xxx.0.features.heating.dhw.charging.properties.active.value
      Heizungsmodus:			viessmannapi.0.xxx.0.features.heating.circuits.1.operating.modes.active.properties.value.value
      Heizprogramm:			viessmannapi.0.xxx.0.features.heating.circuits.1.operating.programs.active.properties.value.value
      Temperatur Heizprogramm normal:	viessmannapi.0.xxx.0.features.heating.circuits.1.operating.programs.normal.properties.temperature.value
      Temperatur Heizprogramm reduz.:	viessmannapi.0.xxx.0.features.heating.circuits.1.operating.programs.reduced.properties.temperature.value
      Warmwasser Soll Temperatur:	viessmannapi.0.xxx.0.features.heating.dhw.temperature.properties.value.value
      Warmwasser Ist Temperatur:	viessmannapi.0.xxx.0.features.heating.dhw.sensors.temperature.hotWaterStorage.properties.value.value
      Temperatur Außensensor:		viessmannapi.0.xxx.0.features.heating.sensors.temperature.outside.properties.value.value
      Statistik Kompressor Starts:	viessmannapi.0.xxx.0.features.heating.compressors.0.statistics.properties.starts.value
      Statistik Kompressor Stunden:	viessmannapi.0.xxx.0.features.heating.compressors.0.statistics.properties.hours.value
      
      
      ?Primärkreis Vorlauftemperatur:		viessmann.0.xxx.0.features.heating.primaryCircuit.sensors.temperature.supply.properties.value.value
      ?Sekundärkreis Vorlauftemperatur:	viessmann.0.xxx.0.features.heating.secondaryCircuit.sensors.temperature.supply.properties.value.value
      ?Sekundärkreis Rücklauftemperatur:	viessmann.0.xxx.0.features.heating.secondaryCircuit.sensors.temperature.return.properties.value.value
      ?					viessmann.0.xxx.0.features.heating.sensors.temperature.return.properties.value.value
      
      posted in Tester
      A
      amgxda

    Latest posts made by amgxda

    • RE: IoBroker und VOIP / SIP Calls mit Asterisk + Fritzbox

      Zur Info für Nutzer einer aktuellen RaspberryPi OS Version / Debian 12 und Asterisk. Nachdem Asterisk unter Debian 12 aus den Paketquellen geflogen ist, bleibt nur ein selbst kompilieren. Über nachfolgende Anleitung lässt sich eine lauffähige Version (16.30.1) erzeugen, die mit dem iobroker-asterisk kompatibel ist. Tests mit neueren Versionen (20.5) waren jedoch nicht erfolgreich (Manager zwar verbunden, jedoch Fehlermeldung beim Aufruf der Call-Funktion). Der Asterisk-Adapter sollte zudem aus den Github-Quellen installiert werden, da nur dort Änderungen vorhanden sind, die in der npm-Version fehlen. Konfiguration nach Installation wie in der Adapter-Doku beschrieben. Noch ein Hinweis: Weitere Updates für die 16er Version sind nicht zu erwarten, die letzte Änderung ist von Mitte 2023. Ich teste ggf. noch die 18er-Version, diese wird bis 2025 unterstützt.

      Anleitung Asterisk unter Debian 12 Bookworm:


      sudo apt install git vim curl wget libnewt-dev libssl-dev libncurses5-dev subversion libsqlite3-dev build-essential libjansson-dev libxml2-dev uuid-dev

      cd /usr/src/
      sudo wget https://downloads.asterisk.org/pub/telephony/asterisk/old-releases/asterisk-16.30.1.tar.gz
      sudo tar xvf asterisk-16*.tar.gz
      cd asterisk-16*/
      sudo contrib/scripts/get_mp3_source.sh
      sudo contrib/scripts/install_prereq install
      sudo ./configure
      sudo make menuselect

      Im Menü jeweils folgende Pakete auswählen:

      • Add-ons: chan_ooh323 & format_mp3
      • Core Sound Packages: Audio packets CORE-SOUNDS-EN-*
      • Music On Hold: MOH-OPSOUND-WAV bis MOH-G729
      • Extra Sound: EXTRA-SOUNDS-EN-WAV bis EXTRA-SOUNDS-EN-G729
      • Applications: app_macro

      Optional weitere Pakete hinzufügen. Beenden mit "Save&Exit".

      sudo make
      sudo make install
      sudo make progdocs (optionale Dokumentation)
      sudo make samples
      sudo make config
      sudo ldconfig

      sudo groupadd asterisk
      sudo useradd -r -d /var/lib/asterisk -g asterisk asterisk
      sudo usermod -aG audio,dialout asterisk
      sudo chown -R asterisk:asterisk /etc/asterisk
      sudo chown -R asterisk:asterisk /var/{lib,log,spool}/asterisk
      sudo chown -R asterisk:asterisk /usr/lib/asterisk

      Asterisk als Default User für Asterisk:
      sudo nano /etc/default/asterisk
      AST_USER="asterisk"
      AST_GROUP="asterisk"

      sudo nano /etc/asterisk/asterisk.conf
      runuser = asterisk ; The user to run as.
      rungroup = asterisk ; The group to run as

      sudo ufw allow proto tcp from any to any port 5060,5061 (optional Firewall öffnen, falls aktiv)

      sudo systemctl restart asterisk
      sudo systemctl enable asterisk

      Status prüfen:
      sudo systemctl status asterisk
      sudo asterisk -rvv

      posted in JavaScript
      A
      amgxda
    • Asterisk Adapter unter Debian 12 & community adapters?

      Mir sind folgende Punkte zu Asterisk und dessen Adapter aufgefallen.

      1. Die installierbare Version des Asterisk-Adapters (npm) ist offenbar veraltet, auf Github gibt es Änderungen, ohne die es zu Fehlern kommt. Da der ursprüngliche Autor (https://github.com/schmupu/ioBroker.asterisk) die Pflege anscheinend eingestellt hat, gibt es auch keine neue Version mittels npm mit diesen Aktualisierungen.
        Besteht die Möglichkeit, dass dieses Repo in die iobroker-community-adapters aufgenommen wird und dann eine neue Version bereit gestellt wird, die nicht nur durch eine GitHub-Installation zu installieren ist?

      2. Leider ist Asterisk nicht mehr in den Paketquellen des aktuellen RaspberryPi OS/Debian 12. Ich habe testweise aus den Quellen (Version 20.5) das Programm gebaut. Sowohl Asterisk als auch Adapter melden keine Fehler beim Start. Allerdings kommt es beim Aufruf von sendTo zum Fehler "Originate failed". Offenbar ist die Version 20 nicht kompatibel mit dem Adapter.

      Edit:
      Ich habe jetzt nochmal eine Version aus Version 16.30.1 erstellt und installiert. Damit funktionieren VoIP-Calls mittels Asterisk auch unter Debian 12.

      Die Nutzerbasis von Asterisk scheint bei iobroker nicht sehr hoch zu sein, aber vielleicht lässt sich der Adapter am Leben erhalten, wenn zumindest der Adapter unter community-adapters vorhanden ist. Die Anleitung zum kompilieren könnte man dort mit hinzufügen, es ist nicht allzu schwer.

      Anleitung zum Installieren von Asterisk 16 unter Debian 12 siehe unten. Die Konfiguration muss dann noch danach wie in der Adapter-Doku beschrieben durchgeführt werden.

      sudo apt install git vim curl wget libnewt-dev libssl-dev libncurses5-dev subversion libsqlite3-dev build-essential libjansson-dev libxml2-dev uuid-dev
      
      cd /usr/src/
      sudo wget https://downloads.asterisk.org/pub/telephony/asterisk/old-releases/asterisk-16.30.1.tar.gz
      sudo tar xvf asterisk-16*.tar.gz
      cd asterisk-16*/
      sudo contrib/scripts/get_mp3_source.sh
      sudo contrib/scripts/install_prereq install
      sudo ./configure
      sudo make menuselect
      
      Im Menü jeweils folgende Pakete auswählen:
      - Add-ons: chan_ooh323 & format_mp3
      - Core Sound Packages: Audio packets CORE-SOUNDS-EN-*
      - Music On Hold: MOH-OPSOUND-WAV bis MOH-G729
      - Extra Sound: EXTRA-SOUNDS-EN-WAV bis EXTRA-SOUNDS-EN-G729
      - Applications: app_macro
      
      Optional weitere Pakete hinzufügen. Beenden mit "Save&Exit". 
      
      sudo make
      sudo make install
      sudo make progdocs (optionale Dokumentation)
      sudo make samples
      sudo make config
      sudo ldconfig
      
      sudo groupadd asterisk
      sudo useradd -r -d /var/lib/asterisk -g asterisk asterisk
      sudo usermod -aG audio,dialout asterisk
      sudo chown -R asterisk:asterisk /etc/asterisk
      sudo chown -R asterisk:asterisk /var/{lib,log,spool}/asterisk
      sudo chown -R asterisk:asterisk /usr/lib/asterisk
      
      
      Asterisk als Default User für Asterisk
      
      sudo nano /etc/default/asterisk
      AST_USER="asterisk"
      AST_GROUP="asterisk"
      
      sudo nano /etc/asterisk/asterisk.conf
      runuser = asterisk ; The user to run as.
      rungroup = asterisk ; The group to run as
      
      sudo ufw allow proto tcp from any to any port 5060,5061			(optional Firewall öffnen, falls aktiv)
      
      sudo systemctl restart asterisk
      sudo systemctl enable asterisk
      
      sudo systemctl status asterisk
      sudo asterisk -rvv
       
      [/s]
      
      posted in Error/Bug
      A
      amgxda
    • RE: Test ViessmannAPI v2.0.0

      @mwolle

      Je nach Heizungskonfiguration ändern sich wohl die Datenpunkte.
      Hier sind ein paar Datenpunkte mit Vor- und Rücklauftemperaturen die bei mir relevante Daten liefern:

      viessmannapi.0.xxx.0.features.heating.circuits.1.sensors.temperature.supply.properties.value.value
      viessmannapi.0.xxx.0.features.heating.secondaryCircuit.sensors.temperature.supply.properties.value.value
      viessmannapi.0.xxx.0.features.heating.secondaryCircuit.sensors.temperature.return.properties.value.value
      viessmannapi.0.xxx.0.features.heating.buffer.sensors.temperature.main.properties.value.value

      posted in Tester
      A
      amgxda
    • RE: Test ViessmannAPI v2.0.0

      @oberfragger

      Den Error-Code erhalte ich auch seit ein paar Tagen verstärkt. Meistens geht es ein paar Minuten später wieder. Am 30.11. & 01.12. gab es laut Developerportal Viessmann offenbar Serverausfälle. Und ein Nutzer berichtet heute davon, dass seine Regex-Anfragen vom Server nicht mehr wie bisher beantwortet werden, also bastelt Viessmann weiter an der API.

      posted in Tester
      A
      amgxda
    • RE: Test ViessmannAPI v2.0.0

      Viessmann lotet zur Zeit die Zukunft der API aus. Vor ein paar Tagen wurde eine Email zu einer Umfrage verschickt. Inhalt waren Fragen wie "wie viel wären sie bereit, monatlich für die Nutzung der Viessmann-API zu zahlen", "welche der 5 Funktionen nutzen sie an der Viessmann API am häufigsten" und "Mindestabfrage-Intervall".

      Es läuft wohl auf eine Kastrierung der kostenlosen API hinaus, mit der Option, sich für Geld "Premiuminhalte" wie "Warmwassertemperatur erhöhen" freizuschalten. Kann mir nicht vorstellen, dass eine größere Anzahl an Personen bereit ist, für so etwas Geld auszugeben. Dann baue ich mir das lieber auf eine lokale Lösung um. Die Projekte dafür gibt es ja zumindest.

      posted in Tester
      A
      amgxda
    • RE: Test ViessmannAPI v2.0.0

      @tombox

      Über iobroker bzw. npm wird die Verison 2.06 angeboten, auf GitHub finde ich aber nur Version 2.04: github.com/TA2k/ioBroker.viessmannapi
      Bei npm ist auch diese Quelle angegeben. Wo finde ich die Sourcen dazu?

      posted in Tester
      A
      amgxda
    • Instanzen: Fehler - Verbindung mit Host (alle Adapter)

      Hallo! Schaffe es leider nicht, den Fehler unten bei meiner iobroker-Installation zu beheben.

      Unter "Instanzen" wechseln sämtliche Adapter ständig (abwechselnd) zwischen "roter und grüner Ampel" ca. alle 20 Sekunden. Schaut man sich die Details, z.B. beim Admin-Adapter an, so liegt es an der "Verbindung mit Host", diese geht angeblich regelmäßig verloren. Unter system.adapter.admin.0.connected steht dann "(null)" anstatt true. Die einzelnen Adapter laufen offenbar normal und ohne Probleme. Es gibt auch keine ungewöhnlichen Log-Einträge von den Instanzen, nachdem diese gestartet wurden.

      1261966c-e96d-43b3-86ce-2593df0a028d-grafik.png
      d03f489e-8211-4c78-ac9c-6c28f6393867-grafik.png

      Am System bewusst geändert habe ich lediglich das Update auf den js-controller 3.3.17/3.3.18 (wobei ein Downgrade keine Lösung brachte). Neustart Pi/iobroker brachte keine Lösung. Neu-Installation diverser Adapter brachte nichts.

      Wie wird denn die "Verbunden mit Host"-Ausgabe unter "Instanzen" gesteuert, ist das eine Funktion des Admin-Adapters oder js-controllers und an welchem Punkt kann man hier ansetzen?

      Sind die wiederholten Subscribe/unsubscribe-Meldungen im Debug-Log normal?

      Admin-Instanz mit Debug-Ausgabe:

      2021-09-13 09:13:36.400 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.alive
      2021-09-13 09:13:36.402 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive
      2021-09-13 09:13:36.408 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.compactMode
      2021-09-13 09:13:36.409 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode
      2021-09-13 09:13:36.410 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.connected
      2021-09-13 09:13:36.410 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected
      2021-09-13 09:13:36.411 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.cpu
      2021-09-13 09:13:36.412 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu
      2021-09-13 09:13:36.413 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.cputime
      2021-09-13 09:13:36.413 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime
      2021-09-13 09:13:36.414 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.eventLoopLag
      2021-09-13 09:13:36.415 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag
      2021-09-13 09:13:36.416 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.inputCount
      2021-09-13 09:13:36.416 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount
      2021-09-13 09:13:36.417 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.logLevel
      2021-09-13 09:13:36.418 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel
      2021-09-13 09:13:36.419 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.memHeapTotal
      2021-09-13 09:13:36.419 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal
      2021-09-13 09:13:36.420 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.memHeapUsed
      2021-09-13 09:13:36.421 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed
      2021-09-13 09:13:36.422 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.memRss
      2021-09-13 09:13:36.422 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss
      2021-09-13 09:13:36.423 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.outputCount
      2021-09-13 09:13:36.424 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount
      2021-09-13 09:13:36.424 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.sigKill
      2021-09-13 09:13:36.425 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill
      2021-09-13 09:13:36.426 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.uptime
      2021-09-13 09:13:36.427 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:15:00.083 - info: host.pi4 instance system.adapter.dwd.0 started with pid 24459
      2021-09-13 09:15:07.775 - info: host.pi4 instance system.adapter.dwd.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
      2021-09-13 09:15:17.590 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.*.alive
      2021-09-13 09:15:17.594 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.connected, system.adapter.*.inputCount, system.adapter.*.memRss, system.adapter.*.outputCount, system.adapter.*.logLevel, system.host.*.diskFree, system.host.*.diskSize, system.host.*.diskWarning, system.host.*.freemem, *.info.connection
      2021-09-13 09:15:17.602 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.*.connected
      2021-09-13 09:15:17.603 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.inputCount, system.adapter.*.memRss, system.adapter.*.outputCount, system.adapter.*.logLevel, system.host.*.diskFree, system.host.*.diskSize, system.host.*.diskWarning, system.host.*.freemem, *.info.connection
      2021-09-13 09:15:17.604 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.*.inputCount
      2021-09-13 09:15:17.606 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.memRss, system.adapter.*.outputCount, system.adapter.*.logLevel, system.host.*.diskFree, system.host.*.diskSize, system.host.*.diskWarning, system.host.*.freemem, *.info.connection
      2021-09-13 09:15:17.607 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.*.memRss
      2021-09-13 09:15:17.608 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.outputCount, system.adapter.*.logLevel, system.host.*.diskFree, system.host.*.diskSize, system.host.*.diskWarning, system.host.*.freemem, *.info.connection
      2021-09-13 09:15:17.609 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.*.outputCount
      2021-09-13 09:15:17.610 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.logLevel, system.host.*.diskFree, system.host.*.diskSize, system.host.*.diskWarning, system.host.*.freemem, *.info.connection
      2021-09-13 09:15:17.611 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.*.logLevel
      2021-09-13 09:15:17.612 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.host.*.diskFree, system.host.*.diskSize, system.host.*.diskWarning, system.host.*.freemem, *.info.connection
      2021-09-13 09:15:17.613 - debug: admin.0 (22397) Unsubscribe STATES: system.host.*.diskFree
      2021-09-13 09:15:17.614 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.host.*.diskSize, system.host.*.diskWarning, system.host.*.freemem, *.info.connection
      2021-09-13 09:15:17.615 - debug: admin.0 (22397) Unsubscribe STATES: system.host.*.diskSize
      2021-09-13 09:15:17.617 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.host.*.diskWarning, system.host.*.freemem, *.info.connection
      2021-09-13 09:15:17.618 - debug: admin.0 (22397) Unsubscribe STATES: system.host.*.diskWarning
      2021-09-13 09:15:17.620 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.host.*.freemem, *.info.connection
      2021-09-13 09:15:17.621 - debug: admin.0 (22397) Unsubscribe STATES: system.host.*.freemem
      2021-09-13 09:15:17.623 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, *.info.connection
      2021-09-13 09:15:17.623 - debug: admin.0 (22397) Unsubscribe STATES: *.info.connection
      2021-09-13 09:15:17.625 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed
      2021-09-13 09:15:50.213 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.alive
      2021-09-13 09:15:50.215 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:15:50.215 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.compactMode
      2021-09-13 09:15:50.217 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:15:50.217 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.connected
      2021-09-13 09:15:50.219 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:15:50.220 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.cpu
      2021-09-13 09:15:50.221 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:15:50.222 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.cputime
      2021-09-13 09:15:50.223 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:15:50.224 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.eventLoopLag
      2021-09-13 09:15:50.231 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:15:50.232 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.inputCount
      2021-09-13 09:15:50.236 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:15:50.237 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.logLevel
      2021-09-13 09:15:50.239 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:15:50.240 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.memHeapTotal
      2021-09-13 09:15:50.241 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:15:50.242 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.memHeapUsed
      2021-09-13 09:15:50.243 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:15:50.244 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.memRss
      2021-09-13 09:15:50.245 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:15:50.246 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.outputCount
      2021-09-13 09:15:50.248 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:15:50.249 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.sigKill
      2021-09-13 09:15:50.250 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.uptime
      2021-09-13 09:15:50.250 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.uptime
      2021-09-13 09:15:50.251 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed
      2021-09-13 09:15:50.366 - debug: admin.0 (22397) Subscribe STATES: system.adapter.*.alive
      2021-09-13 09:15:50.366 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive
      2021-09-13 09:15:50.369 - debug: admin.0 (22397) Subscribe STATES: system.adapter.*.connected
      2021-09-13 09:15:50.369 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected
      2021-09-13 09:15:50.373 - debug: admin.0 (22397) Subscribe STATES: system.adapter.*.inputCount
      2021-09-13 09:15:50.374 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected, system.adapter.*.inputCount
      2021-09-13 09:15:50.375 - debug: admin.0 (22397) Subscribe STATES: system.adapter.*.memRss
      2021-09-13 09:15:50.375 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected, system.adapter.*.inputCount, system.adapter.*.memRss
      2021-09-13 09:15:50.376 - debug: admin.0 (22397) Subscribe STATES: system.adapter.*.outputCount
      2021-09-13 09:15:50.376 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected, system.adapter.*.inputCount, system.adapter.*.memRss, system.adapter.*.outputCount
      2021-09-13 09:15:50.378 - debug: admin.0 (22397) Subscribe STATES: system.adapter.*.logLevel
      2021-09-13 09:15:50.378 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected, system.adapter.*.inputCount, system.adapter.*.memRss, system.adapter.*.outputCount, system.adapter.*.logLevel
      2021-09-13 09:15:50.379 - debug: admin.0 (22397) Subscribe STATES: system.host.*.diskFree
      2021-09-13 09:15:50.380 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected, system.adapter.*.inputCount, system.adapter.*.memRss, system.adapter.*.outputCount, system.adapter.*.logLevel, system.host.*.diskFree
      2021-09-13 09:15:50.381 - debug: admin.0 (22397) Subscribe STATES: system.host.*.diskSize
      2021-09-13 09:15:50.381 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected, system.adapter.*.inputCount, system.adapter.*.memRss, system.adapter.*.outputCount, system.adapter.*.logLevel, system.host.*.diskFree, system.host.*.diskSize
      2021-09-13 09:15:50.382 - debug: admin.0 (22397) Subscribe STATES: system.host.*.diskWarning
      2021-09-13 09:15:50.383 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected, system.adapter.*.inputCount, system.adapter.*.memRss, system.adapter.*.outputCount, system.adapter.*.logLevel, system.host.*.diskFree, system.host.*.diskSize, system.host.*.diskWarning
      2021-09-13 09:15:50.384 - debug: admin.0 (22397) Subscribe STATES: system.host.*.freemem
      2021-09-13 09:15:50.384 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected, system.adapter.*.inputCount, system.adapter.*.memRss, system.adapter.*.outputCount, system.adapter.*.logLevel, system.host.*.diskFree, system.host.*.diskSize, system.host.*.diskWarning, system.host.*.freemem
      2021-09-13 09:15:50.385 - debug: admin.0 (22397) Subscribe STATES: *.info.connection
      2021-09-13 09:15:50.386 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected, system.adapter.*.inputCount, system.adapter.*.memRss, system.adapter.*.outputCount, system.adapter.*.logLevel, system.host.*.diskFree, system.host.*.diskSize, system.host.*.diskWarning, system.host.*.freemem, *.info.connection
      2021-09-13 09:15:50.389 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:15:50.404 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:15:50.405 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:15:50.406 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:15:50.407 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:15:50.407 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:15:50.408 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:15:50.408 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:15:50.409 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:15:50.409 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:15:50.410 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:16:41.595 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.alive
      2021-09-13 09:16:41.596 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive
      2021-09-13 09:16:41.603 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.compactMode
      2021-09-13 09:16:41.604 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode
      2021-09-13 09:16:41.605 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.connected
      2021-09-13 09:16:41.606 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected
      2021-09-13 09:16:41.607 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.cpu
      2021-09-13 09:16:41.608 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu
      2021-09-13 09:16:41.610 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.cputime
      2021-09-13 09:16:41.610 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime
      2021-09-13 09:16:41.612 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.eventLoopLag
      2021-09-13 09:16:41.613 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag
      2021-09-13 09:16:41.614 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.inputCount
      2021-09-13 09:16:41.615 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount
      2021-09-13 09:16:41.616 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.logLevel
      2021-09-13 09:16:41.617 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel
      2021-09-13 09:16:41.618 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.memHeapTotal
      2021-09-13 09:16:41.619 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal
      2021-09-13 09:16:41.620 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.memHeapUsed
      2021-09-13 09:16:41.621 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed
      2021-09-13 09:16:41.634 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.memRss
      2021-09-13 09:16:41.635 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss
      2021-09-13 09:16:41.636 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.outputCount
      2021-09-13 09:16:41.637 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount
      2021-09-13 09:16:41.638 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.sigKill
      2021-09-13 09:16:41.639 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill
      2021-09-13 09:16:41.641 - debug: admin.0 (22397) Subscribe STATES: system.adapter.info.0.uptime
      2021-09-13 09:16:41.642 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.alive, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:17:09.572 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.alive
      2021-09-13 09:17:09.574 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.compactMode, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:17:09.575 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.compactMode
      2021-09-13 09:17:09.576 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.connected, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:17:09.581 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.connected
      2021-09-13 09:17:09.582 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.cpu, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:17:09.583 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.cpu
      2021-09-13 09:17:09.584 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.cputime, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:17:09.585 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.cputime
      2021-09-13 09:17:09.586 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.eventLoopLag, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:17:09.587 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.eventLoopLag
      2021-09-13 09:17:09.588 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.inputCount, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:17:09.589 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.inputCount
      2021-09-13 09:17:09.590 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.logLevel, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:17:09.590 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.logLevel
      2021-09-13 09:17:09.591 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.memHeapTotal, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:17:09.592 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.memHeapTotal
      2021-09-13 09:17:09.593 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.memHeapUsed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:17:09.594 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.memHeapUsed
      2021-09-13 09:17:09.595 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.memRss, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:17:09.596 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.memRss
      2021-09-13 09:17:09.597 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.outputCount, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:17:09.598 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.outputCount
      2021-09-13 09:17:09.598 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.sigKill, system.adapter.info.0.uptime
      2021-09-13 09:17:09.599 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.sigKill
      2021-09-13 09:17:09.600 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.info.0.uptime
      2021-09-13 09:17:09.601 - debug: admin.0 (22397) Unsubscribe STATES: system.adapter.info.0.uptime
      2021-09-13 09:17:09.602 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed
      2021-09-13 09:17:09.727 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive
      2021-09-13 09:17:09.728 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected
      2021-09-13 09:17:09.730 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected, system.adapter.*.inputCount
      2021-09-13 09:17:09.732 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:17:09.733 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected, system.adapter.*.inputCount, system.adapter.*.memRss
      2021-09-13 09:17:09.734 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected, system.adapter.*.inputCount, system.adapter.*.memRss, system.adapter.*.outputCount
      2021-09-13 09:17:09.734 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected, system.adapter.*.inputCount, system.adapter.*.memRss, system.adapter.*.outputCount, system.adapter.*.logLevel
      2021-09-13 09:17:09.735 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected, system.adapter.*.inputCount, system.adapter.*.memRss, system.adapter.*.outputCount, system.adapter.*.logLevel, system.host.*.diskFree
      2021-09-13 09:17:09.738 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected, system.adapter.*.inputCount, system.adapter.*.memRss, system.adapter.*.outputCount, system.adapter.*.logLevel, system.host.*.diskFree, system.host.*.diskSize
      2021-09-13 09:17:09.738 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected, system.adapter.*.inputCount, system.adapter.*.memRss, system.adapter.*.outputCount, system.adapter.*.logLevel, system.host.*.diskFree, system.host.*.diskSize, system.host.*.diskWarning
      2021-09-13 09:17:09.739 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected, system.adapter.*.inputCount, system.adapter.*.memRss, system.adapter.*.outputCount, system.adapter.*.logLevel, system.host.*.diskFree, system.host.*.diskSize, system.host.*.diskWarning, system.host.*.freemem
      2021-09-13 09:17:09.739 - debug: admin.0 (22397) Subscribes: system.host.pi4.alive, system.adapter.discovery.0.alive, system.host.*.alive, system.host.*.notifications.*, admin.0.info.newsFeed, system.adapter.*.alive, system.adapter.*.connected, system.adapter.*.inputCount, system.adapter.*.memRss, system.adapter.*.outputCount, system.adapter.*.logLevel, system.host.*.diskFree, system.host.*.diskSize, system.host.*.diskWarning, system.host.*.freemem, *.info.connection
      2021-09-13 09:17:09.747 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:17:09.748 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:17:09.749 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:17:09.750 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:17:09.751 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:17:09.753 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:17:09.755 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:17:09.756 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:17:09.764 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      2021-09-13 09:17:09.772 - debug: admin.0 (22397) Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) }
      

      |Hardwaresystem:| Pi4 |
      |Arbeitsspeicher:| 4GB |
      |Betriebssystem:| Raspberry Pi OS |
      |Node-Version:| 12.22.6 |
      |NPM-Version:| 6.x.x |
      js-controller: 3.3.18, admin 5.1.25

      posted in Error/Bug
      A
      amgxda
    • RE: Test ViessmannAPI v2.0.0

      @ilovegym
      Ja, sollte Viessmann hier zu restriktiv vorgehen, werde ich die vcontrold-Lösung nutzen. Die Cloud-Lösung nutze ich hauptsächlich wegen der versprochenen 5-Jahre-Garantie. Wenn ich es richtig sehe, muss bei vcontrold nur das USB-Kabel an den RPi, der vcontrold laufen und mit iobroker.viessmann bekommt man auch noch die Datenpunkte. Das komplizierteste scheint die Erstellung der Konfigurationsdateien zu sein.

      Aber bis zum Garantie-Ende bin ich froh, dass es den viessmannapi-Adapter gibt 🙂

      posted in Tester
      A
      amgxda
    • RE: Test ViessmannAPI v2.0.0

      Der Viessmann Developer Portal Changelog-Eintrag vom Juli 2021 ist auch bezeichnend. Da wird schon angekündigt, dass Datenpunkte und Funktionen hinter der Paywall verschwinden sollen. Warmwasser starten, nur gegen Gebühr, toll ausgedacht, Viessmann!

      "Hinweis: Die Funktionen der Basis (freien) Variante der API sind ein temporäres Angebot und der Umfang kann sich mit der Zeit gegenenfalls ändern."

      posted in Tester
      A
      amgxda
    • RE: Test ViessmannAPI v2.0.0

      @michis0806

      Laut Viessmann API-Beschreibung sollte es diese Werte unter heating.solar.power.production (Solar thermal power production) geben:

      Shows statistics of solar power production: daily, weekly, monthly, yearly

      posted in Tester
      A
      amgxda
    Community
    Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
    The ioBroker Community 2014-2023
    logo