Navigation

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

    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

    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 11
    • Posts 67
    • Best 5
    • Groups 1

    Dan_Ce

    @Dan_Ce

    Starter

    7
    Reputation
    13
    Profile views
    67
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Dan_Ce Follow
    Starter

    Best posts made by Dan_Ce

    • RE: Zahltag

      @jey-cee
      Sorry, falls dies Frage irgendwie komisch ist, aber du hattest als Ziel 2.500€ brutto monatlich nur über die Adapter und Spenden einzunehmen ?

      Machst du das beruflich? Ich lese hier immer wieder, das viele den ganzen Support "in der Freizeit" machen.
      Für "Freizeitaktivitäten" eine solche Summe an Spenden zu erwarten fände ich irgendwie seltsam.
      Ich glaube, da tickt der reine "Anwender" ohne Erfahrung als Entwickler irgendwie anders und denkt gar nicht groß an Spenden. Oder spendet woanders mit anderen Prioritäten. Ohne böse Absicht. Das ist aus meiner Sicht einfach eine zu große Diskrepanz.

      Ich glaube da ist eine Bezahlversion für alle klarer. (Vielleicht mit abgespeckter "free"-Version). Mit allen Vor- und Nachteilen.

      posted in ioBroker Allgemein
      D
      Dan_Ce
    • RE: Suche Zigbee Luftentfeuchter

      Ich vermute, du willst das Gerät nach externer Vorgabe ein und Ausschalten. Dies geht ja im Prinzip mit jedem Gerät, welches nach dem Einschalten einen definierten Betriebszustand einnimmt. Da würde dann eine schaltbare Steckdose und ein externer Feuchtesensor ausreichen. Könnte beides Zigbee sein.
      In jedem Fall sollte man einen Luftentfeuchter mit externem Sensor betreiben. Die intern verbauen Sensoren sind eigentlich konstruktiv bedingt kaum zu gebrauchen, da sie nach dem ausschalten immer der intern vorhandenen Feuchtigkeit ausgesetzt sind.

      posted in Hardware
      D
      Dan_Ce
    • RE: IO Broker wie ausschalten?

      Ich nutze eine App "RaspController".
      U.a. bietet es auch die Möglichkeit den Raspberry runterzufahren.
      Man spart sich also den Aufruf des Terminals am Rechner oder in der App.

      posted in ioBroker Allgemein
      D
      Dan_Ce
    • RE: Suche Zigbee Luftentfeuchter

      @andygr42 ich benutze ein Gerät von Comfee (MDDF 20DEN), das schaltet in den zuletzt gewählten Betriebsmodus, wenn es wieder Strom bekommt.

      posted in Hardware
      D
      Dan_Ce
    • RE: Alternative zum Raspi 4

      @humidor wenn hauptsächlich der Preis ausschlaggebend ist: es gibt bei Berrybase immer wieder Pi4 4GB für kostenlose Klub-Mitglieder. Mal mit Case, Mal nur mit Netzteil. Letztere Version zuletzt für knapp 76€

      posted in ioBroker Allgemein
      D
      Dan_Ce

    Latest posts made by Dan_Ce

    • RE: Blockly Skripte korrupt ("Cannot extract Blockly code!")

      @meister-mopper
      Ich konnte das Problem lösen: Ich habe bei allen Adaptern, die ich in meinen Skripten bei SendTo verwende um eine Instanz erweitert. (Telegram, Email, Awtrix). Dann waren die SendTo-Blöcke bei neuen Skripten wieder auswählbar und in den bestehenden Skripten sind die Fehler weg. Danach konnte ich die neuen Instanzen wieder löschen und es funktioniert weiterhin.
      Ob das jetzt ein Bug der betroffenen Adapter war oder an meinem System liegt, vermag ich nicht zu sagen.

      posted in Error/Bug
      D
      Dan_Ce
    • RE: Blockly Skripte korrupt ("Cannot extract Blockly code!")

      @meister-mopper Das ist der Fall. Telegram allerdings in Instanz 1 anstatt 0. Die Skripte liefen aber immer einwandfrei.

      posted in Error/Bug
      D
      Dan_Ce
    • Blockly Skripte korrupt ("Cannot extract Blockly code!")

      Hallo zusammen,

      Bei meinen Skripts erhalte ich aktuell die Fehlermeldung "Cannot extract Blockly code"

      Hier ein Beispiel-Skript, welches betroffen ist:

      /* -- do not edit following lines - START --
      {
        "expert": true,
        "engineType": "Blockly",
        "debug": false,
        "verbose": false
      }
      -- do not edit previous lines - END --*/
      var Waschmaschine_Dauerzaehler, Waschmaschine_aktiv, timeout_Waschmaschine, Dauerzaehler, timeout_WaMa_Meldung, timeout_WaMa_Dauerzaehler, WZ_HUE_E27_1_XY, WZ_HUE_E27_2_XY, WZ_HUE_E27_1_On_Off, WZ_HUE_E27_2_On_Off;
      
      
      Waschmaschine_Dauerzaehler = 0;
      Waschmaschine_aktiv = false;
      setState("0_userdata.0.Waschmaschine.Waschmaschine_laeuft"/*Waschmaschine_laeuft*/, false);
      on({id: [].concat(['sonoff.0.Tasmota10.ENERGY_Power']), change: "ne"}, async function (obj) {
        var value = obj.state.val;
        var oldValue = obj.oldState.val;
        if ((obj.state ? obj.state.val : "") >= 400 && Waschmaschine_aktiv == false) {
          setState("0_userdata.0.Waschmaschine.Waschmaschine_laeuft"/*Waschmaschine_laeuft*/, true);
          Waschmaschine_aktiv = true;
          setState("javascript.0.Energieueberwachung.Waschmaschine.Waschstart"/*Waschstart*/, getState("sonoff.0.Tasmota10.ENERGY_Total").val);
          Dauerzaehler = setInterval(async function () {
            Waschmaschine_Dauerzaehler = (typeof Waschmaschine_Dauerzaehler == 'number' ? Waschmaschine_Dauerzaehler : 0) + 1;
          }, 60000);
          (function () {if (timeout_Waschmaschine) {clearTimeout(timeout_Waschmaschine); timeout_Waschmaschine = null;}})();
          // Kommentar
        } else if ((obj.state ? obj.state.val : "") >= 2.7 && (obj.state ? obj.state.val : "") < 400) {
          (function () {if (timeout_Waschmaschine) {clearTimeout(timeout_Waschmaschine); timeout_Waschmaschine = null;}})();
        } else if ((obj.state ? obj.state.val : "") < 2.7 && Waschmaschine_aktiv == true) {
          // Kommentar
          timeout_Waschmaschine = setTimeout(async function () {
            Waschmaschine_aktiv = false;
            setState("0_userdata.0.Waschmaschine.Waschmaschine_laeuft"/*Waschmaschine_laeuft*/, false);
            (function () {if (timeout_Waschmaschine) {clearTimeout(timeout_Waschmaschine); timeout_Waschmaschine = null;}})();
            (function () {if (Dauerzaehler) {clearInterval(Dauerzaehler); Dauerzaehler = null;}})();
            setState("javascript.0.Energieueberwachung.Waschmaschine.Waschende"/*Waschende*/, getState("sonoff.0.Tasmota10.ENERGY_Total").val);
            timeout_WaMa_Meldung = setTimeout(async function () {
              if (Waschmaschine_Dauerzaehler >= 2) {
                sendTo("email", "send", {
                   text: (['Die Waschmaschine ist fertig',formatDate(new Date(), "\n"),'Dauer: ',Waschmaschine_Dauerzaehler,' Minuten',formatDate(new Date(), "\n"),'Verbrauch: ',Math.round((parseFloat(getState("javascript.0.Energieueberwachung.Waschmaschine.Waschende").val) - getState("javascript.0.Energieueberwachung.Waschmaschine.Waschstart").val)*100)/100,' kWh'].join('')),
                   to: 'xyz123@gmail.com',
                   subject: 'ioBroker: Waschmaschine ist fertig',
                   from: 'Waschmaschine'
                });
                sendTo("telegram", "send", {
                    text: (['Die Waschmaschine ist fertig',formatDate(new Date(), "\n"),'Dauer: ',Waschmaschine_Dauerzaehler,' Minuten',formatDate(new Date(), "\n"),'Verbrauch: ',Math.round((parseFloat(getState("javascript.0.Energieueberwachung.Waschmaschine.Waschende").val) - getState("javascript.0.Energieueberwachung.Waschmaschine.Waschstart").val)*100)/100,' kWh',''].join(''))
                });
                WZ_HUE_E27_1_XY = getState("deconz.0.Lights.12.xy").val;
                WZ_HUE_E27_2_XY = getState("deconz.0.Lights.13.xy").val;
                WZ_HUE_E27_1_On_Off = getState("deconz.0.Lights.12.on").val;
                WZ_HUE_E27_2_On_Off = getState("deconz.0.Lights.13.on").val;
                setStateDelayed("deconz.0.Groups.19.Scene_6.recall"/*recall*/, true, 1, false);
                setStateDelayed("deconz.0.Groups.19.Scene_5.recall"/*recall*/, true, 450, false);
                setStateDelayed("deconz.0.Groups.19.Scene_6.recall"/*recall*/, true, 900, false);
                setStateDelayed("deconz.0.Groups.19.Scene_5.recall"/*recall*/, true, 1450, false);
                setStateDelayed("deconz.0.Groups.19.Scene_6.recall"/*recall*/, true, 1900, false);
                setStateDelayed("deconz.0.Groups.19.Scene_5.recall"/*recall*/, true, 2350, false);
                setStateDelayed("deconz.0.Lights.12.xy"/*HUE-E27-WZ1 xy*/, WZ_HUE_E27_1_XY, 2800, false);
                setStateDelayed("deconz.0.Lights.13.xy"/*Hue-e27-wz2 xy*/, WZ_HUE_E27_2_XY, 2800, false);
                setStateDelayed("deconz.0.Lights.12.on"/*HUE-E27-WZ1 on*/, WZ_HUE_E27_1_On_Off, 2850, false);
                setStateDelayed("deconz.0.Lights.13.on"/*Hue-e27-wz2 on*/, WZ_HUE_E27_1_On_Off, 2850, false);
              }
            }, 5000);
            timeout_WaMa_Dauerzaehler = setTimeout(async function () {
              Waschmaschine_Dauerzaehler = 0;
            }, 10000);
          }, 180000);
        }
      });
      
      //JTNDe.........
      

      Irgendwie habe ich den Versand über SendTo in Verdacht, ein neues Blockly bietet mir nicht mehr die Möglichkeiten wie in früheren Versionen:
      sendto.JPG

      posted in Error/Bug
      D
      Dan_Ce
    • RE: BLE-Adapter empfängt keine Daten

      @thomas-braun said in BLE-Adapter empfängt keine Daten:

      iob diag

      Ich sehe keine Auffälligkeiten:

      ======== Start marking the full check here =========
      
      ```bash
      Skript v.2024-08-12
      
      *** BASE SYSTEM ***
        Static hostname: raspberrypi
              Icon name: computer
       Operating System: Raspbian GNU/Linux 11 (bullseye)
                 Kernel: Linux 6.1.21-v8+
           Architecture: arm64
      OS is similar to: debian
      
      Model           : Raspberry Pi 4 Model B Rev 1.4
      Docker          : false
      Virtualization  : none
      Kernel          : aarch64
      Userland        : 32 bit
      
      Systemuptime and Load:
      16:36:17 up  5:15,  1 user,  load average: 1.18, 0.98, 0.94
      CPU threads: 4
      
      
      *** RASPBERRY THROTTLING ***
      Current issues:
      No throttling issues detected.
      
      Previously detected issues:
      No throttling issues detected.
      
      *** Time and Time Zones ***
                    Local time: Fri 2024-10-04 16:36:17 CEST
                Universal time: Fri 2024-10-04 14:36:17 UTC
                      RTC time: n/a
                     Time zone: Europe/Luxembourg (CEST, +0200)
      System clock synchronized: yes
                   NTP service: active
               RTC in local TZ: no
      
      *** Users and Groups ***
      User that called 'iob diag':
      pi
      HOME=/home/pi
      GROUPS=pi adm dialout cdrom sudo audio video plugdev games users input netdev gpio i2c spi iobroker
      
      User that is running 'js-controller':
      iobroker
      HOME=/home/iobroker
      GROUPS=iobroker tty dialout audio video plugdev bluetooth gpio i2c
      
      *** Display-Server-Setup ***
      Display-Server: false
      Desktop:
      Terminal:       tty
      Boot Target:    graphical.target
      
      *** MEMORY ***
                    total        used        free      shared  buff/cache   available
      Mem:            3.8G        1.7G        201M        0.0K        1.9G        2.1G
      Swap:            99M          0B         99M
      Total:          3.9G        1.7G        301M
      
      Active iob-Instances:   25
      
              3793 M total memory
              1678 M used memory
              2651 M active memory
               579 M inactive memory
               201 M free memory
               154 M buffer memory
              1759 M swap cache
                99 M total swap
                 0 M used swap
                99 M free swap
      
      *** top - Table Of Processes  ***
      top - 16:36:18 up  5:15,  1 user,  load average: 1.18, 0.98, 0.94
      Tasks: 171 total,   3 running, 168 sleeping,   0 stopped,   0 zombie
      %Cpu(s): 18.1 us, 13.9 sy,  0.0 ni, 65.3 id,  0.0 wa,  0.0 hi,  2.8 si,  0.0 st
      MiB Mem :   3793.3 total,    200.7 free,   1678.4 used,   1914.2 buff/cache
      MiB Swap:    100.0 total,    100.0 free,      0.0 used.   2093.3 avail Mem
      
      *** FAILED SERVICES ***
      
       UNIT           LOAD   ACTIVE SUB    DESCRIPTION
      * dhcpcd.service loaded failed failed DHCP Client Daemon
      
      LOAD   = Reflects whether the unit definition was properly loaded.
      ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
      SUB    = The low-level unit activation state, values depend on unit type.
      1 loaded units listed.
      
      *** FILESYSTEM ***
      Filesystem     Type      Size  Used Avail Use% Mounted on
      /dev/root      ext4      118G   67G   46G  60% /
      devtmpfs       devtmpfs  1.7G     0  1.7G   0% /dev
      tmpfs          tmpfs     1.9G     0  1.9G   0% /dev/shm
      tmpfs          tmpfs     759M  776K  758M   1% /run
      tmpfs          tmpfs     5.0M  4.0K  5.0M   1% /run/lock
      /dev/sda1      vfat      253M   51M  202M  20% /boot
      tmpfs          tmpfs     380M     0  380M   0% /run/user/1000
      
      Messages concerning ext4 filesystem in dmesg:
      [Fri Oct  4 11:20:28 2024] 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:4B:4B:CA vc_mem.mem_base=0x3eb00000 vc_mem.mem_size=0x3ff00000  console=ttyS0,115200 console=tty1 root=PARTUUID=c8310538-02 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait
      [Fri Oct  4 11:20:30 2024] EXT4-fs (sda2): mounted filesystem with ordered data mode. Quota mode: none.
      [Fri Oct  4 11:20:30 2024] VFS: Mounted root (ext4 filesystem) readonly on device 8:2.
      [Fri Oct  4 11:20:32 2024] EXT4-fs (sda2): re-mounted. Quota mode: none.
      
      Show mounted filesystems:
      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
      
      Files in neuralgic directories:
      
      /var:
      7.2G    /var/
      5.3G    /var/log
      3.8G    /var/log/journal/15bf1d53440e420dbea5e0eb6f8b1ed5
      3.8G    /var/log/journal
      1.1G    /var/cache
      
      Archived and active journals take up 3.7G in the file system.
      
      /opt/iobroker/backups:
      51G     /opt/iobroker/backups/
      
      /opt/iobroker/iobroker-data:
      971M    /opt/iobroker/iobroker-data/
      701M    /opt/iobroker/iobroker-data/files
      441M    /opt/iobroker/iobroker-data/files/javascript.admin
      409M    /opt/iobroker/iobroker-data/files/javascript.admin/static
      408M    /opt/iobroker/iobroker-data/files/javascript.admin/static/js
      
      The five largest files in iobroker-data are:
      75M     /opt/iobroker/iobroker-data/states.jsonl
      38M     /opt/iobroker/iobroker-data/files/iot.admin/static/js/main.d3d286bd.js.map
      26M     /opt/iobroker/iobroker-data/objects.jsonl
      24M     /opt/iobroker/iobroker-data/files/web.admin/static/js/main.135279a0.js.map
      24M     /opt/iobroker/iobroker-data/files/scenes.admin/static/js/main.c9369f6c.js.map
      
      USB-Devices by-id:
      USB-Sticks -  Avoid direct links to /dev/tty* in your adapter setups, please always prefer the links 'by-id':
      
      /dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2439935-if00
      
      
      
      
      *** NodeJS-Installation ***
      
      /usr/bin/nodejs         v20.17.0
      /usr/bin/node           v20.17.0
      /usr/bin/npm            10.8.2
      /usr/bin/npx            10.8.2
      /usr/bin/corepack       0.29.3
      
      
      nodejs:
       Installed: 20.17.0-1nodesource1
       Candidate: 20.17.0-1nodesource1
       Version table:
      *** 20.17.0-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
             100 /var/lib/dpkg/status
          20.16.0-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.15.1-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.15.0-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.14.0-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.13.1-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.13.0-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.12.2-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.12.1-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.12.0-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.11.1-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.11.0-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.10.0-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.9.0-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.8.1-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.8.0-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.7.0-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.6.1-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.6.0-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.5.1-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.5.0-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.4.0-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.3.1-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.3.0-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.2.0-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.1.0-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          20.0.0-1nodesource1 1001
             500 https://deb.nodesource.com/node_20.x nodistro/main armhf Packages
          12.22.12~dfsg-1~deb11u5 500
             500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
             500 https://archive.raspbian.org/raspbian bullseye/main armhf Packages
      
      Temp directories causing npm8 problem: 0
      No problems detected
      
      Errors in npm tree:
      
      *** ioBroker-Installation ***
      
      ioBroker Status
      iobroker is running on this host.
      
      
      Objects type: jsonl
      States  type: jsonl
      
      Core adapters versions
      js-controller:  6.0.11
      admin:          7.1.5
      javascript:     8.7.6
      
      nodejs modules from github:     2
      +-- homebridge-blink-for-home@3.9.2 (git+ssh://git@github.com/zidge/homebridge-blink-for-home.git#edf600439f6bbd9a1cbf5e4ca9e676e6bdbff6d2)
      +-- iobroker.ham@5.3.1 (git+ssh://git@github.com/ioBroker/ioBroker.ham.git#009af26ad98bea3a0783c4d0bd19a1a3c3eeb92c)
      
      Adapter State
      + system.adapter.admin.0                  : admin                 : raspberrypi                              -  enabled, port: 8081, bind: 0.0.0.0 (SSL), run as: admin
      + system.adapter.alexa2.0                 : alexa2                : raspberrypi                              -  enabled
       system.adapter.alias-manager.0          : alias-manager         : raspberrypi                              -  enabled
       system.adapter.awtrix-light.0           : awtrix-light          : raspberrypi                              - disabled
      + system.adapter.backitup.0               : backitup              : raspberrypi                              -  enabled
      + system.adapter.ble.0                    : ble                   : raspberrypi                              -  enabled
      + system.adapter.cloud.0                  : cloud                 : raspberrypi                              -  enabled
      + system.adapter.deconz.0                 : deconz                : raspberrypi                              -  enabled, port: 80
      + system.adapter.device-watcher.0         : device-watcher        : raspberrypi                              -  enabled
      + system.adapter.discovery.0              : discovery             : raspberrypi                              -  enabled
      + system.adapter.email.0                  : email                 : raspberrypi                              -  enabled
      + system.adapter.fb-checkpresence.0       : fb-checkpresence      : raspberrypi                              -  enabled
      + system.adapter.ham.0                    : ham                   : raspberrypi                              -  enabled
       system.adapter.ical.0                   : ical                  : raspberrypi                              -  enabled
       system.adapter.iceroad.0                : iceroad               : raspberrypi                              -  enabled
      + system.adapter.influxdb.0               : influxdb              : raspberrypi                              -  enabled, port: 8086
      + system.adapter.iot.0                    : iot                   : raspberrypi                              -  enabled
      + system.adapter.javascript.0             : javascript            : raspberrypi                              -  enabled
      + system.adapter.mqtt.0                   : mqtt                  : raspberrypi                              -  enabled, port: 1885, bind: 0.0.0.0
       system.adapter.netatmo-crawler.0        : netatmo-crawler       : raspberrypi                              -  enabled
      + system.adapter.rpi2.0                   : rpi2                  : raspberrypi                              -  enabled
      + system.adapter.scenes.0                 : scenes                : raspberrypi                              -  enabled
      + system.adapter.shelly.0                 : shelly                : raspberrypi                              -  enabled, port: 1882, bind: 0.0.0.0
      + system.adapter.sonoff.0                 : sonoff                : raspberrypi                              -  enabled, port: 1883, bind: 0.0.0.0
      + system.adapter.systeminfo.0             : systeminfo            : raspberrypi                              -  enabled
      + system.adapter.telegram.1               : telegram              : raspberrypi                              -  enabled, port: 8443, bind: 0.0.0.0
      + system.adapter.text2command.0           : text2command          : raspberrypi                              -  enabled
       system.adapter.trashschedule.0          : trashschedule         : raspberrypi                              - disabled
       system.adapter.vis-icontwo.0            : vis-icontwo           : raspberrypi                              - disabled
      + system.adapter.vis-inventwo.0           : vis-inventwo          : raspberrypi                              -  enabled
       system.adapter.vis.0                    : vis                   : raspberrypi                              -  enabled
      + system.adapter.web.0                    : web                   : raspberrypi                              -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
      
      + instance is alive
      
      Enabled adapters with bindings
      + system.adapter.admin.0                  : admin                 : raspberrypi                              -  enabled, port: 8081, bind: 0.0.0.0 (SSL), run as: admin
      + system.adapter.deconz.0                 : deconz                : raspberrypi                              -  enabled, port: 80
      + system.adapter.influxdb.0               : influxdb              : raspberrypi                              -  enabled, port: 8086
      + system.adapter.mqtt.0                   : mqtt                  : raspberrypi                              -  enabled, port: 1885, bind: 0.0.0.0
      + system.adapter.shelly.0                 : shelly                : raspberrypi                              -  enabled, port: 1882, bind: 0.0.0.0
      + system.adapter.sonoff.0                 : sonoff                : raspberrypi                              -  enabled, port: 1883, bind: 0.0.0.0
      + system.adapter.telegram.1               : telegram              : raspberrypi                              -  enabled, port: 8443, bind: 0.0.0.0
      + system.adapter.web.0                    : web                   : raspberrypi                              -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
      
      ioBroker-Repositories
      ┌─────────┬──────────┬─────────────────────────────────────────────────────────┬──────────────┐
      │ (index) │ name     │ url                                                     │ auto upgrade │
      ├─────────┼──────────┼─────────────────────────────────────────────────────────┼──────────────┤
      │ 0       │ 'stable' │ 'http://download.iobroker.net/sources-dist.json'        │ false        │
      │ 1       │ 'beta'   │ 'http://download.iobroker.net/sources-dist-latest.json' │ false        │
      └─────────┴──────────┴─────────────────────────────────────────────────────────┴──────────────┘
      
      Active repo(s): stable
      Upgrade policy: none
      
      Installed ioBroker-Instances
      Used repository: stable
      Adapter    "admin"        : 7.1.5    , installed 7.1.5
      Adapter    "alexa2"       : 3.26.5   , installed 3.26.5
      Adapter    "alias-manager": 1.2.6    , installed 1.2.6
      Adapter    "awtrix-light" : 1.3.0    , installed 1.3.0
      Adapter    "backitup"     : 3.0.22   , installed 3.0.22
      Adapter    "ble"          : 0.14.0   , installed 0.14.0
      Adapter    "cloud"        : 5.0.1    , installed 5.0.1
      Adapter    "deconz"       : 1.4.1    , installed 1.4.1
      Adapter    "device-watcher": 2.12.1  , installed 2.12.1
      Adapter    "discovery"    : 5.0.0    , installed 5.0.0
      Adapter    "email"        : 1.3.1    , installed 1.3.1
      Adapter    "fb-checkpresence": 1.2.4 , installed 1.2.4
      Adapter    "ham"          : 5.3.1    , installed 5.3.1
      Adapter    "ical"         : 1.15.0   , installed 1.15.0
      Adapter    "iceroad"      : 1.2.1    , installed 1.2.1
      Adapter    "influxdb"     : 4.0.2    , installed 4.0.2
      Adapter    "iot"          : 3.3.0    , installed 3.3.0
      Adapter    "javascript"   : 8.8.3    , installed 8.7.6  [Updatable]
      Controller "js-controller": 6.0.11   , installed 6.0.11
      Adapter    "mqtt"         : 5.2.0    , installed 5.2.0
      Adapter    "netatmo-crawler": 0.8.1  , installed 0.8.1
      Adapter    "rpi2"         : 1.3.2    , installed 1.3.2
      Adapter    "scenes"       : 3.2.3    , installed 3.2.3
      Adapter    "shelly"       : 7.0.0    , installed 7.0.0
      Adapter    "simple-api"   : 2.8.0    , installed 2.8.0
      Adapter    "socketio"     : 6.7.1    , installed 6.7.1
      Adapter    "sonoff"       : 3.1.2    , installed 3.1.2
      Adapter    "systeminfo"   : 1.2.0    , installed 1.2.0
      Adapter    "telegram"     : 3.9.0    , installed 3.9.0
      Adapter    "text2command" : 3.0.3    , installed 3.0.3
      Adapter    "trashschedule": 3.3.0    , installed 3.3.0
      Adapter    "vis"          : 1.5.6    , installed 1.5.6
      Adapter    "vis-icontwo"  : 1.5.0    , installed 1.5.0
      Adapter    "vis-inventwo" : 3.3.4    , installed 3.3.4
      Adapter    "web"          : 6.2.5    , installed 6.2.5
      Adapter    "ws"           : 2.6.2    , installed 2.6.2
      
      Objects and States
      Please stand by - This may take a while
      Objects:        17598
      States:         14753
      
      *** OS-Repositories and Updates ***
      W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: https://apt.grafana.com stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 963FA27710458545
      W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: https://packages.grafana.com/enterprise/deb stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 963FA27710458545
      W: Failed to fetch https://packages.grafana.com/enterprise/deb/dists/stable/InRelease  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 963FA27710458545
      W: Failed to fetch https://apt.grafana.com/dists/stable/InRelease  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 963FA27710458545
      W: Some index files failed to download. They have been ignored, or old ones used instead.
      Hit:1 http://archive.raspberrypi.org/debian bullseye InRelease
      Hit:2 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
      Hit:3 http://phoscon.de/apt/deconz generic-beta InRelease
      Get:4 https://packages.grafana.com/enterprise/deb stable InRelease [7660 B]
      Get:5 https://apt.grafana.com stable InRelease [7660 B]
      Hit:6 https://deb.nodesource.com/node_20.x nodistro InRelease
      Hit:7 https://www.pivccu.de/piVCCU stable InRelease
      Hit:8 https://archive.raspbian.org/raspbian bullseye InRelease
      Get:9 https://pkgs.tailscale.com/stable/raspbian bullseye InRelease
      Err:4 https://packages.grafana.com/enterprise/deb stable InRelease
       The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 963FA27710458545
      Err:5 https://apt.grafana.com stable InRelease
       The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 963FA27710458545
      Fetched 6578 B in 3s (2619 B/s)
      Reading package lists...
      W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: https://packages.grafana.com/enterprise/deb stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 963FA27710458545
      W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: https://apt.grafana.com stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 963FA27710458545
      W: Failed to fetch https://packages.grafana.com/enterprise/deb/dists/stable/InRelease  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 963FA27710458545
      W: Failed to fetch https://apt.grafana.com/dists/stable/InRelease  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 963FA27710458545
      W: Some index files failed to download. They have been ignored, or old ones used instead.
      Pending Updates: 1
      
      *** 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 127.0.0.1:9000          0.0.0.0:*               LISTEN      1001       683091     18396/iobroker.js-c
      tcp        0      0 127.0.0.1:9001          0.0.0.0:*               LISTEN      1001       681563     18396/iobroker.js-c
      tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      0          16918      858/cupsd
      tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      1000       15124      386/deCONZ
      tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          15981      899/sshd: /usr/sbin
      tcp        0      0 0.0.0.0:443             0.0.0.0:*               LISTEN      1000       12994      386/deCONZ
      tcp        0      0 100.80.140.24:47283     0.0.0.0:*               LISTEN      0          18600      448/tailscaled
      tcp        0      0 127.0.0.1:8088          0.0.0.0:*               LISTEN      999        17512      866/influxd
      tcp        0      0 0.0.0.0:1882            0.0.0.0:*               LISTEN      1001       690389     19679/io.shelly.0
      tcp        0      0 0.0.0.0:1883            0.0.0.0:*               LISTEN      1001       688515     19353/io.sonoff.0
      tcp        0      0 0.0.0.0:1886            0.0.0.0:*               LISTEN      1001       690191     19412/io.mqtt.0
      tcp        0      0 0.0.0.0:1885            0.0.0.0:*               LISTEN      1001       690190     19412/io.mqtt.0
      tcp6       0      0 :::3000                 :::*                    LISTEN      109        20848      1309/grafana
      tcp6       0      0 :::22                   :::*                    LISTEN      0          15983      899/sshd: /usr/sbin
      tcp6       0      0 :::8082                 :::*                    LISTEN      1001       691885     20504/io.web.0
      tcp6       0      0 :::8081                 :::*                    LISTEN      1001       683352     18519/io.admin.0
      tcp6       0      0 :::8086                 :::*                    LISTEN      999        17868      866/influxd
      tcp6       0      0 ::1:631                 :::*                    LISTEN      0          16917      858/cupsd
      tcp6       0      0 fd7a:115c:a1e0:ab:47283 :::*                    LISTEN      0          18601      448/tailscaled
      tcp6       0      0 ::1:8888                :::*                    LISTEN      0          13736      412/pigpiod
      udp        0      0 0.0.0.0:41641           0.0.0.0:*                           0          17044      448/tailscaled
      udp        0      0 0.0.0.0:5353            0.0.0.0:*                           108        12710      379/avahi-daemon: r
      udp        0      0 0.0.0.0:1900            0.0.0.0:*                           1001       685877     19199/io.deconz.0
      udp        0      0 0.0.0.0:1900            0.0.0.0:*                           1001       685873     19199/io.deconz.0
      udp        0      0 0.0.0.0:1900            0.0.0.0:*                           1000       13025      386/deCONZ
      udp        0      0 0.0.0.0:45032           0.0.0.0:*                           108        12712      379/avahi-daemon: r
      udp        0      0 0.0.0.0:68              0.0.0.0:*                           0          16809      741/dhclient
      udp6       0      0 :::41641                :::*                                0          17043      448/tailscaled
      udp6       0      0 :::48170                :::*                                108        12713      379/avahi-daemon: r
      udp6       0      0 :::5353                 :::*                                108        12711      379/avahi-daemon: r
      udp6       0      0 :::1900                 :::*                                1001       685879     19199/io.deconz.0
      udp6       0      0 :::1900                 :::*                                1001       685878     19199/io.deconz.0
      udp6       0      0 :::1900                 :::*                                1001       685876     19199/io.deconz.0
      udp6       0      0 :::1900                 :::*                                1001       685875     19199/io.deconz.0
      udp6       0      0 :::1900                 :::*                                1001       685874     19199/io.deconz.0
      
      *** Log File - Last 25 Lines ***
      
      2024-10-04 16:36:06.169  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.72 (shellyplus1pm / shellyplus1pm-c82e1806336c / shellyplus1pm#c82e1806336c#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:36:06.862  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.22 (shellyplus2pm / shellyplus2pm-c049ef857d0c / shellyplus2pm#c049ef857d0c#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:36:17.194  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.20 (shellyplus1pm / shellyplus1pm-d4d4da352b00 / shellyplus1pm#d4d4da352b00#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:36:18.648  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.42 (shellyplus2pm / shellyplus2pm-c049ef852c88 / shellyplus2pm#c049ef852c88#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:36:21.645  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.72 (shellyplus1pm / shellyplus1pm-c82e1806336c / shellyplus1pm#c82e1806336c#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:36:24.289  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.22 (shellyplus2pm / shellyplus2pm-c049ef857d0c / shellyplus2pm#c049ef857d0c#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:36:32.669  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.20 (shellyplus1pm / shellyplus1pm-d4d4da352b00 / shellyplus1pm#d4d4da352b00#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:36:34.201  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.42 (shellyplus2pm / shellyplus2pm-c049ef852c88 / shellyplus2pm#c049ef852c88#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:36:37.046  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.72 (shellyplus1pm / shellyplus1pm-c82e1806336c / shellyplus1pm#c82e1806336c#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:36:40.659  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.22 (shellyplus2pm / shellyplus2pm-c049ef857d0c / shellyplus2pm#c049ef857d0c#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:36:48.018  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.20 (shellyplus1pm / shellyplus1pm-d4d4da352b00 / shellyplus1pm#d4d4da352b00#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:36:49.677  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.42 (shellyplus2pm / shellyplus2pm-c049ef852c88 / shellyplus2pm#c049ef852c88#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:36:52.358  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.72 (shellyplus1pm / shellyplus1pm-c82e1806336c / shellyplus1pm#c82e1806336c#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:36:56.234  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.22 (shellyplus2pm / shellyplus2pm-c049ef857d0c / shellyplus2pm#c049ef857d0c#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:37:04.837  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.20 (shellyplus1pm / shellyplus1pm-d4d4da352b00 / shellyplus1pm#d4d4da352b00#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:37:06.486  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.42 (shellyplus2pm / shellyplus2pm-c049ef852c88 / shellyplus2pm#c049ef852c88#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:37:07.729  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.72 (shellyplus1pm / shellyplus1pm-c82e1806336c / shellyplus1pm#c82e1806336c#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:37:11.688  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.22 (shellyplus2pm / shellyplus2pm-c049ef857d0c / shellyplus2pm#c049ef857d0c#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:37:22.136  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.20 (shellyplus1pm / shellyplus1pm-d4d4da352b00 / shellyplus1pm#d4d4da352b00#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:37:22.147  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.42 (shellyplus2pm / shellyplus2pm-c049ef852c88 / shellyplus2pm#c049ef852c88#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:37:23.084  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.72 (shellyplus1pm / shellyplus1pm-c82e1806336c / shellyplus1pm#c82e1806336c#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:37:27.472  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.22 (shellyplus2pm / shellyplus2pm-c049ef857d0c / shellyplus2pm#c049ef857d0c#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:37:37.715  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.20 (shellyplus1pm / shellyplus1pm-d4d4da352b00 / shellyplus1pm#d4d4da352b00#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:37:37.908  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.42 (shellyplus2pm / shellyplus2pm-c049ef852c88 / shellyplus2pm#c049ef852c88#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      2024-10-04 16:37:38.444  - info: shelly.0 (19679) [Sys.timezone] 192.168.178.72 (shellyplus1pm / shellyplus1pm-c82e1806336c / shellyplus1pm#c82e1806336c#1): Configured timezone "Europe/Berlin" and system timezone "Europe/Luxembourg" do not match. Please check configuration
      
      
      
      ============ Mark until here for C&P =============
      

      Was empfiehlst du denn für die regelmäßige Systempflege?

      ich mach hin und wieder

      sudo apt update
      sudo apt upgrade
      sudo reboot
      

      und zukünftig dann auch noch

      iob stop
      iob fix
      iob nodejs-update
      
      

      Sollte man sonst noch was regelmäßig anstoßen?

      posted in Error/Bug
      D
      Dan_Ce
    • RE: BLE-Adapter empfängt keine Daten

      @thomas-braun Manchmal sind es die naheliegenden Dinge.... Hat geholfen. Danke!

      posted in Error/Bug
      D
      Dan_Ce
    • BLE-Adapter empfängt keine Daten
      • Adaptername: BLE
      • Adapterversion: 0.14.0
      • js-controller Version: 6.0.11
      • Admin Version: v7.1.5
      • Hardwaresystem: Pi4
      • Arbeitsspeicher: 4GB
      • Festplattenart: SSD
      • Node.js: v18.17.1
      • NPM-Version: 9.6.7

      Hallo,
      Nach langer Zeit habe ich heute mal wieder versuchte mit dem BLE-Adapter irgendein Gerät zu finden. Der Adapter wird grün, aber unter Objekte tut sich nichts - es werden keine Geräte gefunden.
      Die Voraussetzungen für den Adapter (https://github.com/AlCalzone/ioBroker.ble) sind erfüllt. DriverState sagt "PoweredOn". Ich nutze den Chip des Raspberrys - keinen externen.

      Ich habe hier und in anderen Threads schon gelesen, aber nichts gefunden, was mir hilft.

      rfkill sagt:

      rfkill
      ID TYPE      DEVICE      SOFT      HARD
       0 wlan      phy0   unblocked unblocked
       1 bluetooth hci0   unblocked unblocked
      

      hciconfig sagt

      hciconfig
      hci0:   Type: Primary  Bus: UART
              BD Address: E4:5F:01:4B:4B:CC  ACL MTU: 1021:8  SCO MTU: 64:1
              UP RUNNING
              RX bytes:1548 acl:0 sco:0 events:94 errors:0
              TX bytes:2564 acl:0 sco:0 commands:94 errors:0
      

      dmesg -T | grep -i bluetooth sagt:

      dmesg -T | grep -i bluetooth
      [Fri Oct  4 11:20:44 2024] Bluetooth: Core ver 2.22
      [Fri Oct  4 11:20:44 2024] NET: Registered PF_BLUETOOTH protocol family
      [Fri Oct  4 11:20:44 2024] Bluetooth: HCI device and connection manager initialized
      [Fri Oct  4 11:20:44 2024] Bluetooth: HCI socket layer initialized
      [Fri Oct  4 11:20:44 2024] Bluetooth: L2CAP socket layer initialized
      [Fri Oct  4 11:20:44 2024] Bluetooth: SCO socket layer initialized
      [Fri Oct  4 11:20:44 2024] Bluetooth: HCI UART driver ver 2.3
      [Fri Oct  4 11:20:44 2024] Bluetooth: HCI UART protocol H4 registered
      [Fri Oct  4 11:20:44 2024] Bluetooth: HCI UART protocol Three-wire (H5) registered
      [Fri Oct  4 11:20:44 2024] Bluetooth: HCI UART protocol Broadcom registered
      [Fri Oct  4 11:20:44 2024] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
      [Fri Oct  4 11:20:44 2024] Bluetooth: BNEP filters: protocol multicast
      [Fri Oct  4 11:20:44 2024] Bluetooth: BNEP socket layer initialized
      [Fri Oct  4 11:20:44 2024] Bluetooth: MGMT ver 1.22
      
      

      Adapter-Einstellungen sollten korrekt sein:

      • Überwachte Dienste : *
      • neue Geräte akzeptiert
      • Geräte ohne gesendete Daten erlaubt
      • hci0

      Log beim Start:

      ble.0
      2024-10-04 11:32:30.305	info	starting scan for services []
      ble.0
      2024-10-04 11:32:29.508	info	starting scanner process...
      ble.0
      2024-10-04 11:32:29.433	info	monitoring all services
      ble.0
      2024-10-04 11:32:29.432	info	enabled plugins: _default
      ble.0
      2024-10-04 11:32:29.430	info	loaded plugins: Xiaomi, mi-flora, ruuvi-tag, BTHome, _default
      ble.0
      2024-10-04 11:32:29.328	info	starting. Version 0.14.0 in /opt/iobroker/node_modules/iobroker.ble, node: v18.17.1, js-controller: 6.0.11
      ble.0
      2024-10-04 11:32:21.024	info	terminating
      ble.0
      2024-10-04 11:32:20.520	info	Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
      ble.0
      2024-10-04 11:32:20.517	info	terminating
      ble.0
      2024-10-04 11:32:20.505	info	Got terminate signal TERMINATE_YOURSELF
      

      Hat noch jemand eine Idee?

      posted in Error/Bug
      D
      Dan_Ce
    • RE: Zahltag

      @jey-cee
      Sorry, falls dies Frage irgendwie komisch ist, aber du hattest als Ziel 2.500€ brutto monatlich nur über die Adapter und Spenden einzunehmen ?

      Machst du das beruflich? Ich lese hier immer wieder, das viele den ganzen Support "in der Freizeit" machen.
      Für "Freizeitaktivitäten" eine solche Summe an Spenden zu erwarten fände ich irgendwie seltsam.
      Ich glaube, da tickt der reine "Anwender" ohne Erfahrung als Entwickler irgendwie anders und denkt gar nicht groß an Spenden. Oder spendet woanders mit anderen Prioritäten. Ohne böse Absicht. Das ist aus meiner Sicht einfach eine zu große Diskrepanz.

      Ich glaube da ist eine Bezahlversion für alle klarer. (Vielleicht mit abgespeckter "free"-Version). Mit allen Vor- und Nachteilen.

      posted in ioBroker Allgemein
      D
      Dan_Ce
    • RE: ConBee III im Anmarsch?

      @jey-cee Ah, danke. Das klingt ja erstmal gut.

      posted in Hardware
      D
      Dan_Ce
    • RE: ConBee III im Anmarsch?

      Ich nehme an, das der einfache Umzug von Conbee II auf Conbee III sich nicht auch auf die ioBroker Konfiguration bezieht.
      Sprich: V2 durch V3 ersetzen und alle Datenpunkte bleiben erhalten wird wohl nicht funktionieren oder?

      posted in Hardware
      D
      Dan_Ce
    • RE: Test Adapter Awtrix-Light (Awtrix 3)

      In den benutzerdefinierten Apps lässt sich ja die Scrollgeschwindigkeit einstellen. Gibt es eine Möglichkeit, diese auch für die Benachrichtigungen per Blockly einzustellen?

      posted in Tester
      D
      Dan_Ce
    Community
    Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
    The ioBroker Community 2014-2023
    logo