Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Skripten / Logik
    4. Blockly
    5. Sayit-Block funktioniert nicht mehr

    NEWS

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    Sayit-Block funktioniert nicht mehr

    This topic has been deleted. Only users with topic management privileges can see it.
    • B
      Bender275 @crunchip last edited by

      @crunchip

      Tja, seit einiger Zeit - ich weiß es nicht genau, weil es ja auch nicht sofort auffält.

      Möglich, dass es mit dem Node.js-Update zusammenhängt.

      iob fix
      

      Half leider nicht, obwohl mehrmals versucht.

      crunchip 1 Reply Last reply Reply Quote 0
      • crunchip
        crunchip Forum Testing Most Active @Bender275 last edited by

        @bender275 sagte in Sayit-Block funktioniert nicht mehr:

        dass es mit dem Node.js-Update zusammenhängt

        iob diag
        
        1 Reply Last reply Reply Quote 0
        • Thomas Braun
          Thomas Braun Most Active @Bender275 last edited by

          @bender275 sagte in Sayit-Block funktioniert nicht mehr:

          npm rebuild hat auch nichts gebracht.

          Wie genau wo ausgeführt?
          Aber erstmal die Ausgabe von

          iob diag
          
          1 Reply Last reply Reply Quote 0
          • wendy2702
            wendy2702 last edited by wendy2702

            Habe möglicherweise dasselbe Problem.

            Alle vorhanden scripte mit Sprachausgabe funktionieren, ändere ich in einem Script z.B: nur den Trigger Datenpunkt geht danach die Ansage nicht mehr. Auch wenn ich auf den alten DP zurück ändere keine Ansage mehr.

            Habe heute diese Upgrades gemacht:

            2023-07-05 11:20:14.710  - info: host.iobroker iobroker upgrade yahka@1.0.3 --debug
            2023-07-05 11:23:00.598  - info: host.iobroker iobroker upgrade sayit@3.0.5 --debug
            2023-07-05 11:23:59.153  - info: host.iobroker iobroker upgrade javascript@7.1.1 --debug
            

            Restart aller betroffenen Instanzen erfolglos.

            Upload aller betroffenen Instanzen erfolglos.

            Aktuell läuft ein kompletter upload.

            EDIT: Upload all hat nicht geholfen.

            DJMarc75 1 Reply Last reply Reply Quote 0
            • DJMarc75
              DJMarc75 @wendy2702 last edited by DJMarc75

              @wendy2702 sagte in Sayit-Block funktioniert nicht mehr:

              Habe möglicherweise dasselbe Problem

              Dann geh mal auf die Version 7.0.3 vom JavascriptAdapter zurück und teste nochmal.

              wendy2702 1 Reply Last reply Reply Quote 0
              • wendy2702
                wendy2702 @DJMarc75 last edited by

                @djmarc75 Schon probiert. Gleiches ergebnis.

                Gerade mal den kompletten Server neu gestartet. Mal sehen ob dann was geht.

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

                  Jetzt auch mit Sayit auf die vorherige Version zurück.

                  Alte scripte funktionieren noch, das eine indem der Trigger geändert wurde immer noch nicht.

                  Habe einmal einen DNS Fehler im Log gefunden.

                  2023-07-05 18:38:39.377  - info: sayit.0 (1808) saying: Garagentor rechtsauf
                  2023-07-05 18:38:48.641  - info: sayit.0 (1808) saying: Garagentor rechtszu
                  2023-07-05 18:39:01.568  - error: sayit.0 (1808) Error: dns service error: unknown
                  2023-07-05 18:39:10.021  - info: sayit.0 (1808) saying: Hallo
                  2023-07-05 18:40:10.599  - debug: javascript.0 (1212) script.js.common.Ansagen.Test_Ansage: Executed sayit.0: : Garagentor links auf
                  2023-07-05 18:40:19.349  - debug: javascript.0 (1212) script.js.common.Ansagen.Test_Ansage: Executed sayit.0: : Garagentor links zu
                  2023-07-05 18:40:50.141  - info: sayit.0 (1808) saying: Garagentor rechtsauf
                  2023-07-05 18:41:07.645  - info: sayit.0 (1808) saying: Garagentor rechtszu
                  
                  
                  1 Reply Last reply Reply Quote 0
                  • wendy2702
                    wendy2702 last edited by

                    Ich konnte es für mich lösen.

                    Habe eine zusätzliche Sayit Instanz installiert, Google deutsch und Browser eingestellt.
                    Diese Instanz im Script ausgewählt und script einmal getriggert. Ansage erfolgt mit Google deutsch, dann zurück auf die Ursprüngliche Sayit instanz und es funktioniert wieder.

                    Allerdings habe ich jetzt noch die alten Sayit und Javascript Versionen laufen.

                    jetzt mal wieder Upgrade wagen.

                    1 Reply Last reply Reply Quote 1
                    • wendy2702
                      wendy2702 last edited by wendy2702

                      So,

                      gestern noch die Upgrades gemacht und alles läuft.

                      Heute dann in einem anderen Script den Trigger geändert und schon kommt keine Ansage mehr.

                      So sieht das simple Blockly aus:

                      06e2c3ab-8f50-4455-b7ef-1c756e427dba-grafik.png

                      Hier das JS dazu:

                      on({ id: [].concat(['hm-rpc.0.REQ0571844.1.STATE']), change: 'ne'  }, async (obj) => {
                        let value = obj.state.val;
                        let oldValue = obj.oldState.val;
                        console.log(('Garagentor rechts' + String((obj.state ? obj.state.val : "") ? 'auf' : 'zu')));
                        sendTo("sayit.0", "say", { text: ('Garagentor rechts' + String((obj.state ? obj.state.val : "") ? 'auf' : 'zu')) });
                        console.log("Executed sayit.0: : " + ('Garagentor rechts' + String((obj.state ? obj.state.val : "") ? 'auf' : 'zu')));
                      });
                      

                      So das Debug log vom Sayit Adapter wenn es nicht funktioniert:

                      2023-07-06 12:35:50.766  - info: javascript.0 (6141) script.js.common.Ansagen.Voice_Feedback_Garagentor_Rechts: Executed sayit.0: : Garagentor rechtsauf
                      
                      

                      Und so für ein Script bei dem die Ausgabe geht:

                      2023-07-06 12:36:46.001  - info: sayit.0 (24351) saying: Garagentor links auf
                      
                      

                      iob diag:

                      Skript v.2023-04-16

                      *** BASE SYSTEM ***
                      Architecture : x86_64
                      Docker : false
                      Virtualization : lxc
                      Distributor ID: Debian
                      Description: Debian GNU/Linux 11 (bullseye)
                      Release: 11
                      Codename: bullseye

                      PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
                      NAME="Debian GNU/Linux"
                      VERSION_ID="11"
                      VERSION="11 (bullseye)"
                      VERSION_CODENAME=bullseye
                      ID=debian
                      HOME_URL="https://www.debian.org/"
                      SUPPORT_URL="https://www.debian.org/support"
                      BUG_REPORT_URL="https://bugs.debian.org/"

                      Systemuptime and Load:
                      12:47:10 up 18:58, 1 user, load average: 5.00, 5.60, 4.78
                      CPU threads: 4

                      *** Time and Time Zones ***
                      Local time: Thu 2023-07-06 12:47:11 CEST
                      Universal time: Thu 2023-07-06 10:47:11 UTC
                      RTC time: n/a
                      Time zone: Europe/Berlin (CEST, +0200)
                      System clock synchronized: yes
                      NTP service: inactive
                      RTC in local TZ: no

                      *** User and Groups ***
                      mirko
                      /home/mirko
                      mirko sudo iobroker

                      *** X-Server-Setup ***
                      X-Server: false
                      Desktop:
                      Terminal: tty
                      Boot Target: graphical.target

                      *** MEMORY ***
                      total used free shared buff/cache available
                      Mem: 16G 3.1G 12G 0.0K 439M 13G
                      Swap: 0B 0B 0B
                      Total: 16G 3.1G 12G

                          16384 M total memory
                           3131 M used memory
                            217 M active memory
                           2948 M inactive memory
                          12813 M free memory
                              0 M buffer memory
                            439 M swap cache
                              0 M total swap
                              0 M used swap
                              0 M free swap
                      

                      *** FILESYSTEM ***
                      Filesystem Type Size Used Avail Use% Mounted on
                      /dev/mapper/pve-vm--101--disk--0 ext4 30G 8.7G 20G 32% /
                      none tmpfs 492K 4.0K 488K 1% /dev
                      udev devtmpfs 16G 0 16G 0% /dev/tty
                      tmpfs tmpfs 16G 0 16G 0% /dev/shm
                      tmpfs tmpfs 6.2G 92K 6.2G 1% /run
                      tmpfs tmpfs 5.0M 0 5.0M 0% /run/lock
                      tmpfs tmpfs 3.1G 0 3.1G 0% /run/user/1001

                      Messages concerning ext4 filesystem in dmesg:
                      dmesg: read kernel buffer failed: Operation not permitted

                      Show mounted filesystems (real ones only):
                      TARGET SOURCE FSTYPE OPTIONS
                      / /dev/mapper/pve-vm--101--disk--0 ext4 rw,relatime,stripe=16

                      Files in neuralgic directories:

                      /var:
                      1.3G /var/
                      885M /var/log
                      881M /var/log/journal/c5b67cb2fb4c49678a4fd62f7e4a2b20
                      881M /var/log/journal
                      230M /var/lib

                      Hint: You are currently not seeing messages from other users and the system.
                      Users in groups 'adm', 'systemd-journal' can see all messages.
                      Pass -q to turn off this notice.
                      Archived and active journals take up 96.0M in the file system.

                      /opt/iobroker/backups:
                      288M /opt/iobroker/backups/

                      /opt/iobroker/iobroker-data:
                      817M /opt/iobroker/iobroker-data/
                      437M /opt/iobroker/iobroker-data/files
                      226M /opt/iobroker/iobroker-data/backup-objects
                      81M /opt/iobroker/iobroker-data/files/vis
                      78M /opt/iobroker/iobroker-data/files/icons-open-icon-library-png

                      The five largest files in iobroker-data are:
                      26M /opt/iobroker/iobroker-data/objects.json.migrated
                      26M /opt/iobroker/iobroker-data/objects.json.bak.migrated
                      25M /opt/iobroker/iobroker-data/objects.jsonl
                      25M /opt/iobroker/iobroker-data/objects.json.org
                      24M /opt/iobroker/iobroker-data/objects.json.broken

                      *** NodeJS-Installation ***

                      /usr/bin/nodejs v18.16.1
                      /usr/bin/node v18.16.1
                      /usr/bin/npm 9.5.1
                      /usr/bin/npx 9.5.1

                      nodejs:
                      Installed: 18.16.1-deb-1nodesource1
                      Candidate: 18.16.1-deb-1nodesource1
                      Version table:
                      *** 18.16.1-deb-1nodesource1 500
                      500 https://deb.nodesource.com/node_18.x bullseye/main amd64 Packages
                      100 /var/lib/dpkg/status
                      16.20.1-deb-1nodesource1 500
                      500 https://deb.nodesource.com/node_16.x bullseye/main amd64 Packages
                      14.21.3-deb-1nodesource1 500
                      500 https://deb.nodesource.com/node_14.x bullseye/main amd64 Packages
                      12.22.12-deb-1nodesource1 500
                      500 https://deb.nodesource.com/node_12.x bullseye/main amd64 Packages
                      12.22.12~dfsg-1~deb11u4 500
                      500 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages
                      12.22.12~dfsg-1~deb11u3 500
                      500 http://deb.debian.org/debian bullseye/main amd64 Packages
                      10.24.1-deb-1nodesource1 500
                      500 https://deb.nodesource.com/node_10.x bullseye/main amd64 Packages

                      Temp directories causing npm8 problem: 0
                      No problems detected

                      *** ioBroker-Installation ***

                      ioBroker Status
                      iobroker is running on this host.

                      Objects type: jsonl
                      States type: jsonl

                      Core adapters versions
                      js-controller: 5.0.6
                      admin: 6.5.9
                      javascript: 7.1.1

                      Adapters from github: 5

                      Adapter State

                      • system.adapter.admin.0 : admin : iobroker - enabled, port: 8081, bind: 0.0.0.0, run as: admin

                      • system.adapter.admin.1 : admin : pi-iobroker - enabled, port: 8081, bind: 0.0.0.0, run as: admin
                        system.adapter.alias-manager.0 : alias-manager : iobroker - enabled
                        system.adapter.birthdays.0 : birthdays : iobroker - disabled
                        system.adapter.birthdays.1 : birthdays : iobroker - enabled
                        system.adapter.daswetter.0 : daswetter : iobroker - enabled
                        system.adapter.discovery.0 : discovery : pi-iobroker - disabled
                        system.adapter.dwd.0 : dwd : iobroker - enabled

                      • system.adapter.email.0 : email : iobroker - enabled

                      • system.adapter.energiefluss-erweitert.0 : energiefluss-erweitert: iobroker - enabled

                      • system.adapter.energiefluss.0 : energiefluss : iobroker - enabled

                      • system.adapter.enigma2.0 : enigma2 : iobroker - enabled

                      • system.adapter.enocean.0 : enocean : pi-iobroker - enabled
                        system.adapter.feiertage.0 : feiertage : iobroker - enabled
                        system.adapter.flot.0 : flot : iobroker - disabled

                      • system.adapter.fritzbox.0 : fritzbox : iobroker - enabled

                      • system.adapter.harmony.0 : harmony : iobroker - enabled

                      • system.adapter.history.0 : history : iobroker - enabled

                      • system.adapter.hm-rega.0 : hm-rega : iobroker - enabled

                      • system.adapter.hm-rpc.0 : hm-rpc : iobroker - enabled, port: 0

                      • system.adapter.hm-rpc.1 : hm-rpc : iobroker - enabled, port: 0

                      • system.adapter.hm-rpc.2 : hm-rpc : iobroker - enabled, port: 0
                        system.adapter.homeconnect.0 : homeconnect : iobroker - disabled
                        system.adapter.hue-extended.0 : hue-extended : iobroker - disabled

                      • system.adapter.hue.0 : hue : iobroker - enabled, port: 80
                        system.adapter.ical.0 : ical : iobroker - enabled
                        system.adapter.ical.1 : ical : iobroker - enabled
                        system.adapter.ical.2 : ical : iobroker - enabled
                        system.adapter.icons-addictive-flavour-png.0: icons-addictive-flavour-png: iobroker - disabled
                        system.adapter.icons-fatcow-hosting.0 : icons-fatcow-hosting : iobroker - disabled
                        system.adapter.icons-icons8.0 : icons-icons8 : iobroker - disabled
                        system.adapter.icons-material-png.0 : icons-material-png : iobroker - disabled
                        system.adapter.icons-material-svg.0 : icons-material-svg : iobroker - disabled
                        system.adapter.icons-mfd-png.0 : icons-mfd-png : iobroker - disabled
                        system.adapter.icons-mfd-svg.0 : icons-mfd-svg : iobroker - disabled
                        system.adapter.icons-open-icon-library-png.0: icons-open-icon-library-png: iobroker - disabled
                        system.adapter.icons-ultimate-png.0 : icons-ultimate-png : iobroker - disabled

                      • system.adapter.influxdb.0 : influxdb : iobroker - enabled, port: 8086

                      • system.adapter.javascript.0 : javascript : iobroker - enabled

                      • system.adapter.javascript.1 : javascript : iobroker - enabled

                      • system.adapter.javascript.2 : javascript : iobroker - enabled
                        system.adapter.js2fs.0 : js2fs : iobroker - disabled

                      • system.adapter.linux-control.0 : linux-control : iobroker - enabled

                      • system.adapter.modbus.0 : modbus : iobroker - enabled

                      • system.adapter.modbus.1 : modbus : iobroker - enabled

                      • system.adapter.modbus.2 : modbus : iobroker - enabled

                      • system.adapter.modbus.3 : modbus : pi-iobroker - enabled

                      • system.adapter.modbus.5 : modbus : iobroker - enabled
                        system.adapter.modbus.6 : modbus : iobroker - disabled

                      • system.adapter.mqtt.0 : mqtt : iobroker - enabled, port: 1883, bind: 0.0.0.0
                        system.adapter.musiccast.0 : musiccast : iobroker - disabled
                        system.adapter.net-tools.0 : net-tools : pi-iobroker - disabled
                        system.adapter.nut.0 : nut : iobroker - disabled

                      • system.adapter.ping.0 : ping : iobroker - enabled
                        system.adapter.pushover.0 : pushover : iobroker - disabled
                        system.adapter.roborock.0 : roborock : iobroker - disabled
                        system.adapter.rpi2.0 : rpi2 : pi-iobroker - disabled

                      • system.adapter.sayit.0 : sayit : iobroker - enabled, port: 0
                        system.adapter.sayit.1 : sayit : iobroker - disabled

                      • system.adapter.sayit.2 : sayit : iobroker - enabled

                      • system.adapter.shelly.0 : shelly : iobroker - enabled, port: 1882, bind: 192.168.178.18

                      • system.adapter.shuttercontrol.0 : shuttercontrol : iobroker - enabled

                      • system.adapter.simple-api.0 : simple-api : iobroker - enabled, port: 8091, bind: 192.168.178.18, run as: admin

                      • system.adapter.smartmeter.0 : smartmeter : pi-iobroker - enabled
                        system.adapter.smartmeter.1 : smartmeter : iobroker - disabled

                      • system.adapter.smartstate.0 : smartstate : iobroker - enabled

                      • system.adapter.socketio.0 : socketio : iobroker - enabled, port: 8084, bind: 192.168.178.18, run as: admin

                      • system.adapter.sourceanalytix.0 : sourceanalytix : iobroker - enabled

                      • system.adapter.tankerkoenig.0 : tankerkoenig : iobroker - enabled

                      • system.adapter.telegram.0 : telegram : iobroker - enabled, port: 8443, bind: 192.168.178.18
                        system.adapter.tr-064.0 : tr-064 : pi-iobroker - disabled

                      • system.adapter.trashschedule.0 : trashschedule : iobroker - enabled
                        system.adapter.vis-bars.0 : vis-bars : iobroker - disabled
                        system.adapter.vis-canvas-gauges.0 : vis-canvas-gauges : iobroker - disabled
                        system.adapter.vis-colorpicker.0 : vis-colorpicker : iobroker - disabled
                        system.adapter.vis-fancyswitch.0 : vis-fancyswitch : iobroker - disabled
                        system.adapter.vis-google-fonts.0 : vis-google-fonts : iobroker - enabled
                        system.adapter.vis-hqwidgets.0 : vis-hqwidgets : iobroker - disabled
                        system.adapter.vis-icontwo.0 : vis-icontwo : iobroker - enabled

                      • system.adapter.vis-inventwo.0 : vis-inventwo : iobroker - enabled
                        system.adapter.vis-jqui-mfd.0 : vis-jqui-mfd : iobroker - disabled
                        system.adapter.vis-justgage.0 : vis-justgage : iobroker - disabled
                        system.adapter.vis-keyboard.0 : vis-keyboard : iobroker - disabled
                        system.adapter.vis-material-webfont.0 : vis-material-webfont : iobroker - enabled
                        system.adapter.vis-material.0 : vis-material : iobroker - enabled
                        system.adapter.vis-materialdesign.0 : vis-materialdesign : iobroker - enabled
                        system.adapter.vis-metro.0 : vis-metro : iobroker - disabled
                        system.adapter.vis-plumb.0 : vis-plumb : iobroker - disabled
                        system.adapter.vis-rgraph.0 : vis-rgraph : iobroker - disabled
                        system.adapter.vis-timeandweather.0 : vis-timeandweather : iobroker - disabled
                        system.adapter.vis.0 : vis : iobroker - enabled
                        system.adapter.weatherunderground.0 : weatherunderground : iobroker - enabled

                      • system.adapter.web.0 : web : iobroker - enabled, port: 8082, bind: 0.0.0.0, run as: admin

                      • system.adapter.web.1 : web : iobroker - enabled, port: 8085, bind: 0.0.0.0, run as: admin

                      • system.adapter.ws.0 : ws : iobroker - enabled, port: 8083, bind: 0.0.0.0, run as: admin

                      • system.adapter.yahka.0 : yahka : iobroker - enabled

                      • system.adapter.yahka.1 : yahka : iobroker - enabled

                      • system.adapter.yahka.2 : yahka : iobroker - enabled
                        system.adapter.yahka.3 : yahka : iobroker - disabled

                      • system.adapter.yahka.4 : yahka : iobroker - enabled

                      • system.adapter.yamaha.0 : yamaha : iobroker - enabled
                        system.adapter.yr.0 : yr : iobroker - enabled

                      • instance is alive

                      Enabled adapters with bindings

                      • system.adapter.admin.0 : admin : iobroker - enabled, port: 8081, bind: 0.0.0.0, run as: admin
                      • system.adapter.admin.1 : admin : pi-iobroker - enabled, port: 8081, bind: 0.0.0.0, run as: admin
                      • system.adapter.hm-rpc.0 : hm-rpc : iobroker - enabled, port: 0
                      • system.adapter.hm-rpc.1 : hm-rpc : iobroker - enabled, port: 0
                      • system.adapter.hm-rpc.2 : hm-rpc : iobroker - enabled, port: 0
                      • system.adapter.hue.0 : hue : iobroker - enabled, port: 80
                      • system.adapter.influxdb.0 : influxdb : iobroker - enabled, port: 8086
                      • system.adapter.mqtt.0 : mqtt : iobroker - enabled, port: 1883, bind: 0.0.0.0
                      • system.adapter.sayit.0 : sayit : iobroker - enabled, port: 0
                      • system.adapter.shelly.0 : shelly : iobroker - enabled, port: 1882, bind: 192.168.178.18
                      • system.adapter.simple-api.0 : simple-api : iobroker - enabled, port: 8091, bind: 192.168.178.18, run as: admin
                      • system.adapter.socketio.0 : socketio : iobroker - enabled, port: 8084, bind: 192.168.178.18, run as: admin
                      • system.adapter.telegram.0 : telegram : iobroker - enabled, port: 8443, bind: 192.168.178.18
                      • system.adapter.web.0 : web : iobroker - enabled, port: 8082, bind: 0.0.0.0, run as: admin
                      • system.adapter.web.1 : web : iobroker - enabled, port: 8085, bind: 0.0.0.0, run as: admin
                      • system.adapter.ws.0 : ws : iobroker - enabled, port: 8083, bind: 0.0.0.0, run as: admin

                      ioBroker-Repositories
                      Stable (default): http://iobroker.live/repo/sources-dist.json
                      Beta (latest) : http://download.iobroker.net/sources-dist-latest.json
                      Test : http://iobroker.live/repo/sources-dist.json

                      Active repo(s): Beta (latest)

                      Installed ioBroker-Instances
                      Used repository: Beta (latest)
                      Adapter "admin" : 6.5.9 , installed 6.5.9
                      Adapter "alias-manager": 1.2.6 , installed 1.2.6
                      Adapter "birthdays" : 2.3.1 , installed 2.3.1
                      Adapter "daswetter" : 3.1.8 , installed 3.1.8
                      Adapter "dwd" : 2.8.5 , installed 2.8.5
                      Adapter "email" : 1.2.0 , installed 1.2.0
                      Adapter "feiertage" : 1.1.0 , installed 1.1.0
                      Adapter "flot" : 1.12.0 , installed 1.12.0
                      Adapter "fritzbox" : 0.5.0 , installed 0.5.0
                      Adapter "harmony" : 1.2.2 , installed 1.2.2
                      Adapter "history" : 2.2.4 , installed 2.2.4
                      Adapter "hm-rega" : 3.0.46 , installed 3.0.46
                      Adapter "hm-rpc" : 1.15.18 , installed 1.15.18
                      Adapter "homeconnect" : 1.1.1 , installed 1.1.1
                      Adapter "hue" : 3.9.3 , installed 3.9.3
                      Adapter "hue-extended" : 2.0.0 , installed 2.0.0
                      Adapter "ical" : 1.13.3 , installed 1.13.3
                      Adapter "icons-addictive-flavour-png": 0.1.0, installed 0.1.0
                      Adapter "icons-fatcow-hosting": 0.1.0, installed 0.1.0
                      Adapter "icons-icons8" : 0.0.1 , installed 0.0.1
                      Adapter "icons-material-png": 0.1.0, installed 0.1.0
                      Adapter "icons-material-svg": 0.1.0, installed 0.1.0
                      Adapter "icons-mfd-png": 1.1.0 , installed 1.1.0
                      Adapter "icons-mfd-svg": 1.1.0 , installed 1.1.0
                      Adapter "icons-open-icon-library-png": 0.1.2, installed 0.1.3
                      Adapter "icons-ultimate-png": 1.0.1, installed 1.0.1
                      Adapter "influxdb" : 3.2.0 , installed 3.2.0
                      Adapter "javascript" : 7.1.1 , installed 7.1.1
                      Controller "js-controller": 5.0.6 , installed 5.0.6
                      Adapter "linux-control": 1.1.5 , installed 1.1.5
                      Adapter "modbus" : 5.0.11 , installed 5.0.11
                      Adapter "mqtt" : 4.1.1 , installed 4.1.1
                      Adapter "musiccast" : 1.1.0 , installed 1.1.0
                      Adapter "nut" : 1.6.0 , installed 1.6.0
                      Adapter "ping" : 1.5.3 , installed 1.5.3
                      Adapter "pushover" : 3.0.3 , installed 3.0.3
                      Adapter "sayit" : 3.0.5 , installed 3.0.5
                      Adapter "shelly" : 6.4.1 , installed 6.4.1
                      Adapter "shuttercontrol": 1.5.0 , installed 1.5.0
                      Adapter "simple-api" : 2.7.2 , installed 2.7.2
                      Adapter "smartmeter" : 3.3.4 , installed 3.3.4
                      Adapter "socketio" : 6.3.5 , installed 6.3.5
                      Adapter "sourceanalytix": 0.4.14 , installed 0.4.14
                      Adapter "tankerkoenig" : 3.3.7 , installed 3.3.7
                      Adapter "telegram" : 1.16.0 , installed 1.16.0
                      Adapter "trashschedule": 2.2.0 , installed 2.2.0
                      Adapter "vis" : 1.4.16 , installed 1.4.16
                      Adapter "vis-bars" : 0.1.4 , installed 0.1.4
                      Adapter "vis-canvas-gauges": 1.0.1, installed 1.0.1
                      Adapter "vis-colorpicker": 2.0.3 , installed 2.0.3
                      Adapter "vis-fancyswitch": 1.1.0 , installed 1.1.0
                      Adapter "vis-google-fonts": 1.0.4 , installed 1.0.4
                      Adapter "vis-hqwidgets": 1.4.0 , installed 1.4.0
                      Adapter "vis-icontwo" : 0.96.0 , installed 0.96.0
                      Adapter "vis-inventwo" : 3.3.3 , installed 3.3.3
                      Adapter "vis-jqui-mfd" : 1.0.12 , installed 1.0.12
                      Adapter "vis-justgage" : 1.0.2 , installed 1.0.2
                      Adapter "vis-keyboard" : 0.0.2 , installed 0.0.2
                      Adapter "vis-material" : 0.1.3 , installed 0.1.3
                      Adapter "vis-material-webfont": 0.0.3, installed 0.0.3
                      Adapter "vis-materialdesign": 0.5.9, installed 0.5.9
                      Adapter "vis-metro" : 1.2.0 , installed 1.2.0
                      Adapter "vis-plumb" : 1.0.2 , installed 1.0.2
                      Adapter "vis-rgraph" : 0.0.2 , installed 0.0.2
                      Adapter "vis-timeandweather": 1.2.2, installed 1.2.2
                      Adapter "weatherunderground": 3.4.2, installed 3.4.2
                      Adapter "web" : 5.5.3 , installed 5.5.3
                      Adapter "ws" : 2.3.6 , installed 2.3.6
                      Adapter "yahka" : 1.0.3 , installed 1.0.3
                      Adapter "yamaha" : 0.5.3 , installed 0.5.3
                      Adapter "yr" : 5.3.0 , installed 5.3.0

                      Objects and States
                      Please stand by - This may take a while
                      Objects: 21844
                      States: 20949

                      *** OS-Repositories and Updates ***
                      Hit:1 http://deb.debian.org/debian bullseye InRelease
                      Hit:2 http://deb.debian.org/debian-security bullseye-security InRelease
                      Hit:3 https://deb.nodesource.com/node_10.x bullseye InRelease
                      Hit:4 http://deb.debian.org/debian bullseye-updates InRelease
                      Hit:5 https://deb.nodesource.com/node_12.x bullseye InRelease
                      Hit:6 https://deb.nodesource.com/node_14.x bullseye InRelease
                      Hit:7 https://deb.nodesource.com/node_16.x bullseye InRelease
                      Hit:8 https://deb.nodesource.com/node_18.x bullseye InRelease
                      Reading package lists...
                      Pending Updates: 0

                      *** Listening Ports ***
                      Active Internet connections (only servers)
                      Proto Recv-Q Send-Q Local Address Foreign Address State User Inode PID/Program name
                      tcp 0 0 0.0.0.0:9000 0.0.0.0:* LISTEN 1000 946282664 27448/iobroker.js-c
                      tcp 0 0 0.0.0.0:9001 0.0.0.0:* LISTEN 1000 946281812 27448/iobroker.js-c
                      tcp 0 0 127.0.0.1:32961 0.0.0.0:* LISTEN 1000 946300054 28091/io.yahka.1
                      tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 0 940613639 10082/master
                      tcp 0 0 192.168.178.18:42001 0.0.0.0:* LISTEN 1000 946286191 27632/io.hm-rpc.0
                      tcp 0 0 192.168.178.18:42010 0.0.0.0:* LISTEN 1000 946287880 27662/io.hm-rpc.2
                      tcp 0 0 127.0.0.1:36403 0.0.0.0:* LISTEN 1000 946300115 28108/io.yahka.2
                      tcp 0 0 192.168.178.18:8701 0.0.0.0:* LISTEN 1000 946286763 27647/io.hm-rpc.1
                      tcp 0 0 127.0.0.1:37877 0.0.0.0:* LISTEN 1000 946301774 28177/io.yahka.4
                      tcp 0 0 127.0.0.1:37693 0.0.0.0:* LISTEN 1000 946297395 28073/io.yahka.0
                      tcp 0 0 127.0.0.1:39515 0.0.0.0:* LISTEN 1000 946297833 28177/io.yahka.4
                      tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 0 939376858 137/sshd: /usr/sbin
                      tcp 0 0 0.0.0.0:1883 0.0.0.0:* LISTEN 1000 946292953 27894/io.mqtt.0
                      tcp 0 0 127.0.0.1:44629 0.0.0.0:* LISTEN 1000 946301796 28177/io.yahka.4
                      tcp 0 0 192.168.178.18:1882 0.0.0.0:* LISTEN 1000 946291585 27879/io.shelly.0
                      tcp 0 0 127.0.0.1:43741 0.0.0.0:* LISTEN 1000 946297838 28177/io.yahka.4
                      tcp 0 0 192.168.178.18:8084 0.0.0.0:* LISTEN 1000 946301865 28192/io.socketio.0
                      tcp 0 0 192.168.178.18:8091 0.0.0.0:* LISTEN 1000 946297922 27995/io.simple-api
                      tcp6 0 0 :::42727 :::* LISTEN 1000 946297777 28177/io.yahka.4
                      tcp6 0 0 :::42817 :::* LISTEN 1000 946297781 28177/io.yahka.4
                      tcp6 0 0 ::1:25 :::* LISTEN 0 940613640 10082/master
                      tcp6 0 0 :::43345 :::* LISTEN 1000 946297785 28177/io.yahka.4
                      tcp6 0 0 :::61991 :::* LISTEN 1000 946294377 27969/io.harmony.0
                      tcp6 0 0 :::45625 :::* LISTEN 1000 946300097 28108/io.yahka.2
                      tcp6 0 0 :::46837 :::* LISTEN 1000 946299999 28073/io.yahka.0
                      tcp6 0 0 :::33593 :::* LISTEN 1000 946297789 28177/io.yahka.4
                      tcp6 0 0 :::33651 :::* LISTEN 1000 946297773 28177/io.yahka.4
                      tcp6 0 0 :::22 :::* LISTEN 0 939376860 137/sshd: /usr/sbin
                      tcp6 0 0 :::40455 :::* LISTEN 1000 946301187 28091/io.yahka.1
                      tcp6 0 0 :::8082 :::* LISTEN 1000 946298810 28058/io.web.0
                      tcp6 0 0 :::8083 :::* LISTEN 1000 946306131 28252/io.ws.0
                      tcp6 0 0 :::8081 :::* LISTEN 1000 946280113 27469/io.admin.0
                      tcp6 0 0 :::8085 :::* LISTEN 1000 946305351 28267/io.web.1
                      udp 0 0 0.0.0.0:68 0.0.0.0:* 0 939375477 74/dhclient
                      udp 0 0 192.168.178.18:50003 0.0.0.0:* 1000 946289053 27809/io.yamaha.0
                      udp 0 0 0.0.0.0:1900 0.0.0.0:* 1000 946289054 27809/io.yamaha.0
                      udp 0 0 0.0.0.0:5353 0.0.0.0:* 1000 946297790 28177/io.yahka.4
                      udp 0 0 0.0.0.0:5353 0.0.0.0:* 1000 946297786 28177/io.yahka.4
                      udp 0 0 0.0.0.0:5353 0.0.0.0:* 1000 946297782 28177/io.yahka.4
                      udp 0 0 0.0.0.0:5353 0.0.0.0:* 1000 946297778 28177/io.yahka.4
                      udp 0 0 0.0.0.0:5353 0.0.0.0:* 1000 946297774 28177/io.yahka.4
                      udp 0 0 0.0.0.0:5353 0.0.0.0:* 1000 946300098 28108/io.yahka.2
                      udp 0 0 0.0.0.0:5353 0.0.0.0:* 1000 946301188 28091/io.yahka.1
                      udp 0 0 0.0.0.0:5353 0.0.0.0:* 1000 946300000 28073/io.yahka.0
                      udp 0 0 0.0.0.0:61991 0.0.0.0:* 1000 946294378 27969/io.harmony.0

                      *** Log File - Last 25 Lines ***

                      2023-07-06 12:46:10.797 - info: javascript.0 (27527) script.js.common.Ansagen.Voice_Feedback_Garagentor_Rechts: Executed sayit.2: : Garagentor rechtszu
                      2023-07-06 12:46:29.278 - info: javascript.2 (27557) Stop script script.js.common.Ansagen.Voice_Feedback_Garagentor_Rechts
                      2023-07-06 12:46:29.278 - info: javascript.1 (27542) Stop script script.js.common.Ansagen.Voice_Feedback_Garagentor_Rechts
                      2023-07-06 12:46:29.280 - info: javascript.0 (27527) Stop script script.js.common.Ansagen.Voice_Feedback_Garagentor_Rechts
                      2023-07-06 12:46:29.331 - info: javascript.0 (27527) Start javascript script.js.common.Ansagen.Voice_Feedback_Garagentor_Rechts
                      2023-07-06 12:46:29.335 - info: javascript.0 (27527) script.js.common.Ansagen.Voice_Feedback_Garagentor_Rechts: registered 1 subscription, 0 schedules, 0 messages, 0 logs and 0 file subscriptions
                      2023-07-06 12:46:32.848 - info: web.0 (28058) <== Disconnect system.user.admin from ::ffff:192.168.178.84 vis.0
                      2023-07-06 12:46:33.047 - info: javascript.0 (27527) script.js.common.Ansagen.Voice_Feedback_Garagentor_Rechts: Garagentor rechtsauf
                      2023-07-06 12:46:33.048 - info: javascript.0 (27527) script.js.common.Ansagen.Voice_Feedback_Garagentor_Rechts: Executed sayit.0: : Garagentor rechtsauf
                      2023-07-06 12:46:35.568 - info: simple-api.0 (27995) State value to set for "javascript.0.Wetterstation.Info.Hitzeindex" has to be type "string" but received type "number"
                      2023-07-06 12:46:38.061 - info: javascript.0 (27527) script.js.common.Ansagen.Voice_Feedback_Garagentor_Rechts: Garagentor rechtszu
                      2023-07-06 12:46:38.062 - info: javascript.0 (27527) script.js.common.Ansagen.Voice_Feedback_Garagentor_Rechts: Executed sayit.0: : Garagentor rechtszu
                      2023-07-06 12:46:54.194 - info: javascript.0 (27527) script.js.common.Tablet_Steuerung.Display_ON_Flur_EG_Ubuntu_neu: VIS EG ON
                      2023-07-06 12:46:54.198 - info: linux-control.0 (28156) state linux-control.0.VIS-EG.VIS_EG_ScreenOn changed: true (ack = false)
                      2023-07-06 12:47:07.775 - info: simple-api.0 (27995) State value to set for "javascript.0.Wetterstation.Info.Hitzeindex" has to be type "string" but received type "number"
                      2023-07-06 12:47:30.318 - info: javascript.0 (27527) script.js.common.Tablet_Steuerung.Laden_Tablet_OG_Ubuntu: Aktualisiert Batterie Tablet OG
                      2023-07-06 12:47:30.692 - info: javascript.0 (27527) script.js.common.Tablet_Steuerung.Laden_Tablet_EG_Ubuntu: Aktualisiert Batterie Tablet EG
                      2023-07-06 12:47:37.589 - info: simple-api.0 (27995) State value to set for "javascript.0.Wetterstation.Info.Hitzeindex" has to be type "string" but received type "number"
                      2023-07-06 12:47:52.613 - info: web.0 (28058) ==> Connected system.user.admin from ::ffff:192.168.178.215
                      2023-07-06 12:47:53.241 - info: web.0 (28058) ==> Connected system.user.admin from ::ffff:192.168.178.216
                      2023-07-06 12:47:58.768 - info: simple-api.0 (27995) State value to set for "javascript.0.Wetterstation.Info.Hitzeindex" has to be type "string" but received type "number"
                      2023-07-06 12:48:00.247 - info: host.iobroker instance system.adapter.yr.0 started with pid 28638
                      2023-07-06 12:48:08.569 - info: yr.0 (28638) starting. Version 5.3.0 in /opt/iobroker/node_modules/iobroker.yr, node: v18.16.1, js-controller: 5.0.6
                      2023-07-06 12:48:08.734 - info: yr.0 (28638) longitude/longitude not set, get data from system
                      2023-07-06 12:48:08.859 - info: yr.0 (28638) system latitude: 50.8877114 longitude: 6.1238384

                      
                      

                      @apollon77 welche logs können hier helfen und wo soll ich dann ein Issue öffnen?

                      EDIT: wenn ich ein neues Blockly mit einfachem Trigger erstelle geht auch keine Ansage. Erstelle ich ein einfaches per Rules geht die Ansage.

                      Das Rules in JS sieht so aus:

                      let cond0 = false;
                      
                      on({id: "hm-rpc.0.REQ0571844.1.STATE", change: "ne"}, async function (obj) {
                          _sendToFrontEnd(1688649159665, {val: obj.state.val, ack: obj.state.ack, valOld: obj.oldState && obj.oldState.val, ackOld: obj.oldState && obj.oldState.ack});
                          
                          const _cond = true;
                          
                          
                          
                          if (_cond) {
                      		// Sayit Hallo
                      		const subActionVar1688649250057 = "de-DE_AP_Female;100;Hallo".replace(/%s/g, obj.state.val).replace(/%id/g, obj.id).replace(/%name/g, obj.common && obj.common.name).replace(/%old/g, obj.oldState.val);
                      		_sendToFrontEnd(1688649250057, {text: subActionVar1688649250057});
                      		await setStateAsync("sayit.0.tts.text", subActionVar1688649250057);
                      
                      		// Log My device triggered
                      		const subActionVar1688649275246 = "My device triggered".replace(/%s/g, obj.state.val).replace(/%id/g, obj.id).replace(/%name/g, obj.common && obj.common.name).replace(/%old/g, obj.oldState.val);
                      		_sendToFrontEnd(1688649275246, {text: subActionVar1688649275246});
                      		console.log(subActionVar1688649275246);
                          } else {
                      		
                          }
                      });
                      

                      EDIT:

                      Jetzt mal in Rules komplett erstellt und Ansage geht:

                      let cond0 = false;
                      
                      on({id: "hm-rpc.0.NEQ0529935.3.STATE", change: "ne"}, async function (obj) {
                          _sendToFrontEnd(1688649159665, {val: obj.state.val, ack: obj.state.ack, valOld: obj.oldState && obj.oldState.val, ackOld: obj.oldState && obj.oldState.ack});
                          const subCondVar1688657308886 = obj.state.val;
                          const subCond1688657308886 = subCondVar1688657308886 == false;
                          const _cond = (subCond1688657308886);
                          
                          _sendToFrontEnd(1688657308886, {result: subCond1688657308886, value: subCondVar1688657308886, compareWith: "false"});
                          
                          if (cond0 === false && _cond) {
                              cond0 = true;    
                      		// Sayit Garagentor rechts zu
                      		const subActionVar1688649250057 = "de-DE_AP_Female;100;Garagentor rechts zu".replace(/%s/g, obj.state.val).replace(/%id/g, obj.id).replace(/%name/g, obj.common && obj.common.name).replace(/%old/g, obj.oldState.val);
                      		_sendToFrontEnd(1688649250057, {text: subActionVar1688649250057});
                      		await setStateAsync("sayit.0.tts.text", subActionVar1688649250057);
                      
                      		// Log Garage rechts zu
                      		const subActionVar1688649275246 = "Garage rechts zu".replace(/%s/g, obj.state.val).replace(/%id/g, obj.id).replace(/%name/g, obj.common && obj.common.name).replace(/%old/g, obj.oldState.val);
                      		_sendToFrontEnd(1688649275246, {text: subActionVar1688649275246});
                      		console.log(subActionVar1688649275246);
                          } else if (cond0 === true && !_cond) {
                              cond0 = false;    
                      		// Sayit Garagentor rechts auf
                      		const subActionVar1688657531936 = "de-DE_AP_Female;100;Garagentor rechts auf".replace(/%s/g, obj.state.val).replace(/%id/g, obj.id).replace(/%name/g, obj.common && obj.common.name).replace(/%old/g, obj.oldState.val);
                      		_sendToFrontEnd(1688657531936, {text: subActionVar1688657531936});
                      		await setStateAsync("sayit.0.tts.text", subActionVar1688657531936);
                      
                      		// Log Garage rechts auf
                      		const subActionVar1688658103726 = "Garage rechts auf".replace(/%s/g, obj.state.val).replace(/%id/g, obj.id).replace(/%name/g, obj.common && obj.common.name).replace(/%old/g, obj.oldState.val);
                      		_sendToFrontEnd(1688658103726, {text: subActionVar1688658103726});
                      		console.log(subActionVar1688658103726);
                          }
                      });
                      

                      40583696-dfc5-43bd-ace4-c40a95a68158-grafik.png

                      Sobald ich das in Blockly oder JS mache kommt keine Ansage.

                      EDIT: Issue erstellt, ob es bei Sayit richtig ist werden wir sehen: https://github.com/ioBroker/ioBroker.sayit/issues/269

                      wendy2702 created this issue in ioBroker/ioBroker.sayit

                      closed Keine Ansage mehr wenn im JS oder Blockly Script z.B. der Trigger geändert wird. #269

                      B 1 Reply Last reply Reply Quote 0
                      • B
                        Bender275 @wendy2702 last edited by

                        @wendy2702
                        Super, danke! So ist es bei mir auch, nur dass ich das mit Rules nicht getestet hatte.
                        Auch danke für den Issue in Github!

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

                          bei mir das gleiche Problem.

                          nach downgrade des javascript Adapter auf 6.2.0 funktionieren die Sprachansagen wieder.

                          B 1 Reply Last reply Reply Quote 0
                          • B
                            Bender275 @ste_glei last edited by

                            @ste_glei
                            Hast du noch irgendwas gemacht? Das Downgrade allein half leider nicht... 😞

                            ste_glei DJMarc75 2 Replies Last reply Reply Quote 0
                            • ste_glei
                              ste_glei @Bender275 last edited by

                              @bender275

                              Ich habe nur ein downgrade gemacht und dann funktionierte es wieder.

                              1 Reply Last reply Reply Quote 0
                              • DJMarc75
                                DJMarc75 @Bender275 last edited by

                                @bender275
                                die Nachfragen nach

                                iob diag
                                

                                überlesen ?

                                B 1 Reply Last reply Reply Quote 0
                                • D
                                  d0nnergurke last edited by d0nnergurke

                                  Ein Downgrade vom SayIt-Adapter auf 3.0.4 sollte eher helfen - Wichtig ist: Nach dem Downgrade die betroffenen Skripte editieren/neu speichern. Das Problem entsteht, weil seit SayIt-Version 3.0.5 die Skript-Blöcke in Blockly anders übersetzt werden. Die Übersetzung findet jedoch erst statt wenn ein Blockly-Skript geändert oder neu erstellt wird, daher funktionieren "alte" Blockly-Skripte weiterhin.
                                  Statt ursprünglich den Wert von [SayIt-Instanz].tts.text per "setStateDelayed" zu ändern wird ab 3.0.5 per "sendTo" mit dem Adapter kommuniziert. Bei mir reagiert der Adapter jedoch auch nicht auf den SendTo-Befehl - Siehe auch https://github.com/ioBroker/ioBroker.sayit/issues/267

                                  d0nnergurke created this issue in ioBroker/ioBroker.sayit

                                  open SendTo not processing #267

                                  B 1 Reply Last reply Reply Quote 0
                                  • B
                                    Bender275 @DJMarc75 last edited by

                                    @djmarc75
                                    Sorry, war unterwegs. Hier iob diag


                                    ======== Start marking the full check here =========

                                    Skript v.2023-04-16
                                    
                                    *** BASE SYSTEM ***
                                    Model		: Raspberry Pi 4 Model B Rev 1.4
                                    Architecture    : aarch64
                                    Docker          : false
                                    Virtualization  : none
                                    Distributor ID:	Raspbian
                                    Description:	Raspbian GNU/Linux 11 (bullseye)
                                    Release:	11
                                    Codename:	bullseye
                                    
                                    PRETTY_NAME="Raspbian GNU/Linux 11 (bullseye)"
                                    NAME="Raspbian GNU/Linux"
                                    VERSION_ID="11"
                                    VERSION="11 (bullseye)"
                                    VERSION_CODENAME=bullseye
                                    ID=raspbian
                                    ID_LIKE=debian
                                    HOME_URL="http://www.raspbian.org/"
                                    SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
                                    BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"
                                    
                                    Systemuptime and Load:
                                     20:07:24 up 7 days,  2:27,  0 users,  load average: 1.02, 1.07, 0.96
                                    CPU threads: 4
                                    
                                    Raspberry only:
                                    throttled=0x0
                                    Other values than 0x0 hint to temperature/voltage problems
                                    temp=53.0'C
                                    volt=0.8600V
                                    
                                    *** Time and Time Zones ***
                                                   Local time: Mon 2023-07-10 20:07:24 CEST
                                               Universal time: Mon 2023-07-10 18:07:24 UTC
                                                     RTC time: n/a
                                                    Time zone: Europe/Berlin (CEST, +0200)
                                    System clock synchronized: yes
                                                  NTP service: active
                                              RTC in local TZ: no
                                    
                                    *** User and Groups ***
                                    pi
                                    /home/pi
                                    pi adm dialout cdrom sudo audio video plugdev games users input netdev lpadmin gpio i2c spi iobroker
                                    
                                    *** X-Server-Setup ***
                                    X-Server: 	true
                                    Desktop: 	LXDE-pi
                                    Terminal: 	x11
                                    Boot Target: 	graphical.target
                                    
                                    *** MEMORY ***
                                                   total        used        free      shared  buff/cache   available
                                    Mem:            7.8G        2.2G        2.0G         53M        3.6G        5.4G
                                    Swap:            99M          0B         99M
                                    Total:          7.9G        2.2G        2.1G
                                    
                                             7811 M total memory
                                             2231 M used memory
                                             3833 M active memory
                                             1604 M inactive memory
                                             2017 M free memory
                                              279 M buffer memory
                                             3282 M swap cache
                                               99 M total swap
                                                0 M used swap
                                               99 M free swap
                                    
                                    Raspberry only:
                                    oom events: 0
                                    lifetime oom required: 0 Mbytes
                                    total time in oom handler: 0 ms
                                    max time spent in oom handler: 0 ms
                                    
                                    *** FILESYSTEM ***
                                    Filesystem     Type      Size  Used Avail Use% Mounted on
                                    /dev/root      ext4      470G   17G  434G   4% /
                                    devtmpfs       devtmpfs  3.6G     0  3.6G   0% /dev
                                    tmpfs          tmpfs     3.9G  3.8M  3.9G   1% /dev/shm
                                    tmpfs          tmpfs     1.6G  796K  1.6G   1% /run
                                    tmpfs          tmpfs     5.0M  4.0K  5.0M   1% /run/lock
                                    /dev/sda1      vfat      253M   51M  202M  20% /boot
                                    tmpfs          tmpfs     782M   20K  782M   1% /run/user/1000
                                    
                                    Messages concerning ext4 filesystem in dmesg:
                                    [Mon Jul  3 17:40:17 2023] Kernel command line: coherent_pool=1M 8250.nr_uarts=0 snd_bcm2835.enable_headphones=0 snd_bcm2835.enable_headphones=1 snd_bcm2835.enable_hdmi=1  smsc95xx.macaddr=E4:5F:01:0C:5F:3D vc_mem.mem_base=0x3eb00000 vc_mem.mem_size=0x3ff00000  console=tty1 root=PARTUUID=5d45f9a3-02 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait quiet splash plymouth.ignore-serial-consoles
                                    [Mon Jul  3 17:40:19 2023] EXT4-fs (sda2): mounted filesystem with ordered data mode. Quota mode: none.
                                    [Mon Jul  3 17:40:19 2023] VFS: Mounted root (ext4 filesystem) readonly on device 8:2.
                                    [Mon Jul  3 17:40:21 2023] EXT4-fs (sda2): re-mounted. Quota mode: none.
                                    
                                    Show mounted filesystems (real ones only):
                                    TARGET                       SOURCE       FSTYPE            OPTIONS
                                    /                            /dev/sda2    ext4              rw,noatime
                                    |-/boot                      /dev/sda1    vfat              rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,flush,errors=remount-ro
                                    `-/home/pi/thinclient_drives xrdp-chansrv fuse.xrdp-chansrv rw,nosuid,nodev,relatime,user_id=1000,group_id=1000
                                    
                                    Files in neuralgic directories:
                                    
                                    /var:
                                    2.8G	/var/
                                    1.3G	/var/log
                                    1.2G	/var/log/journal/d305c1d5b0964304901f0bf58ddc9f97
                                    1.2G	/var/log/journal
                                    918M	/var/cache
                                    
                                    Archived and active journals take up 1.1G in the file system.
                                    
                                    /opt/iobroker/backups:
                                    566M	/opt/iobroker/backups/
                                    704K	/opt/iobroker/backups/skripte
                                    688K	/opt/iobroker/backups/skripte/Räume
                                    252K	/opt/iobroker/backups/skripte/Räume/allgemein
                                    156K	/opt/iobroker/backups/skripte/Räume/Küche
                                    
                                    /opt/iobroker/iobroker-data:
                                    391M	/opt/iobroker/iobroker-data/
                                    214M	/opt/iobroker/iobroker-data/files
                                    126M	/opt/iobroker/iobroker-data/backup-objects
                                    51M	/opt/iobroker/iobroker-data/files/javascript.admin
                                    45M	/opt/iobroker/iobroker-data/files/devices.admin/static
                                    
                                    The five largest files in iobroker-data are:
                                    35M	/opt/iobroker/iobroker-data/files/devices.admin/static/js/main.24f2bb56.js.map
                                    22M	/opt/iobroker/iobroker-data/objects.jsonl
                                    19M	/opt/iobroker/iobroker-data/files/iot.admin/static/js/main.2975a411.js.map
                                    8.9M	/opt/iobroker/iobroker-data/files/scenes.admin/static/js/2.7de3299d.chunk.js.map
                                    8.7M	/opt/iobroker/iobroker-data/objects.json.migrated
                                    
                                    *** NodeJS-Installation ***
                                    
                                    /usr/bin/nodejs 	v18.16.1
                                    /usr/bin/node 		v18.16.1
                                    /usr/bin/npm 		9.5.1
                                    /usr/bin/npx 		9.5.1
                                    
                                    
                                    nodejs:
                                      Installed: 18.16.1-deb-1nodesource1
                                      Candidate: 18.16.1-deb-1nodesource1
                                      Version table:
                                     *** 18.16.1-deb-1nodesource1 500
                                            500 https://deb.nodesource.com/node_18.x bullseye/main armhf Packages
                                            100 /var/lib/dpkg/status
                                         12.22.12~dfsg-1~deb11u4 500
                                            500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                                    
                                    Temp directories causing npm8 problem: 0
                                    No problems detected
                                    
                                    *** ioBroker-Installation ***
                                    
                                    ioBroker Status
                                    iobroker is running on this host.
                                    
                                    
                                    Objects type: jsonl
                                    States  type: jsonl
                                    
                                    MULTIHOSTSERVICE/enabled: false
                                    
                                    Core adapters versions
                                    js-controller: 	4.0.24
                                    admin: 		6.3.5
                                    javascript: 	6.2.0
                                    
                                    Adapters from github: 	4
                                    
                                    Adapter State
                                    + system.adapter.admin.0                  : admin                 : Raspi4                                   -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                                    + system.adapter.backitup.0               : backitup              : Raspi4                                   -  enabled
                                    + system.adapter.bestway.0                : bestway               : Raspi4                                   -  enabled
                                    + system.adapter.bluelink.0               : bluelink              : Raspi4                                   -  enabled
                                    + system.adapter.cloud.0                  : cloud                 : Raspi4                                   -  enabled
                                      system.adapter.daswetter.0              : daswetter             : Raspi4                                   -  enabled
                                      system.adapter.devices.0                : devices               : Raspi4                                   -  enabled
                                    + system.adapter.discovery.0              : discovery             : Raspi4                                   -  enabled
                                      system.adapter.dwd.0                    : dwd                   : Raspi4                                   -  enabled
                                    + system.adapter.email.0                  : email                 : Raspi4                                   -  enabled
                                      system.adapter.feiertage.0              : feiertage             : Raspi4                                   -  enabled
                                    + system.adapter.fritzdect.0              : fritzdect             : Raspi4                                   -  enabled
                                    + system.adapter.fronius-wattpilot.0      : fronius-wattpilot     : Raspi4                                   -  enabled
                                    + system.adapter.fronius.0                : fronius               : Raspi4                                   -  enabled
                                    + system.adapter.hs100.0                  : hs100                 : Raspi4                                   -  enabled
                                    + system.adapter.info.0                   : info                  : Raspi4                                   -  enabled
                                    + system.adapter.iot.0                    : iot                   : Raspi4                                   -  enabled
                                    + system.adapter.jarvis.0                 : jarvis                : Raspi4                                   -  enabled
                                    + system.adapter.javascript.0             : javascript            : Raspi4                                   -  enabled
                                    + system.adapter.klf200.0                 : klf200                : Raspi4                                   -  enabled
                                    + system.adapter.lgtv.0                   : lgtv                  : Raspi4                                   -  enabled
                                    + system.adapter.mqtt.0                   : mqtt                  : Raspi4                                   -  enabled, port: 1883, bind: 0.0.0.0
                                    + system.adapter.net-tools.0              : net-tools             : Raspi4                                   -  enabled
                                    + system.adapter.nuki.0                   : nuki                  : Raspi4                                   -  enabled
                                    + system.adapter.ping.0                   : ping                  : Raspi4                                   -  enabled
                                    + system.adapter.sayit.0                  : sayit                 : Raspi4                                   -  enabled
                                    + system.adapter.sayit.1                  : sayit                 : Raspi4                                   -  enabled
                                    + system.adapter.sayit.2                  : sayit                 : Raspi4                                   -  enabled
                                    + system.adapter.scenes.0                 : scenes                : Raspi4                                   -  enabled
                                    + system.adapter.shelly.0                 : shelly                : Raspi4                                   -  enabled, port: 1882, bind: 0.0.0.0
                                    + system.adapter.shelly.1                 : shelly                : Raspi4                                   -  enabled, port: 1882, bind: 0.0.0.0
                                    + system.adapter.sprinklecontrol.0        : sprinklecontrol       : Raspi4                                   -  enabled
                                    + system.adapter.sql.0                    : sql                   : Raspi4                                   -  enabled, port: 3306
                                    + system.adapter.tuya.0                   : tuya                  : Raspi4                                   -  enabled
                                      system.adapter.vis.0                    : vis                   : Raspi4                                   -  enabled
                                    + system.adapter.web.0                    : web                   : Raspi4                                   -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                    
                                    + instance is alive
                                    
                                    Enabled adapters with bindings
                                    + system.adapter.admin.0                  : admin                 : Raspi4                                   -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                                    + system.adapter.mqtt.0                   : mqtt                  : Raspi4                                   -  enabled, port: 1883, bind: 0.0.0.0
                                    + system.adapter.shelly.0                 : shelly                : Raspi4                                   -  enabled, port: 1882, bind: 0.0.0.0
                                    + system.adapter.shelly.1                 : shelly                : Raspi4                                   -  enabled, port: 1882, bind: 0.0.0.0
                                    + system.adapter.sql.0                    : sql                   : Raspi4                                   -  enabled, port: 3306
                                    + system.adapter.web.0                    : web                   : Raspi4                                   -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                    
                                    ioBroker-Repositories
                                    Stable (default): http://download.iobroker.net/sources-dist.json
                                    Beta (latest) : http://download.iobroker.net/sources-dist-latest.json
                                    
                                    Active repo(s): Stable (default)
                                    
                                    Installed ioBroker-Instances
                                    Used repository: Stable (default)
                                    Adapter    "admin"        : 6.3.5    , installed 6.3.5
                                    Adapter    "backitup"     : 2.6.23   , installed 2.6.23
                                    Adapter    "bestway"      : 0.0.4    , installed 0.0.4
                                    Adapter    "bluelink"     : 2.3.2    , installed 2.3.2
                                    Adapter    "cloud"        : 4.4.1    , installed 4.4.1
                                    Adapter    "daswetter"    : 3.1.8    , installed 3.1.8
                                    Adapter    "devices"      : 1.1.5    , installed 1.1.5
                                    Adapter    "discovery"    : 3.1.0    , installed 3.1.0
                                    Adapter    "dwd"          : 2.8.3    , installed 2.8.3
                                    Adapter    "email"        : 1.2.0    , installed 1.2.0
                                    Adapter    "feiertage"    : 1.1.0    , installed 1.1.0
                                    Adapter    "fritzdect"    : 2.3.1    , installed 2.3.1
                                    Adapter    "fronius"      : 1.1.3    , installed 1.1.3
                                    Adapter    "fronius-wattpilot": 4.5.1, installed 4.5.1
                                    Adapter    "hs100"        : 2.1.2    , installed 2.1.6
                                    Adapter    "info"         : 1.9.26   , installed 1.9.26
                                    Adapter    "iot"          : 1.14.5   , installed 1.14.5
                                    Adapter    "jarvis"       : 3.1.2    , installed 3.1.2
                                    Adapter    "javascript"   : 7.0.3    , installed 6.2.0  [Updatable]
                                    Controller "js-controller": 4.0.24   , installed 4.0.24
                                    Adapter    "klf200"       : 1.0.1    , installed 1.0.1
                                    Adapter    "lgtv"         : 1.1.10   , installed 1.1.10
                                    Adapter    "mqtt"         : 4.1.1    , installed 4.1.1
                                    Adapter    "net-tools"    : 0.2.0    , installed 0.2.0
                                    Adapter    "nuki"         : 1.6.0    , installed 1.6.0
                                    Adapter    "ping"         : 1.5.3    , installed 1.5.3
                                    Adapter    "sayit"        : 3.0.5    , installed 3.0.5
                                    Adapter    "scenes"       : 2.3.9    , installed 2.3.9
                                    Adapter    "shelly"       : 6.4.1    , installed 6.4.1
                                    Adapter    "simple-api"   : 2.7.2    , installed 2.7.2
                                    Adapter    "socketio"     : 4.2.0    , installed 4.2.0
                                    Adapter    "sprinklecontrol": 0.2.13 , installed 0.2.13
                                    Adapter    "sql"          : 2.2.0    , installed 2.2.0
                                    Adapter    "tuya"         : 3.14.2   , installed 3.14.2
                                    Adapter    "vis"          : 1.4.16   , installed 1.4.16
                                    Adapter    "web"          : 4.3.0    , installed 4.3.0
                                    Adapter    "ws"           : 1.3.0    , installed 1.3.0
                                    
                                    Objects and States
                                    Please stand by - This may take a while
                                    Objects: 	8225
                                    States: 	6469
                                    
                                    *** OS-Repositories and Updates ***
                                    Hit:1 http://archive.raspberrypi.org/debian bullseye InRelease
                                    Hit:2 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
                                    Hit:3 https://deb.nodesource.com/node_18.x bullseye InRelease
                                    Reading package lists...
                                    Pending Updates: 17
                                    
                                    *** Listening Ports ***
                                    Active Internet connections (only servers)
                                    Proto Recv-Q Send-Q Local Address           Foreign Address         State       User       Inode      PID/Program name    
                                    tcp        0      0 0.0.0.0:8400            0.0.0.0:*               LISTEN      1001       109227     6942/io.jarvis.0    
                                    tcp        0      0 127.0.0.1:9001          0.0.0.0:*               LISTEN      1001       105697     6214/iobroker.js-co 
                                    tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      1001       103137     6214/iobroker.js-co 
                                    tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      0          14136      599/lighttpd        
                                    tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          15951      594/sshd: /usr/sbin 
                                    tcp        0      0 0.0.0.0:53              0.0.0.0:*               LISTEN      999        15029      553/pihole-FTL      
                                    tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      0          24909578   27450/cupsd         
                                    tcp        0      0 127.0.0.1:4711          0.0.0.0:*               LISTEN      999        15035      553/pihole-FTL      
                                    tcp        0      0 0.0.0.0:1883            0.0.0.0:*               LISTEN      117        15904      568/mosquitto       
                                    tcp        0      0 0.0.0.0:1882            0.0.0.0:*               LISTEN      1001       104924     6399/io.shelly.1    
                                    tcp6       0      0 :::80                   :::*                    LISTEN      0          14137      599/lighttpd        
                                    tcp6       0      0 :::22                   :::*                    LISTEN      0          15953      594/sshd: /usr/sbin 
                                    tcp6       0      0 :::53                   :::*                    LISTEN      999        15031      553/pihole-FTL      
                                    tcp6       0      0 :::1883                 :::*                    LISTEN      117        15905      568/mosquitto       
                                    tcp6       0      0 ::1:3350                :::*                    LISTEN      0          14610      556/xrdp-sesman     
                                    tcp6       0      0 ::1:4711                :::*                    LISTEN      999        15036      553/pihole-FTL      
                                    tcp6       0      0 ::1:631                 :::*                    LISTEN      0          24909577   27450/cupsd         
                                    tcp6       0      0 :::8082                 :::*                    LISTEN      1001       4014514    29072/io.web.0      
                                    tcp6       0      0 :::8081                 :::*                    LISTEN      1001       104666     6232/io.admin.0     
                                    tcp6       0      0 :::3306                 :::*                    LISTEN      116        14243      813/mysqld          
                                    tcp6       0      0 :::3389                 :::*                    LISTEN      115        14248      615/xrdp            
                                    udp        0      0 0.0.0.0:34960           0.0.0.0:*                           108        13926      376/avahi-daemon: r 
                                    udp        0      0 0.0.0.0:6666            0.0.0.0:*                           1001       106000     6382/io.tuya.0      
                                    udp        0      0 0.0.0.0:6667            0.0.0.0:*                           1001       106001     6382/io.tuya.0      
                                    udp        0      0 0.0.0.0:60008           0.0.0.0:*                           1001       23722718   11297/io.javascript 
                                    udp        0      0 0.0.0.0:40139           0.0.0.0:*                           1001       28266417   -                   
                                    udp        0      0 0.0.0.0:53              0.0.0.0:*                           999        15028      553/pihole-FTL      
                                    udp        0      0 0.0.0.0:68              0.0.0.0:*                           0          14950      443/dhcpcd          
                                    udp        0      0 0.0.0.0:631             0.0.0.0:*                           0          24912270   27452/cups-browsed  
                                    udp        0      0 0.0.0.0:5353            0.0.0.0:*                           108        13924      376/avahi-daemon: r 
                                    udp        0      0 0.0.0.0:5683            0.0.0.0:*                           1001       104117     6348/io.shelly.0    
                                    udp6       0      0 :::44036                :::*                                108        13927      376/avahi-daemon: r 
                                    udp6       0      0 :::53                   :::*                                999        15030      553/pihole-FTL      
                                    udp6       0      0 :::5353                 :::*                                108        13925      376/avahi-daemon: r 
                                    
                                    *** Log File - Last 25 Lines ***
                                    
                                    2023-07-10 19:55:00.181  - info: host.Raspi4 instance system.adapter.dwd.0 started with pid 7582
                                    2023-07-10 19:55:03.170  - info: dwd.0 (7582) starting. Version 2.8.3 in /opt/iobroker/node_modules/iobroker.dwd, node: v18.16.1, js-controller: 4.0.24
                                    2023-07-10 19:55:06.461  - info: dwd.0 (7582) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                    2023-07-10 19:55:06.998  - info: host.Raspi4 instance system.adapter.dwd.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                                    2023-07-10 20:00:00.024  - info: javascript.0 (11297) script.js.Räume.Wohnen.Fernsehlicht_nicht_bei_ausser_Haus: Own states (javascript.0.scriptEnabled.Räume.Wohnen.Fernsehlicht_nach_Zeitplan_ein_aus) should not be used in javascript.X.scriptEnabled.*! Please move the states to 0_userdata.0.*
                                    2023-07-10 20:00:00.215  - info: host.Raspi4 instance system.adapter.dwd.0 started with pid 7800
                                    2023-07-10 20:00:00.290  - info: bluelink.0 (6906) Forcing refresh from Server
                                    2023-07-10 20:00:00.291  - info: bluelink.0 (6906) Read new update for XXX from the server
                                    2023-07-10 20:00:00.305  - info: bluelink.0 (6906) Forcing refresh from Car
                                    2023-07-10 20:00:00.306  - info: bluelink.0 (6906) Read new update for XXX directly from the car
                                    2023-07-10 20:00:03.352  - info: bluelink.0 (6906) Update for XXX successfull
                                    2023-07-10 20:00:03.857  - info: dwd.0 (7800) starting. Version 2.8.3 in /opt/iobroker/node_modules/iobroker.dwd, node: v18.16.1, js-controller: 4.0.24
                                    2023-07-10 20:00:04.260  - info: host.Raspi4 instance system.adapter.daswetter.0 started with pid 7817
                                    2023-07-10 20:00:07.359  - info: daswetter.0 (7817) starting. Version 3.1.8 in /opt/iobroker/node_modules/iobroker.daswetter, node: v18.16.1, js-controller: 4.0.24
                                    2023-07-10 20:00:08.183  - info: dwd.0 (7800) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                    2023-07-10 20:00:08.729  - info: host.Raspi4 instance system.adapter.dwd.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                                    2023-07-10 20:00:18.257  - info: daswetter.0 (7817) Terminated (ADAPTER_REQUESTED_TERMINATION): All data handled, adapter stopped until next scheduled moment
                                    2023-07-10 20:00:18.775  - info: daswetter.0 (7817) cleaned everything up...
                                    2023-07-10 20:00:18.795  - info: host.Raspi4 instance system.adapter.daswetter.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                                    2023-07-10 20:00:36.575  - info: bluelink.0 (6906) Update for XXX successfull
                                    2023-07-10 20:05:00.206  - info: host.Raspi4 instance system.adapter.dwd.0 started with pid 8042
                                    2023-07-10 20:05:03.366  - info: dwd.0 (8042) starting. Version 2.8.3 in /opt/iobroker/node_modules/iobroker.dwd, node: v18.16.1, js-controller: 4.0.24
                                    2023-07-10 20:05:06.544  - info: dwd.0 (8042) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                    2023-07-10 20:05:07.104  - info: host.Raspi4 instance system.adapter.dwd.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                                    2023-07-10 20:08:01.238  - info: admin.0 (6232) ==> Connected system.user.admin from ::ffff:10.0.2.11
                                    
                                    

                                    ============ Mark until here for C&P =============

                                    ======================= SUMMARY =======================
                                    		     v.2023-04-16
                                    
                                    
                                    Operatingsystem: 	Raspbian GNU/Linux 11 (bullseye)
                                    Kernel: 		6.1.36-v8+
                                    Installation: 		Native
                                    Timezone: 		Europe/Berlin (CEST, +0200)
                                    User-ID: 		1000
                                    X-Server: 		true
                                    Boot Target: 		graphical.target
                                    
                                    Pending OS-Updates: 	17
                                    Pending iob updates: 	1
                                    
                                    Nodejs-Installation: 	/usr/bin/nodejs 	v18.16.1
                                    			/usr/bin/node 		v18.16.1
                                    			/usr/bin/npm 		9.5.1
                                    			/usr/bin/npx 		9.5.1
                                    
                                    Recommended versions are nodejs 18.x.y and npm 9.x.y
                                    Your nodejs installation is correct
                                    
                                    MEMORY: 
                                                   total        used        free      shared  buff/cache   available
                                    Mem:            7.8G        2.3G        2.0G         53M        3.6G        5.4G
                                    Swap:            99M          0B         99M
                                    Total:          7.9G        2.3G        2.1G
                                    
                                    Active iob-Instances: 	32
                                    Active repo(s): Stable (default)
                                    
                                    ioBroker Core: 		js-controller 		4.0.24
                                    			admin 			6.3.5
                                    
                                    ioBroker Status: 	iobroker is running on this host.
                                    
                                    
                                    Objects type: jsonl
                                    States  type: jsonl
                                    
                                    Status admin and web instance:
                                    + system.adapter.admin.0                  : admin                 : Raspi4                                   -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                                    + system.adapter.web.0                    : web                   : Raspi4                                   -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                    
                                    Objects: 		8225
                                    States: 		6469
                                    
                                    Size of iob-Database:
                                    
                                    22M	/opt/iobroker/iobroker-data/objects.jsonl
                                    8.7M	/opt/iobroker/iobroker-data/objects.json.migrated
                                    8.7M	/opt/iobroker/iobroker-data/objects.json.bak.migrated
                                    7.0M	/opt/iobroker/iobroker-data/states.jsonl
                                    1.1M	/opt/iobroker/iobroker-data/states.json.migrated
                                    1.1M	/opt/iobroker/iobroker-data/states.json.bak.migrated
                                    0	/opt/iobroker/iobroker-data/states.json.broken
                                    
                                    
                                    
                                    =================== END OF SUMMARY ====================
                                    [/s]
                                    
                                    @d0nnergurke Werd ich probieren, danke!
                                    1 Reply Last reply Reply Quote 0
                                    • B
                                      Bender275 @d0nnergurke last edited by

                                      @d0nnergurke
                                      Werde ich probieren, vielen Dank!

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

                                        @bender275
                                        Desktop ausknipsen
                                        Updates einspielen
                                        Adapter auf Stand bringen

                                        Dann kucken wir mal weiter

                                        1 Reply Last reply Reply Quote 0
                                        • B
                                          Bender275 last edited by

                                          Also, mit dem Downgrade des SayIt-Adapters gemäß d0nnergurke funktioniert wieder alles einwandfrei. Danke!

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

                                            Wie funktioniert der Downgrade auf die 3.0.4?
                                            Mir wird über den Expertenmodus egal ob Stable oder Beta Repo lediglich die 3.0.0 oder 3.0.5 angezeigt ?

                                            crunchip 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            975
                                            Online

                                            31.6k
                                            Users

                                            79.6k
                                            Topics

                                            1.3m
                                            Posts

                                            12
                                            34
                                            2454
                                            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