Navigation

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

    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

    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 29
    • Best 3
    • Groups 1

    magic2910

    @magic2910

    3
    Reputation
    25
    Profile views
    29
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    magic2910 Follow
    Starter

    Best posts made by magic2910

    • RE: [Projekt] Bolio App

      Sieht super aus!
      Wenn es das noch als iOS Version geben würde 🙂

      posted in Praktische Anwendungen (Showcase)
      M
      magic2910
    • RE: Homebridge-Adapter: Funktionierende Plugins und Beispiele

      @BBTown Ich hab die Version 1.0. Diese geht laut apollon77 nicht als global im iobroker.

      posted in ioBroker Allgemein
      M
      magic2910
    • Homematic IP Rolladen - HMIP-BROLL in Homekit

      Hallo zusammen,

      ich habe nun endlich meine HMIP-BROLLs erfolgreich über Node Red in Apple Homekit gebracht.
      Da ich bisher nicht wirklich etwas dazu gefunden habe anbei mein Skript.
      (Ich bin auf eine CCU3 gewechselt, da ich viele Werte nicht über den AP bekommen habe)
      Homekit zeigt sauber den aktuellen Status an und beendet diesen auch, wenn die Aktion über den Taster ausgelöst wurde.

      Input nehme ich hm-rpc.0.xxxxxxxxx.3 und im output hm-rpc.0.xxxxxxxx.4

      3c2433ad-0578-4dab-ba0b-84d622cbb549-image.png

      [
          {
              "id": "2a5d5250.f178be",
              "type": "tab",
              "label": "Flow 1",
              "disabled": false,
              "info": ""
          },
          {
              "id": "432490.00908b7",
              "type": "homekit-service",
              "z": "2a5d5250.f178be",
              "isParent": true,
              "bridge": "55c29aac.7d8e64",
              "parentService": "",
              "name": "Rolladen Büro",
              "serviceName": "WindowCovering",
              "topic": "",
              "filter": false,
              "manufacturer": "EQ3",
              "model": "HMIP-BROLL",
              "serialNo": "123456",
              "cameraConfigVideoProcessor": "ffmpeg",
              "cameraConfigSource": "",
              "cameraConfigStillImageSource": "",
              "cameraConfigMaxStreams": 2,
              "cameraConfigMaxWidth": 1280,
              "cameraConfigMaxHeight": 720,
              "cameraConfigMaxFPS": 10,
              "cameraConfigMaxBitrate": 300,
              "cameraConfigVideoCodec": "libx264",
              "cameraConfigAudioCodec": "libfdk_aac",
              "cameraConfigAudio": false,
              "cameraConfigPacketSize": 1316,
              "cameraConfigVerticalFlip": false,
              "cameraConfigHorizontalFlip": false,
              "cameraConfigMapVideo": "0:0",
              "cameraConfigMapAudio": "0:1",
              "cameraConfigVideoFilter": "scale=1280:720",
              "cameraConfigAdditionalCommandLine": "-tune zerolatency",
              "cameraConfigDebug": false,
              "cameraConfigSnapshotOutput": "disabled",
              "cameraConfigInterfaceName": "",
              "characteristicProperties": "{}",
              "x": 840,
              "y": 200,
              "wires": [
                  [
                      "e42ab19c.8579e"
                  ],
                  []
              ],
              "icon": "node-red/debug.svg"
          },
          {
              "id": "e42ab19c.8579e",
              "type": "function",
              "z": "2a5d5250.f178be",
              "name": "convert HMIP",
              "func": "return { payload: msg.payload.TargetPosition } ;",
              "outputs": 1,
              "noerr": 0,
              "x": 1120,
              "y": 200,
              "wires": [
                  [
                      "6afa8d1d.bbd974"
                  ]
              ]
          },
          {
              "id": "6afa8d1d.bbd974",
              "type": "ioBroker out",
              "z": "2a5d5250.f178be",
              "name": "Büro",
              "topic": "hm-rpc.0..4.LEVEL",
              "ack": "false",
              "autoCreate": "false",
              "stateName": "",
              "role": "",
              "stateUnit": "",
              "stateMin": "",
              "stateMax": "",
              "x": 1290,
              "y": 200,
              "wires": []
          },
          {
              "id": "f893eeec.8e964",
              "type": "ioBroker in",
              "z": "2a5d5250.f178be",
              "name": "Büro",
              "topic": "hm-rpc.0..3.LEVEL",
              "payloadType": "value",
              "onlyack": "",
              "func": "all",
              "gap": "",
              "fireOnStart": "true",
              "x": 150,
              "y": 180,
              "wires": [
                  [
                      "cf23e464.8cc838"
                  ]
              ]
          },
          {
              "id": "ed5896fe.761f68",
              "type": "ioBroker in",
              "z": "2a5d5250.f178be",
              "name": "Büro State",
              "topic": "hm-rpc.0..3.ACTIVITY_STATE",
              "payloadType": "value",
              "onlyack": "",
              "func": "all",
              "gap": "",
              "fireOnStart": "true",
              "x": 160,
              "y": 240,
              "wires": [
                  [
                      "cf23e464.8cc838"
                  ]
              ]
          },
          {
              "id": "1056fa0c.2aba86",
              "type": "function",
              "z": "2a5d5250.f178be",
              "name": "HomeMagic",
              "func": "var pos = msg.payload[0];\nvar posstate = msg.payload[1];\n\nif(posstate === \"3\"){\n msg.payload={\n   CurrentPosition: Number(pos),\n   TargetPosition: Number(pos),\n   PositionState: Number(posstate)\n }\n} else if(posstate === \"2\") {\n msg.payload={\n   CurrentPosition: Number(pos),\n   PositionState: Number(posstate)\n }\n} else  {\n msg.payload={\n   CurrentPosition: Number(pos),\n   PositionState: Number(posstate)\n }\n}\nreturn msg;",
              "outputs": 1,
              "noerr": 0,
              "x": 590,
              "y": 200,
              "wires": [
                  [
                      "432490.00908b7"
                  ]
              ]
          },
          {
              "id": "cf23e464.8cc838",
              "type": "join",
              "z": "2a5d5250.f178be",
              "name": "",
              "mode": "custom",
              "build": "array",
              "property": "payload",
              "propertyType": "msg",
              "key": "topic",
              "joiner": "\\n",
              "joinerType": "str",
              "accumulate": false,
              "timeout": "",
              "count": "2",
              "reduceRight": false,
              "reduceExp": "",
              "reduceInit": "",
              "reduceInitType": "num",
              "reduceFixup": "",
              "x": 390,
              "y": 200,
              "wires": [
                  [
                      "1056fa0c.2aba86"
                  ]
              ]
          },
          {
              "id": "55c29aac.7d8e64",
              "type": "homekit-bridge",
              "z": "",
              "bridgeName": "HomeBroker",
              "pinCode": "123-45-678",
              "port": "",
              "allowInsecureRequest": false,
              "manufacturer": "ioBroker",
              "model": "ioBroker",
              "serialNo": "1337",
              "customMdnsConfig": false,
              "mdnsMulticast": true,
              "mdnsInterface": "",
              "mdnsPort": "",
              "mdnsIp": "",
              "mdnsTtl": "",
              "mdnsLoopback": true,
              "mdnsReuseAddr": true,
              "allowMessagePassthrough": false
          }
      ]
      
      posted in Node-Red
      M
      magic2910

    Latest posts made by magic2910

    • RE: Yahka: Rollladen Homematic IP anhalten / Position State

      Hallo zusammen,
      ich habe es per Nodered hinbekommen.

      https://forum.iobroker.net/topic/34922/homematic-ip-rolladen-hmip-broll-in-homekit?_=1642083460132

      posted in ioBroker Allgemein
      M
      magic2910
    • RE: Test Adapter EnOcean v0.5.x

      @jey-cee Alles klar! Direkt mal einen bestellt, ich bin gespannt! Vielen Dank!

      posted in Tester
      M
      magic2910
    • RE: Test Adapter EnOcean v0.5.x

      @jey-cee Danke, das erklärt es 😃
      Nutzt jemand das FAM14 per USB? Oder muss ich mir einen enocean Stick anschaffen?

      Gruss magic

      posted in Tester
      M
      magic2910
    • RE: Test Adapter EnOcean v0.5.x

      Hakllo zusammen,

      nutzt jemand den Adapter mit einem Eltako FGW14-USB? Evtl scheitert es bei mir auch aktuell am Ser2Net. Irgendwie bekomme ich nichts eingelernt 😞

      Gruss mag!c

      posted in Tester
      M
      magic2910
    • RE: Xiaomi Mijia Multi Gateway (Zigbee 3)

      @muchul Hmm ich glaub dafür lege ich es wieder in den Schrank und warte auf eine ioBroker integration.

      posted in Marktplatz
      M
      magic2910
    • RE: Xiaomi Mijia Multi Gateway (Zigbee 3)

      @muchul Was hälst du von 20€zzgl Versand?
      Das Teil liegt hier nur rum, dafür ist es eigentlich zu Schade 😉

      posted in Marktplatz
      M
      magic2910
    • Xiaomi Mijia Multi Gateway (Zigbee 3)
      Hersteller "Xiaomi Mijia"
      Model "Multi Gateway"
      Anzahl 1
      *Preis pro Stück 25 €
      Versand "Ja, 4,99 €, per DHL Paket"

      "Xiaomi Multi Gateway (Neue Version mit Zigbee 3.0)Funktioniert über HASS im iobroker. Freischaltung der Ports habe ich schon durchgeführt.
      Näheres auch im Artikel:https://forum.iobroker.net/topic/29153/xiaomi-multi-gateway-neues-gateway-inkl-zigbee

      Es handelt sich um dieses hier: https://www.amazon.de/Multifunktions-Gateway-Multi-Mode-Kompatibel-Bluetooth/dp/B0185GS1UQ/ref=asc_df_B0185GS1UQ/?tag=googshopde-21&linkCode=df0&hvadid=447530082948&hvpos=&hvnetw=g&hvrand=115017604091543726&hvpone=&hvptwo=&hvqmt=&hvdev=c&hvdvcmdl=&hvlocint=&hvlocphy=9042271&hvtargid=pla-951755039935&psc=1&th=1&psc=1/30"

      *Die Angabe vom Preis ist verpflichtend, siehe Marktplatz Regeln.

      posted in Marktplatz
      M
      magic2910
    • RE: Shelly 4 Pro (insg 7 Stück)

      5 Stk noch verfügbar

      posted in Marktplatz
      M
      magic2910
    • RE: Shelly 4 Pro (insg 7 Stück)

      @Tobi68 können wir gerne machen, 1 oder 2 ?

      posted in Marktplatz
      M
      magic2910
    • RE: (HomeKit)-Klingel

      @invidianer Aktuell fällt mir da die Netatmo Doorbell ein. War aber irgendwie nicht davon überzeugt und habe sie zurückgeschickt. Logitech hat eine in den USA vorgestellt, sieht auch nicht verkehrt aus (hat wohl auch Homekit Secure Video, die Netatmo bekommt das wohl irgendwann)

      posted in Hardware
      M
      magic2910
    Community
    Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
    The ioBroker Community 2014-2023
    logo