Skip to content
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • 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. Skripten / Logik
  4. Blockly
  5. Tür klingel mit ip cam verbinden

NEWS

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

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

  • Weihnachtsangebot 2025! 🎄
    BluefoxB
    Bluefox
    25
    1
    2.5k

Tür klingel mit ip cam verbinden

Geplant Angeheftet Gesperrt Verschoben Blockly
6 Beiträge 4 Kommentatoren 727 Aufrufe 6 Watching
  • Ä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.
  • D Offline
    D Offline
    dan4711
    schrieb am zuletzt editiert von
    #1

    Moin Moin,
    ich hab da mal wieder eine frage.
    Ich habe meine türklingel mit einem shelly smart gemacht und habe ein skript für alexa und telegram das sie mir sagt und es mir geschickt wird wenn es geklingelt hat.nun möchte ich gern ein schritt weiter gehen und meine ip cam von der haustür einbinden ,quasi so das wenn geklingelt wird auch ein bild von der ip kam per telegram kommt. wie kann ich ein schnappschuss von der ip cam per telegram bekommen wenn es geklingelt hat? MfG daniel

    PeoplesP crunchipC 2 Antworten Letzte Antwort
    0
    • D dan4711

      Moin Moin,
      ich hab da mal wieder eine frage.
      Ich habe meine türklingel mit einem shelly smart gemacht und habe ein skript für alexa und telegram das sie mir sagt und es mir geschickt wird wenn es geklingelt hat.nun möchte ich gern ein schritt weiter gehen und meine ip cam von der haustür einbinden ,quasi so das wenn geklingelt wird auch ein bild von der ip kam per telegram kommt. wie kann ich ein schnappschuss von der ip cam per telegram bekommen wenn es geklingelt hat? MfG daniel

      PeoplesP Offline
      PeoplesP Offline
      Peoples
      schrieb am zuletzt editiert von
      #2

      @dan4711
      Mein Beispiel

      Du kannst über Telegram auch Bilder verschicken:

      // Hier der Aufruf
      //bild_senden(source_url_main_door, 'Es hat an der Haustüre geklingelt');
      
      // Deine Bildquelle
      var source_url_main_door = 'http://http://192.168.2.50/tmpfs/snap.jpg';
      
      // Die Funktion zum versenden
      function bild_senden(source_url, meldung) {
          //Definition der Bild URL in Script Kamera_Bilder_speichern
          request.get({url: source_url, encoding: 'binary'}, function (err, response, body) {
              fs.writeFile("/tmp/snap.jpg", body, 'binary', function(err) {
                  if (err) {
                      log(err);
                  } 
                  else {
                      log('Bild versenden ausgeführt');
                      setTimeout(function() {sendTo('telegram.0', 'send', {text: '/tmp/snap.jpg', caption: meldung});}, 2000);
                  }
              });
              
          });
      }
      

      Ich beantworte keine Fragen zu Themen via PN

      D 1 Antwort Letzte Antwort
      0
      • PeoplesP Peoples

        @dan4711
        Mein Beispiel

        Du kannst über Telegram auch Bilder verschicken:

        // Hier der Aufruf
        //bild_senden(source_url_main_door, 'Es hat an der Haustüre geklingelt');
        
        // Deine Bildquelle
        var source_url_main_door = 'http://http://192.168.2.50/tmpfs/snap.jpg';
        
        // Die Funktion zum versenden
        function bild_senden(source_url, meldung) {
            //Definition der Bild URL in Script Kamera_Bilder_speichern
            request.get({url: source_url, encoding: 'binary'}, function (err, response, body) {
                fs.writeFile("/tmp/snap.jpg", body, 'binary', function(err) {
                    if (err) {
                        log(err);
                    } 
                    else {
                        log('Bild versenden ausgeführt');
                        setTimeout(function() {sendTo('telegram.0', 'send', {text: '/tmp/snap.jpg', caption: meldung});}, 2000);
                    }
                });
                
            });
        }
        
        D Offline
        D Offline
        dan4711
        schrieb am zuletzt editiert von
        #3

        @Peoples wie sieht das in blockly aus? ich bin anfänger

        PeoplesP 1 Antwort Letzte Antwort
        0
        • D dan4711

          @Peoples wie sieht das in blockly aus? ich bin anfänger

          PeoplesP Offline
          PeoplesP Offline
          Peoples
          schrieb am zuletzt editiert von
          #4

          @dan4711
          sorry aber ich habe keine Ahnung von Blocky hab mich nie damit beschäftigt.

          Als ich angefangen habe war für mich klar dass ich das alles Coden können möchte somit war Blocky nie eine Option.

          Ich beantworte keine Fragen zu Themen via PN

          1 Antwort Letzte Antwort
          0
          • D dan4711

            Moin Moin,
            ich hab da mal wieder eine frage.
            Ich habe meine türklingel mit einem shelly smart gemacht und habe ein skript für alexa und telegram das sie mir sagt und es mir geschickt wird wenn es geklingelt hat.nun möchte ich gern ein schritt weiter gehen und meine ip cam von der haustür einbinden ,quasi so das wenn geklingelt wird auch ein bild von der ip kam per telegram kommt. wie kann ich ein schnappschuss von der ip cam per telegram bekommen wenn es geklingelt hat? MfG daniel

            crunchipC Abwesend
            crunchipC Abwesend
            crunchip
            Forum Testing Most Active
            schrieb am zuletzt editiert von crunchip
            #5

            @dan4711 ein Beispiel in Blockly

            <xml xmlns="http://www.w3.org/1999/xhtml">
              <variables>
                <variable type="undefined" id="timeout">timeout</variable>
                <variable type="undefined" id="timeout2">timeout2</variable>
              </variables>
              <block type="procedures_defnoreturn" id="~pPk?PHjzu0{iCY*^,Mh" x="-1487" y="-537">
                <field name="NAME">foto senden</field>
                <comment pinned="false" h="80" w="160">Beschreibe diese Funktion …</comment>
                <statement name="STACK">
                  <block type="timeouts_settimeout" id="%parHE%U;Jg[8keop7B#">
                    <field name="NAME">timeout</field>
                    <field name="DELAY">1500</field>
                    <field name="UNIT">ms</field>
                    <statement name="STATEMENT">
                      <block type="exec" id=")s4eqoL)+rnTyhSAl1/f">
                        <mutation with_statement="false"></mutation>
                        <field name="WITH_STATEMENT">FALSE</field>
                        <field name="LOG"></field>
                        <value name="COMMAND">
                          <shadow type="text" id="x`Y6eq`nky[SMncjoLv.">
                            <field name="TEXT">wget --output-document /opt/iobroker/ipcam/alarm.jpg  http://benutzer:pw@192.168.178.xx:xx/mjpeg/snap.cgi?chn=0</field>
                          </shadow>
                        </value>
                        <next>
                          <block type="timeouts_settimeout" id="%@nkC[RH(?Ec:@AGgZ:,">
                            <field name="NAME">timeout2</field>
                            <field name="DELAY">1500</field>
                            <field name="UNIT">ms</field>
                            <statement name="STATEMENT">
                              <block type="telegram" id="d38k#q#az~Oi^iSLuj9.">
                                <field name="INSTANCE">.1</field>
                                <field name="LOG"></field>
                                <field name="SILENT">FALSE</field>
                                <field name="PARSEMODE">default</field>
                                <value name="MESSAGE">
                                  <shadow type="text" id="at(q2i6A623??3sky7BI">
                                    <field name="TEXT">/opt/iobroker/ipcam/alarm.jpg</field>
                                  </shadow>
                                </value>
                              </block>
                            </statement>
                          </block>
                        </next>
                      </block>
                    </statement>
                  </block>
                </statement>
              </block>
              <block type="on_ext" id="`GUr59!Yl5mDs=I+Jo5B" x="-2087" y="-438">
                <mutation items="1"></mutation>
                <field name="CONDITION">ne</field>
                <field name="ACK_CONDITION"></field>
                <value name="OID0">
                  <shadow type="field_oid" id="n1LLug[:];X(NGRrHI9M">
                    <field name="oid">kamera.0.detection-haustuer</field>
                  </shadow>
                </value>
                <statement name="STATEMENT">
                  <block type="controls_if" id="Ci9yel;nZt;3HGWWTd%p">
                    <value name="IF0">
                      <block type="logic_compare" id="fsEVLCKjDeTnXQO4viQs">
                        <field name="OP">EQ</field>
                        <value name="A">
                          <block type="get_value" id="G2%KCoV,9q)w;P-cWe8F">
                            <field name="ATTR">val</field>
                            <field name="OID">kamera.0.detection-haustuer</field>
                          </block>
                        </value>
                        <value name="B">
                          <block type="logic_boolean" id="T#4?AUYpx3)^tR)foJe(">
                            <field name="BOOL">TRUE</field>
                          </block>
                        </value>
                      </block>
                    </value>
                    <statement name="DO0">
                      <block type="telegram" id="4N)7(_2cP}HZ|}FBw=8|">
                        <field name="INSTANCE">.1</field>
                        <field name="LOG"></field>
                        <field name="SILENT">FALSE</field>
                        <field name="PARSEMODE">default</field>
                        <value name="MESSAGE">
                          <shadow type="text" id="W6;1HREN=O|*]-[/it?8">
                            <field name="TEXT">Bewegung erkannt!</field>
                          </shadow>
                        </value>
                        <next>
                          <block type="procedures_callnoreturn" id="0[]Zqa;B0EX}E|~T8FNe">
                            <mutation name="foto senden"></mutation>
                            <next>
                              <block type="control" id="=~//[QijuXgTUV`dhK6C">
                                <mutation delay_input="true"></mutation>
                                <field name="OID">javascript.0.scriptEnabled.Kamera.Haustür.tastatur_telegram</field>
                                <field name="WITH_DELAY">TRUE</field>
                                <field name="DELAY_MS">4000</field>
                                <field name="UNIT">ms</field>
                                <field name="CLEAR_RUNNING">FALSE</field>
                                <value name="VALUE">
                                  <block type="logic_boolean" id="*BFJ2YXRb2o:Qeq*N?5X">
                                    <field name="BOOL">TRUE</field>
                                  </block>
                                </value>
                                <next>
                                  <block type="control" id="!m?e.^@6?i_F`}]9=Ft8">
                                    <mutation delay_input="true"></mutation>
                                    <field name="OID">kamera.0.detection-haustuer</field>
                                    <field name="WITH_DELAY">TRUE</field>
                                    <field name="DELAY_MS">1000</field>
                                    <field name="UNIT">ms</field>
                                    <field name="CLEAR_RUNNING">FALSE</field>
                                    <value name="VALUE">
                                      <block type="logic_boolean" id="{v962!L:c8dT,7_3LPG/">
                                        <field name="BOOL">FALSE</field>
                                      </block>
                                    </value>
                                  </block>
                                </next>
                              </block>
                            </next>
                          </block>
                        </next>
                      </block>
                    </statement>
                  </block>
                </statement>
                <next>
                  <block type="on_ext" id="f}:uXO2?99R}?f]h]J-S">
                    <mutation items="1"></mutation>
                    <field name="CONDITION">ne</field>
                    <field name="ACK_CONDITION"></field>
                    <value name="OID0">
                      <shadow type="field_oid" id="O~3FDvDA|ALVHq{WMp,,">
                        <field name="oid">kamera.0.trigger-haustuer</field>
                      </shadow>
                    </value>
                    <statement name="STATEMENT">
                      <block type="controls_if" id="=39a/~tBL~MwYaS3UiJy">
                        <value name="IF0">
                          <block type="logic_compare" id="HiX[Jr;9d)MV4H#35zrD">
                            <field name="OP">EQ</field>
                            <value name="A">
                              <block type="get_value" id="6?v]cu);WSySwi#k(|I3">
                                <field name="ATTR">val</field>
                                <field name="OID">kamera.0.trigger-haustuer</field>
                              </block>
                            </value>
                            <value name="B">
                              <block type="logic_boolean" id="-012d]m,uHS7@TBav3ER">
                                <field name="BOOL">TRUE</field>
                              </block>
                            </value>
                          </block>
                        </value>
                        <statement name="DO0">
                          <block type="procedures_callnoreturn" id="ZPW9T~}t6~|bgFE0{,DB">
                            <mutation name="foto senden"></mutation>
                            <next>
                              <block type="control" id="E=-#mYU=W5y(Y~c1;!CP">
                                <mutation delay_input="false"></mutation>
                                <field name="OID">kamera.0.trigger-haustuer</field>
                                <field name="WITH_DELAY">FALSE</field>
                                <value name="VALUE">
                                  <block type="logic_boolean" id="Ix*!Q|=a`[:8b(M-yoEw">
                                    <field name="BOOL">FALSE</field>
                                  </block>
                                </value>
                                <next>
                                  <block type="control" id="81sYN{XDiN!(STP#]^2j">
                                    <mutation delay_input="false"></mutation>
                                    <field name="OID">javascript.0.scriptEnabled.Kamera.Haustür.tastatur_telegram</field>
                                    <field name="WITH_DELAY">FALSE</field>
                                    <value name="VALUE">
                                      <block type="logic_boolean" id="ng^-#81XBFGuI63xNT:k">
                                        <field name="BOOL">FALSE</field>
                                      </block>
                                    </value>
                                    <next>
                                      <block type="control" id="f*#!W[jcd/GhWJRn{%ZK">
                                        <mutation delay_input="true"></mutation>
                                        <field name="OID">javascript.0.scriptEnabled.Kamera.Haustür.tastatur_telegram</field>
                                        <field name="WITH_DELAY">TRUE</field>
                                        <field name="DELAY_MS">3</field>
                                        <field name="UNIT">sec</field>
                                        <field name="CLEAR_RUNNING">FALSE</field>
                                        <value name="VALUE">
                                          <block type="logic_boolean" id="y5E9=KXkltEoCF#+;m7y">
                                            <field name="BOOL">TRUE</field>
                                          </block>
                                        </value>
                                      </block>
                                    </next>
                                  </block>
                                </next>
                              </block>
                            </next>
                          </block>
                        </statement>
                      </block>
                    </statement>
                  </block>
                </next>
              </block>
            </xml>
            

            umgestiegen von Proxmox auf Unraid

            E 1 Antwort Letzte Antwort
            0
            • crunchipC crunchip

              @dan4711 ein Beispiel in Blockly

              <xml xmlns="http://www.w3.org/1999/xhtml">
                <variables>
                  <variable type="undefined" id="timeout">timeout</variable>
                  <variable type="undefined" id="timeout2">timeout2</variable>
                </variables>
                <block type="procedures_defnoreturn" id="~pPk?PHjzu0{iCY*^,Mh" x="-1487" y="-537">
                  <field name="NAME">foto senden</field>
                  <comment pinned="false" h="80" w="160">Beschreibe diese Funktion …</comment>
                  <statement name="STACK">
                    <block type="timeouts_settimeout" id="%parHE%U;Jg[8keop7B#">
                      <field name="NAME">timeout</field>
                      <field name="DELAY">1500</field>
                      <field name="UNIT">ms</field>
                      <statement name="STATEMENT">
                        <block type="exec" id=")s4eqoL)+rnTyhSAl1/f">
                          <mutation with_statement="false"></mutation>
                          <field name="WITH_STATEMENT">FALSE</field>
                          <field name="LOG"></field>
                          <value name="COMMAND">
                            <shadow type="text" id="x`Y6eq`nky[SMncjoLv.">
                              <field name="TEXT">wget --output-document /opt/iobroker/ipcam/alarm.jpg  http://benutzer:pw@192.168.178.xx:xx/mjpeg/snap.cgi?chn=0</field>
                            </shadow>
                          </value>
                          <next>
                            <block type="timeouts_settimeout" id="%@nkC[RH(?Ec:@AGgZ:,">
                              <field name="NAME">timeout2</field>
                              <field name="DELAY">1500</field>
                              <field name="UNIT">ms</field>
                              <statement name="STATEMENT">
                                <block type="telegram" id="d38k#q#az~Oi^iSLuj9.">
                                  <field name="INSTANCE">.1</field>
                                  <field name="LOG"></field>
                                  <field name="SILENT">FALSE</field>
                                  <field name="PARSEMODE">default</field>
                                  <value name="MESSAGE">
                                    <shadow type="text" id="at(q2i6A623??3sky7BI">
                                      <field name="TEXT">/opt/iobroker/ipcam/alarm.jpg</field>
                                    </shadow>
                                  </value>
                                </block>
                              </statement>
                            </block>
                          </next>
                        </block>
                      </statement>
                    </block>
                  </statement>
                </block>
                <block type="on_ext" id="`GUr59!Yl5mDs=I+Jo5B" x="-2087" y="-438">
                  <mutation items="1"></mutation>
                  <field name="CONDITION">ne</field>
                  <field name="ACK_CONDITION"></field>
                  <value name="OID0">
                    <shadow type="field_oid" id="n1LLug[:];X(NGRrHI9M">
                      <field name="oid">kamera.0.detection-haustuer</field>
                    </shadow>
                  </value>
                  <statement name="STATEMENT">
                    <block type="controls_if" id="Ci9yel;nZt;3HGWWTd%p">
                      <value name="IF0">
                        <block type="logic_compare" id="fsEVLCKjDeTnXQO4viQs">
                          <field name="OP">EQ</field>
                          <value name="A">
                            <block type="get_value" id="G2%KCoV,9q)w;P-cWe8F">
                              <field name="ATTR">val</field>
                              <field name="OID">kamera.0.detection-haustuer</field>
                            </block>
                          </value>
                          <value name="B">
                            <block type="logic_boolean" id="T#4?AUYpx3)^tR)foJe(">
                              <field name="BOOL">TRUE</field>
                            </block>
                          </value>
                        </block>
                      </value>
                      <statement name="DO0">
                        <block type="telegram" id="4N)7(_2cP}HZ|}FBw=8|">
                          <field name="INSTANCE">.1</field>
                          <field name="LOG"></field>
                          <field name="SILENT">FALSE</field>
                          <field name="PARSEMODE">default</field>
                          <value name="MESSAGE">
                            <shadow type="text" id="W6;1HREN=O|*]-[/it?8">
                              <field name="TEXT">Bewegung erkannt!</field>
                            </shadow>
                          </value>
                          <next>
                            <block type="procedures_callnoreturn" id="0[]Zqa;B0EX}E|~T8FNe">
                              <mutation name="foto senden"></mutation>
                              <next>
                                <block type="control" id="=~//[QijuXgTUV`dhK6C">
                                  <mutation delay_input="true"></mutation>
                                  <field name="OID">javascript.0.scriptEnabled.Kamera.Haustür.tastatur_telegram</field>
                                  <field name="WITH_DELAY">TRUE</field>
                                  <field name="DELAY_MS">4000</field>
                                  <field name="UNIT">ms</field>
                                  <field name="CLEAR_RUNNING">FALSE</field>
                                  <value name="VALUE">
                                    <block type="logic_boolean" id="*BFJ2YXRb2o:Qeq*N?5X">
                                      <field name="BOOL">TRUE</field>
                                    </block>
                                  </value>
                                  <next>
                                    <block type="control" id="!m?e.^@6?i_F`}]9=Ft8">
                                      <mutation delay_input="true"></mutation>
                                      <field name="OID">kamera.0.detection-haustuer</field>
                                      <field name="WITH_DELAY">TRUE</field>
                                      <field name="DELAY_MS">1000</field>
                                      <field name="UNIT">ms</field>
                                      <field name="CLEAR_RUNNING">FALSE</field>
                                      <value name="VALUE">
                                        <block type="logic_boolean" id="{v962!L:c8dT,7_3LPG/">
                                          <field name="BOOL">FALSE</field>
                                        </block>
                                      </value>
                                    </block>
                                  </next>
                                </block>
                              </next>
                            </block>
                          </next>
                        </block>
                      </statement>
                    </block>
                  </statement>
                  <next>
                    <block type="on_ext" id="f}:uXO2?99R}?f]h]J-S">
                      <mutation items="1"></mutation>
                      <field name="CONDITION">ne</field>
                      <field name="ACK_CONDITION"></field>
                      <value name="OID0">
                        <shadow type="field_oid" id="O~3FDvDA|ALVHq{WMp,,">
                          <field name="oid">kamera.0.trigger-haustuer</field>
                        </shadow>
                      </value>
                      <statement name="STATEMENT">
                        <block type="controls_if" id="=39a/~tBL~MwYaS3UiJy">
                          <value name="IF0">
                            <block type="logic_compare" id="HiX[Jr;9d)MV4H#35zrD">
                              <field name="OP">EQ</field>
                              <value name="A">
                                <block type="get_value" id="6?v]cu);WSySwi#k(|I3">
                                  <field name="ATTR">val</field>
                                  <field name="OID">kamera.0.trigger-haustuer</field>
                                </block>
                              </value>
                              <value name="B">
                                <block type="logic_boolean" id="-012d]m,uHS7@TBav3ER">
                                  <field name="BOOL">TRUE</field>
                                </block>
                              </value>
                            </block>
                          </value>
                          <statement name="DO0">
                            <block type="procedures_callnoreturn" id="ZPW9T~}t6~|bgFE0{,DB">
                              <mutation name="foto senden"></mutation>
                              <next>
                                <block type="control" id="E=-#mYU=W5y(Y~c1;!CP">
                                  <mutation delay_input="false"></mutation>
                                  <field name="OID">kamera.0.trigger-haustuer</field>
                                  <field name="WITH_DELAY">FALSE</field>
                                  <value name="VALUE">
                                    <block type="logic_boolean" id="Ix*!Q|=a`[:8b(M-yoEw">
                                      <field name="BOOL">FALSE</field>
                                    </block>
                                  </value>
                                  <next>
                                    <block type="control" id="81sYN{XDiN!(STP#]^2j">
                                      <mutation delay_input="false"></mutation>
                                      <field name="OID">javascript.0.scriptEnabled.Kamera.Haustür.tastatur_telegram</field>
                                      <field name="WITH_DELAY">FALSE</field>
                                      <value name="VALUE">
                                        <block type="logic_boolean" id="ng^-#81XBFGuI63xNT:k">
                                          <field name="BOOL">FALSE</field>
                                        </block>
                                      </value>
                                      <next>
                                        <block type="control" id="f*#!W[jcd/GhWJRn{%ZK">
                                          <mutation delay_input="true"></mutation>
                                          <field name="OID">javascript.0.scriptEnabled.Kamera.Haustür.tastatur_telegram</field>
                                          <field name="WITH_DELAY">TRUE</field>
                                          <field name="DELAY_MS">3</field>
                                          <field name="UNIT">sec</field>
                                          <field name="CLEAR_RUNNING">FALSE</field>
                                          <value name="VALUE">
                                            <block type="logic_boolean" id="y5E9=KXkltEoCF#+;m7y">
                                              <field name="BOOL">TRUE</field>
                                            </block>
                                          </value>
                                        </block>
                                      </next>
                                    </block>
                                  </next>
                                </block>
                              </next>
                            </block>
                          </statement>
                        </block>
                      </statement>
                    </block>
                  </next>
                </block>
              </xml>
              
              E Offline
              E Offline
              el_malto
              schrieb am zuletzt editiert von
              #6

              @crunchip sagte in Tür klingel mit ip cam verbinden:

              @dan4711 ein Beispiel in Blockly

              Auch wenn vielleicht nur alles Netzintern, aber man sieht das Benutzer und PW von deiner Cam im Skript.

              1 Antwort Letzte Antwort
              1
              Antworten
              • In einem neuen Thema antworten
              Anmelden zum Antworten
              • Älteste zuerst
              • Neuste zuerst
              • Meiste Stimmen


              Support us

              ioBroker
              Community Adapters
              Donate

              614

              Online

              32.7k

              Benutzer

              82.4k

              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