Weiter zum Inhalt
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Hell
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dunkel
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Cloud Dienste
  4. Neuer Alexa-Skill "iobroker.assistant"

NEWS

  • Monatsrückblick Januar/Februar 2026 ist online!
    BluefoxB
    Bluefox
    18
    1
    823

  • Jahresrückblick 2025 – unser neuer Blogbeitrag ist online! ✨
    BluefoxB
    Bluefox
    18
    1
    6.3k

  • Neuer Blogbeitrag: Monatsrückblick - Dezember 2025 🎄
    BluefoxB
    Bluefox
    13
    1
    1.6k

Neuer Alexa-Skill "iobroker.assistant"

Geplant Angeheftet Gesperrt Verschoben Cloud Dienste
668 Beiträge 146 Kommentatoren 86.9k Aufrufe 133 Beobachtet
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • haselchenH haselchen

    @drloksoft

    Was ist SlatPos für ein Datenpunkt ?
    Der steht bei dir bei Actual im Screenshot .

    D Offline
    D Offline
    drloksoft
    schrieb am zuletzt editiert von
    #659

    @haselchen Gute Frage. Den Datenpunkt übernimmt der IOT Adapter "SlatPos" automatisch, wenn man nur "position" angibt. Mit meinen neuen Datenpunkten übernimmt der IOT Adapter nur den Set Datenpunkt:
    7f3571ba-637c-41ae-b0e7-e22268f52dca-image.jpeg

    Unabhängig davon stelle ich fest, dass bei der Auswahl über die Alexa-App wird immer 0 auf den SET-State geschrieben wird, während ich per Spracheingabe tatsächlich numerische Werte bekomme.

    Der aus der Alexa-App kommende Wert ist nicht 0.5, 0.6 oder ein anderer Dezimalwert, sondern tatsächlich numerisch 0.

    Hier mein Debug Script:

    /************************************************************
     * Shelly Cover -> Alexa V3 Alias (SET / ACTUAL)
     * MAX DEBUG VERSION
     ************************************************************/
    
    const CONFIG = {
        name: 'Wohnzimmer_Rollo_Rechts',
    
        SHELLY_ACTUAL_ID: 'shelly.0.shellyplus2pm#e86beae602b0#1.Cover0.Position',
        SHELLY_WRITE_ID:  'shelly.0.shellyplus2pm#e86beae602b0#1.Cover0.TargetPosition',
    
        BASE_PATH: '0_userdata.0.Alexa.blinds.Wohnzimmer_Rollo_Rechts',
    
        LOG: true,
        DEBUG: true
    };
    
    const DP = {
        SET:    `${CONFIG.BASE_PATH}.set`,
        ACTUAL: `${CONFIG.BASE_PATH}.actual`,
        INFO:   `${CONFIG.BASE_PATH}.info.lastCommand`,
        DEBUG:  `${CONFIG.BASE_PATH}.info.lastRawEvent`
    };
    
    let suppressActualEchoUntil = 0;
    let lastForwardedTarget = null;
    let lastForwardedTs = 0;
    
    function logx(msg, level = 'info') {
        if (CONFIG.LOG) log(`[AlexaBlind] ${msg}`, level);
    }
    
    function debugLog(msg) {
        if (CONFIG.DEBUG) log(`[AlexaBlind][DEBUG] ${msg}`, 'info');
    }
    
    function clampPercent(val) {
        let n = Number(val);
        if (isNaN(n)) return null;
        if (n < 0) n = 0;
        if (n > 100) n = 100;
        return Math.round(n);
    }
    
    function describeValue(val) {
        return `value=${JSON.stringify(val)} | typeof=${typeof val} | Number()=${Number(val)} | parseFloat=${parseFloat(val)}`;
    }
    
    function fmtState(obj) {
        if (!obj || !obj.state) return 'kein state';
        return JSON.stringify({
            val: obj.state.val,
            valJson: JSON.stringify(obj.state.val),
            typeOfVal: typeof obj.state.val,
            numberVal: Number(obj.state.val),
            parseFloatVal: parseFloat(obj.state.val),
            ack: obj.state.ack,
            from: obj.state.from,
            ts: obj.state.ts,
            lc: obj.state.lc,
            user: obj.state.user,
            q: obj.state.q,
            c: obj.state.c
        });
    }
    
    function logObjectInfo(id) {
        try {
            const obj = getObject(id);
            if (!obj) {
                debugLog(`getObject(${id}) -> kein Objekt gefunden`);
                return;
            }
    
            debugLog(`Objektinfo ${id}: ${JSON.stringify({
                type: obj.type,
                common: obj.common,
                native: obj.native
            })}`);
        } catch (e) {
            logx(`Fehler bei getObject(${id}): ${e}`, 'warn');
        }
    }
    
    // States anlegen
    createState(DP.SET, 0, {
        name: `${CONFIG.name} SET`,
        type: 'number',
        role: 'level.blind',
        read: true,
        write: true,
        unit: '%',
        min: 0,
        max: 100,
        def: 0,
        desc: 'Sollwert für Alexa / Blind'
    }, async () => {
    
        createState(DP.ACTUAL, 0, {
            name: `${CONFIG.name} ACTUAL`,
            type: 'number',
            role: 'value.blind',
            read: true,
            write: false,
            unit: '%',
            min: 0,
            max: 100,
            def: 0,
            desc: 'Istwert für Alexa / Blind'
        }, async () => {
    
            createState(DP.INFO, '', {
                name: `${CONFIG.name} Last Command`,
                type: 'string',
                role: 'text',
                read: true,
                write: false,
                def: ''
            }, async () => {
    
                createState(DP.DEBUG, '', {
                    name: `${CONFIG.name} Last Raw Event`,
                    type: 'string',
                    role: 'text',
                    read: true,
                    write: false,
                    def: ''
                }, init);
            });
        });
    });
    
    function init() {
        logx(`Initialisierung für "${CONFIG.name}" gestartet`);
        logx(`SET-State: ${DP.SET}`);
        logx(`ACTUAL-State: ${DP.ACTUAL}`);
        logx(`SHELLY_WRITE_ID: ${CONFIG.SHELLY_WRITE_ID}`);
        logx(`SHELLY_ACTUAL_ID: ${CONFIG.SHELLY_ACTUAL_ID}`);
    
        logObjectInfo(DP.SET);
        logObjectInfo(DP.ACTUAL);
        logObjectInfo(CONFIG.SHELLY_WRITE_ID);
        logObjectInfo(CONFIG.SHELLY_ACTUAL_ID);
    
        const current = getState(CONFIG.SHELLY_ACTUAL_ID);
        if (current && current.val !== null && current.val !== undefined) {
            const pos = clampPercent(current.val);
            if (pos !== null) {
                setState(DP.ACTUAL, pos, true);
                setState(DP.SET, pos, true);
                logx(`Initialposition übernommen: ${pos}%`);
            }
        } else {
            logx(`Warnung: ACTUAL-State nicht lesbar: ${CONFIG.SHELLY_ACTUAL_ID}`, 'warn');
        }
    
        /********************************************************
         * 1) GLOBAL DEBUG auf ganzen Alexa-Zweig
         ********************************************************/
        on({ id: new RegExp('^' + CONFIG.BASE_PATH.replace(/\./g, '\\.') + '\\..*'), change: 'any' }, obj => {
            const oldVal = obj.oldState ? obj.oldState.val : undefined;
            const newVal = obj.state ? obj.state.val : undefined;
    
            const msg =
                `BRANCH EVENT | id=${obj.id} | ` +
                `old=${JSON.stringify(oldVal)} | new=${JSON.stringify(newVal)} | ` +
                `typeof=${typeof newVal} | Number=${Number(newVal)} | parseFloat=${parseFloat(newVal)} | ` +
                `ack=${obj.state.ack} | from=${obj.state.from} | user=${obj.state.user} | ` +
                `ts=${obj.state.ts} | lc=${obj.state.lc} | q=${obj.state.q} | c=${obj.state.c}`;
    
            debugLog(msg);
    
            if (obj.id === DP.SET) {
                setState(DP.DEBUG, msg, true);
            }
        });
    
        /********************************************************
         * 2) Speziell DP.SET überwachen
         ********************************************************/
        on({ id: DP.SET, change: 'any' }, obj => {
            debugLog(`SET RAW -> ${fmtState(obj)}`);
        });
    
        /********************************************************
         * 3) Jede echte Wertänderung auf SET verarbeiten
         ********************************************************/
        on({ id: DP.SET, change: 'ne' }, obj => {
            debugLog(`SET Trigger(change:ne) -> ${fmtState(obj)}`);
            debugLog(`SET Detail -> ${describeValue(obj.state.val)}`);
    
            const target = clampPercent(obj.state.val);
    
            if (target === null) {
                logx(`Ungültiger SET-Wert empfangen: ${JSON.stringify(obj.state.val)}`, 'warn');
                return;
            }
    
            const now = Date.now();
            if (
                obj.state.ack === true &&
                lastForwardedTarget === target &&
                (now - lastForwardedTs) < 5000
            ) {
                debugLog(`Ignoriere Echo auf SET (${target}%), vermutlich von uns selbst.`);
                return;
            }
    
            suppressActualEchoUntil = now + 3000;
            lastForwardedTarget = target;
            lastForwardedTs = now;
    
            logx(`SET empfangen: ${target}% | raw=${JSON.stringify(obj.state.val)} | ack=${obj.state.ack} | from=${obj.state.from} -> schreibe an Shelly (${CONFIG.SHELLY_WRITE_ID})`);
    
            setState(DP.INFO, `SET ${target}% | raw=${JSON.stringify(obj.state.val)} | ack=${obj.state.ack} | from=${obj.state.from} @ ${new Date().toISOString()}`, true);
    
            if (obj.state.ack !== true) {
                setState(DP.SET, target, true);
            }
    
            setState(CONFIG.SHELLY_WRITE_ID, target);
        });
    
        /********************************************************
         * 4) Shelly ACTUAL
         ********************************************************/
        on({ id: CONFIG.SHELLY_ACTUAL_ID, change: 'any' }, obj => {
            debugLog(`Shelly ACTUAL Event -> ${fmtState(obj)}`);
        });
    
        on({ id: CONFIG.SHELLY_ACTUAL_ID, change: 'ne' }, obj => {
            const actual = clampPercent(obj.state.val);
    
            if (actual === null) {
                logx(`Ungültiger ACTUAL-Wert vom Shelly: ${JSON.stringify(obj.state.val)}`, 'warn');
                return;
            }
    
            setState(DP.ACTUAL, actual, true);
    
            if (Date.now() > suppressActualEchoUntil) {
                setState(DP.SET, actual, true);
            }
    
            logx(`Shelly ACTUAL aktualisiert: ${actual}%`);
        });
    
        /********************************************************
         * 5) Shelly WRITE/TARGET
         ********************************************************/
        on({ id: CONFIG.SHELLY_WRITE_ID, change: 'any' }, obj => {
            debugLog(`Shelly WRITE/TARGET Event -> ${fmtState(obj)}`);
        });
    
        logx(`Fertig initialisiert.`);
    }
    
    HomoranH 1 Antwort Letzte Antwort
    0
    • D drloksoft

      @haselchen Gute Frage. Den Datenpunkt übernimmt der IOT Adapter "SlatPos" automatisch, wenn man nur "position" angibt. Mit meinen neuen Datenpunkten übernimmt der IOT Adapter nur den Set Datenpunkt:
      7f3571ba-637c-41ae-b0e7-e22268f52dca-image.jpeg

      Unabhängig davon stelle ich fest, dass bei der Auswahl über die Alexa-App wird immer 0 auf den SET-State geschrieben wird, während ich per Spracheingabe tatsächlich numerische Werte bekomme.

      Der aus der Alexa-App kommende Wert ist nicht 0.5, 0.6 oder ein anderer Dezimalwert, sondern tatsächlich numerisch 0.

      Hier mein Debug Script:

      /************************************************************
       * Shelly Cover -> Alexa V3 Alias (SET / ACTUAL)
       * MAX DEBUG VERSION
       ************************************************************/
      
      const CONFIG = {
          name: 'Wohnzimmer_Rollo_Rechts',
      
          SHELLY_ACTUAL_ID: 'shelly.0.shellyplus2pm#e86beae602b0#1.Cover0.Position',
          SHELLY_WRITE_ID:  'shelly.0.shellyplus2pm#e86beae602b0#1.Cover0.TargetPosition',
      
          BASE_PATH: '0_userdata.0.Alexa.blinds.Wohnzimmer_Rollo_Rechts',
      
          LOG: true,
          DEBUG: true
      };
      
      const DP = {
          SET:    `${CONFIG.BASE_PATH}.set`,
          ACTUAL: `${CONFIG.BASE_PATH}.actual`,
          INFO:   `${CONFIG.BASE_PATH}.info.lastCommand`,
          DEBUG:  `${CONFIG.BASE_PATH}.info.lastRawEvent`
      };
      
      let suppressActualEchoUntil = 0;
      let lastForwardedTarget = null;
      let lastForwardedTs = 0;
      
      function logx(msg, level = 'info') {
          if (CONFIG.LOG) log(`[AlexaBlind] ${msg}`, level);
      }
      
      function debugLog(msg) {
          if (CONFIG.DEBUG) log(`[AlexaBlind][DEBUG] ${msg}`, 'info');
      }
      
      function clampPercent(val) {
          let n = Number(val);
          if (isNaN(n)) return null;
          if (n < 0) n = 0;
          if (n > 100) n = 100;
          return Math.round(n);
      }
      
      function describeValue(val) {
          return `value=${JSON.stringify(val)} | typeof=${typeof val} | Number()=${Number(val)} | parseFloat=${parseFloat(val)}`;
      }
      
      function fmtState(obj) {
          if (!obj || !obj.state) return 'kein state';
          return JSON.stringify({
              val: obj.state.val,
              valJson: JSON.stringify(obj.state.val),
              typeOfVal: typeof obj.state.val,
              numberVal: Number(obj.state.val),
              parseFloatVal: parseFloat(obj.state.val),
              ack: obj.state.ack,
              from: obj.state.from,
              ts: obj.state.ts,
              lc: obj.state.lc,
              user: obj.state.user,
              q: obj.state.q,
              c: obj.state.c
          });
      }
      
      function logObjectInfo(id) {
          try {
              const obj = getObject(id);
              if (!obj) {
                  debugLog(`getObject(${id}) -> kein Objekt gefunden`);
                  return;
              }
      
              debugLog(`Objektinfo ${id}: ${JSON.stringify({
                  type: obj.type,
                  common: obj.common,
                  native: obj.native
              })}`);
          } catch (e) {
              logx(`Fehler bei getObject(${id}): ${e}`, 'warn');
          }
      }
      
      // States anlegen
      createState(DP.SET, 0, {
          name: `${CONFIG.name} SET`,
          type: 'number',
          role: 'level.blind',
          read: true,
          write: true,
          unit: '%',
          min: 0,
          max: 100,
          def: 0,
          desc: 'Sollwert für Alexa / Blind'
      }, async () => {
      
          createState(DP.ACTUAL, 0, {
              name: `${CONFIG.name} ACTUAL`,
              type: 'number',
              role: 'value.blind',
              read: true,
              write: false,
              unit: '%',
              min: 0,
              max: 100,
              def: 0,
              desc: 'Istwert für Alexa / Blind'
          }, async () => {
      
              createState(DP.INFO, '', {
                  name: `${CONFIG.name} Last Command`,
                  type: 'string',
                  role: 'text',
                  read: true,
                  write: false,
                  def: ''
              }, async () => {
      
                  createState(DP.DEBUG, '', {
                      name: `${CONFIG.name} Last Raw Event`,
                      type: 'string',
                      role: 'text',
                      read: true,
                      write: false,
                      def: ''
                  }, init);
              });
          });
      });
      
      function init() {
          logx(`Initialisierung für "${CONFIG.name}" gestartet`);
          logx(`SET-State: ${DP.SET}`);
          logx(`ACTUAL-State: ${DP.ACTUAL}`);
          logx(`SHELLY_WRITE_ID: ${CONFIG.SHELLY_WRITE_ID}`);
          logx(`SHELLY_ACTUAL_ID: ${CONFIG.SHELLY_ACTUAL_ID}`);
      
          logObjectInfo(DP.SET);
          logObjectInfo(DP.ACTUAL);
          logObjectInfo(CONFIG.SHELLY_WRITE_ID);
          logObjectInfo(CONFIG.SHELLY_ACTUAL_ID);
      
          const current = getState(CONFIG.SHELLY_ACTUAL_ID);
          if (current && current.val !== null && current.val !== undefined) {
              const pos = clampPercent(current.val);
              if (pos !== null) {
                  setState(DP.ACTUAL, pos, true);
                  setState(DP.SET, pos, true);
                  logx(`Initialposition übernommen: ${pos}%`);
              }
          } else {
              logx(`Warnung: ACTUAL-State nicht lesbar: ${CONFIG.SHELLY_ACTUAL_ID}`, 'warn');
          }
      
          /********************************************************
           * 1) GLOBAL DEBUG auf ganzen Alexa-Zweig
           ********************************************************/
          on({ id: new RegExp('^' + CONFIG.BASE_PATH.replace(/\./g, '\\.') + '\\..*'), change: 'any' }, obj => {
              const oldVal = obj.oldState ? obj.oldState.val : undefined;
              const newVal = obj.state ? obj.state.val : undefined;
      
              const msg =
                  `BRANCH EVENT | id=${obj.id} | ` +
                  `old=${JSON.stringify(oldVal)} | new=${JSON.stringify(newVal)} | ` +
                  `typeof=${typeof newVal} | Number=${Number(newVal)} | parseFloat=${parseFloat(newVal)} | ` +
                  `ack=${obj.state.ack} | from=${obj.state.from} | user=${obj.state.user} | ` +
                  `ts=${obj.state.ts} | lc=${obj.state.lc} | q=${obj.state.q} | c=${obj.state.c}`;
      
              debugLog(msg);
      
              if (obj.id === DP.SET) {
                  setState(DP.DEBUG, msg, true);
              }
          });
      
          /********************************************************
           * 2) Speziell DP.SET überwachen
           ********************************************************/
          on({ id: DP.SET, change: 'any' }, obj => {
              debugLog(`SET RAW -> ${fmtState(obj)}`);
          });
      
          /********************************************************
           * 3) Jede echte Wertänderung auf SET verarbeiten
           ********************************************************/
          on({ id: DP.SET, change: 'ne' }, obj => {
              debugLog(`SET Trigger(change:ne) -> ${fmtState(obj)}`);
              debugLog(`SET Detail -> ${describeValue(obj.state.val)}`);
      
              const target = clampPercent(obj.state.val);
      
              if (target === null) {
                  logx(`Ungültiger SET-Wert empfangen: ${JSON.stringify(obj.state.val)}`, 'warn');
                  return;
              }
      
              const now = Date.now();
              if (
                  obj.state.ack === true &&
                  lastForwardedTarget === target &&
                  (now - lastForwardedTs) < 5000
              ) {
                  debugLog(`Ignoriere Echo auf SET (${target}%), vermutlich von uns selbst.`);
                  return;
              }
      
              suppressActualEchoUntil = now + 3000;
              lastForwardedTarget = target;
              lastForwardedTs = now;
      
              logx(`SET empfangen: ${target}% | raw=${JSON.stringify(obj.state.val)} | ack=${obj.state.ack} | from=${obj.state.from} -> schreibe an Shelly (${CONFIG.SHELLY_WRITE_ID})`);
      
              setState(DP.INFO, `SET ${target}% | raw=${JSON.stringify(obj.state.val)} | ack=${obj.state.ack} | from=${obj.state.from} @ ${new Date().toISOString()}`, true);
      
              if (obj.state.ack !== true) {
                  setState(DP.SET, target, true);
              }
      
              setState(CONFIG.SHELLY_WRITE_ID, target);
          });
      
          /********************************************************
           * 4) Shelly ACTUAL
           ********************************************************/
          on({ id: CONFIG.SHELLY_ACTUAL_ID, change: 'any' }, obj => {
              debugLog(`Shelly ACTUAL Event -> ${fmtState(obj)}`);
          });
      
          on({ id: CONFIG.SHELLY_ACTUAL_ID, change: 'ne' }, obj => {
              const actual = clampPercent(obj.state.val);
      
              if (actual === null) {
                  logx(`Ungültiger ACTUAL-Wert vom Shelly: ${JSON.stringify(obj.state.val)}`, 'warn');
                  return;
              }
      
              setState(DP.ACTUAL, actual, true);
      
              if (Date.now() > suppressActualEchoUntil) {
                  setState(DP.SET, actual, true);
              }
      
              logx(`Shelly ACTUAL aktualisiert: ${actual}%`);
          });
      
          /********************************************************
           * 5) Shelly WRITE/TARGET
           ********************************************************/
          on({ id: CONFIG.SHELLY_WRITE_ID, change: 'any' }, obj => {
              debugLog(`Shelly WRITE/TARGET Event -> ${fmtState(obj)}`);
          });
      
          logx(`Fertig initialisiert.`);
      }
      
      HomoranH Nicht stören
      HomoranH Nicht stören
      Homoran
      Global Moderator Administrators
      schrieb am zuletzt editiert von
      #660

      @drloksoft sagte:

      sondern tatsächlich numerisch 0.

      Möglicherweise ist das ein 0/1 für false/true

      kein Support per PN! - Fragen im Forum stellen -
      Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.
      Das Forum freut sich über eine Spende. Benutzt dazu den Spendenbutton oben rechts. Danke!
      der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

      D 1 Antwort Letzte Antwort
      0
      • HomoranH Homoran

        @drloksoft sagte:

        sondern tatsächlich numerisch 0.

        Möglicherweise ist das ein 0/1 für false/true

        D Offline
        D Offline
        drloksoft
        schrieb am zuletzt editiert von
        #661

        @Homoran sagte:

        @drloksoft sagte:

        sondern tatsächlich numerisch 0.

        Möglicherweise ist das ein 0/1 für false/true

        Nope, da kommt immer 0 raus. Egal, ob ich 0, 20,40,60,80,100 drücke.

        HomoranH 1 Antwort Letzte Antwort
        0
        • D drloksoft

          @Homoran sagte:

          @drloksoft sagte:

          sondern tatsächlich numerisch 0.

          Möglicherweise ist das ein 0/1 für false/true

          Nope, da kommt immer 0 raus. Egal, ob ich 0, 20,40,60,80,100 drücke.

          HomoranH Nicht stören
          HomoranH Nicht stören
          Homoran
          Global Moderator Administrators
          schrieb am zuletzt editiert von
          #662

          @drloksoft sagte:

          Nope, da kommt immer 0 raus

          Ja und?
          Das kann trotzdem false bedeuten.

          Ich weiß ja nicht was die Dame versteht

          kein Support per PN! - Fragen im Forum stellen -
          Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.
          Das Forum freut sich über eine Spende. Benutzt dazu den Spendenbutton oben rechts. Danke!
          der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

          D 1 Antwort Letzte Antwort
          0
          • HomoranH Homoran

            @drloksoft sagte:

            Nope, da kommt immer 0 raus

            Ja und?
            Das kann trotzdem false bedeuten.

            Ich weiß ja nicht was die Dame versteht

            D Offline
            D Offline
            drloksoft
            schrieb am zuletzt editiert von
            #663

            @Homoran Von Alexa kommt 0 bei Iobroker als Zahl an.
            Ich bin mir nicht sicher, ob der IOT Skill irgendetwas falsch umrechnet.

            HomoranH 1 Antwort Letzte Antwort
            0
            • D drloksoft

              @Homoran Von Alexa kommt 0 bei Iobroker als Zahl an.
              Ich bin mir nicht sicher, ob der IOT Skill irgendetwas falsch umrechnet.

              HomoranH Nicht stören
              HomoranH Nicht stören
              Homoran
              Global Moderator Administrators
              schrieb am zuletzt editiert von
              #664

              @drloksoft sagte:

              Von Alexa kommt 0 bei Iobroker als Zahl an

              Das habe ich verstanden!
              Könnte an der implizite Typumwandlung liegen

              kein Support per PN! - Fragen im Forum stellen -
              Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.
              Das Forum freut sich über eine Spende. Benutzt dazu den Spendenbutton oben rechts. Danke!
              der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

              D 1 Antwort Letzte Antwort
              0
              • HomoranH Homoran

                @drloksoft sagte:

                Von Alexa kommt 0 bei Iobroker als Zahl an

                Das habe ich verstanden!
                Könnte an der implizite Typumwandlung liegen

                D Offline
                D Offline
                drloksoft
                schrieb am zuletzt editiert von
                #665

                @Homoran okay, sollte ich dafür ein Github issue öffnen? Ich bin mit meinem Troubleshooting irgendwie am Ende.

                HomoranH 1 Antwort Letzte Antwort
                0
                • D drloksoft

                  @Homoran okay, sollte ich dafür ein Github issue öffnen? Ich bin mit meinem Troubleshooting irgendwie am Ende.

                  HomoranH Nicht stören
                  HomoranH Nicht stören
                  Homoran
                  Global Moderator Administrators
                  schrieb am zuletzt editiert von
                  #666

                  @drloksoft sagte:

                  Ich bin mit meinem Troubleshooting irgendwie am Ende.

                  Und bei mir hat Alexa Hausverbot.

                  Natürlich ist ein issue immer der beste Weg, allerdings wäre es schön, wenn hier zu deinem Problem jemand mit Erfahrung mit der Alexa App und dem Adapter dieses Verhalten reproduzieren oder entkräften kann.

                  kein Support per PN! - Fragen im Forum stellen -
                  Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.
                  Das Forum freut sich über eine Spende. Benutzt dazu den Spendenbutton oben rechts. Danke!
                  der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                  1 Antwort Letzte Antwort
                  0
                  • 1Topf1 1Topf

                    Nach Update auf .11 kam bei mir bei Temperaturabfragen auch "Ich weiß nicht was schief gelaufen ist ... ". Zurück auf .7 ist alles wieder gut. Stand Jetzt.

                    B Offline
                    B Offline
                    B0untyhunter
                    schrieb am zuletzt editiert von
                    #667

                    @1Topf
                    Habe ich heute morgen versucht inkl. Neustart des iobroker. Leider nach nun 4 Stunden immer noch "Ich weiß nicht was schief gelaufen ist" bei Abfragen zu Raumtemperaturen unter homematic ip.
                    Hat jemand eine Lösung?

                    1Topf1 1 Antwort Letzte Antwort
                    0
                    • B B0untyhunter

                      @1Topf
                      Habe ich heute morgen versucht inkl. Neustart des iobroker. Leider nach nun 4 Stunden immer noch "Ich weiß nicht was schief gelaufen ist" bei Abfragen zu Raumtemperaturen unter homematic ip.
                      Hat jemand eine Lösung?

                      1Topf1 Offline
                      1Topf1 Offline
                      1Topf
                      schrieb zuletzt editiert von
                      #668

                      @B0untyhunter

                      Du hast einen besseren Überblick als ich. Wußte gar nicht mehr, daß das hier bereits mal Thema war. Schau mal hier: https://forum.iobroker.net/post/1332689 . 😇

                      1 Antwort Letzte Antwort
                      0

                      Hey! Du scheinst an dieser Unterhaltung interessiert zu sein, hast aber noch kein Konto.

                      Hast du es satt, bei jedem Besuch durch die gleichen Beiträge zu scrollen? Wenn du dich für ein Konto anmeldest, kommst du immer genau dorthin zurück, wo du zuvor warst, und kannst dich über neue Antworten benachrichtigen lassen (entweder per E-Mail oder Push-Benachrichtigung). Du kannst auch Lesezeichen speichern und Beiträge positiv bewerten, um anderen Community-Mitgliedern deine Wertschätzung zu zeigen.

                      Mit deinem Input könnte dieser Beitrag noch besser werden 💗

                      Registrieren Anmelden
                      Antworten
                      • In einem neuen Thema antworten
                      Anmelden zum Antworten
                      • Älteste zuerst
                      • Neuste zuerst
                      • Meiste Stimmen


                      Support us

                      ioBroker
                      Community Adapters
                      Donate
                      FAQ Cloud / IOT
                      HowTo: Node.js-Update
                      HowTo: Backup/Restore
                      Downloads
                      BLOG

                      505

                      Online

                      32.8k

                      Benutzer

                      82.7k

                      Themen

                      1.3m

                      Beiträge
                      Community
                      Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                      ioBroker Community 2014-2025
                      logo
                      • Anmelden

                      • Du hast noch kein Konto? Registrieren

                      • Anmelden oder registrieren, um zu suchen
                      • Erster Beitrag
                        Letzter Beitrag
                      0
                      • Home
                      • Aktuell
                      • Tags
                      • Ungelesen 0
                      • Kategorien
                      • Unreplied
                      • Beliebt
                      • GitHub
                      • Docu
                      • Hilfe