Navigation

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

    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

    I
    • Profile
    • Following 0
    • Followers 0
    • Topics 11
    • Posts 26
    • Best 0
    • Groups 0

    iobroker-6043

    @iobroker-6043

    0
    Reputation
    43
    Profile views
    26
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    iobroker-6043 Follow

    Latest posts made by iobroker-6043

    • RE: IoBroker und Unify Controller

      Hi Jens

      Super Sache hab mir das Plug-in installiert und die Instanz konfiguriert. Refresh Intervall ist 60s.

      Im Object tree ist unify.0 sichtbar.

      Die Daten sind jedoch nicht synchron. Ich sehe im iobroker Clients, die im Unify Controller nicht mehr sichtbar sein.

      Das auch nach 5 Minuten.

      Eine Idee, was ich machen könnte.

      posted in Skripten / Logik
      I
      iobroker-6043
    • IoBroker und Unify Controller

      Hi Comunity

      Habe mir einen Ubiquity WLAN AP zugelegt und den Unify Controller auf einem RasPi am drehen.

      Für presence control steht ja das API auf dem Controller zur Verfügung. Dazu muss man jedoch angemeldet sein.

      Habe folgendes gefunden :

      curl 'https://controller:8443/api/login' –data-binary '{"username":"usernamegoeshere","password":"passwordgoeshere","strict":true}' --compressed --insecure -c cookies.txt

      Das liefert das cookies.txt.

      Wie kann ich mich damit nun anmelden ?

      curl --insecure -b cookies.txt -c cookies.txt 'https://controller:8443/api/s/default/stat/device' > output.json

      posted in Skripten / Logik
      I
      iobroker-6043
    • Iobroker, Wert von mysensors an CCU übergeben

      Hallo Community

      Kriege meine Temperaturwerde von mysensors/nodeMCU TempSensor.

      Möchte diesen Wert in eine CCU Systemvariable schreiben.

      setState('hm-rega.0.5237', '"mysensors.0.192_168_1_103.0.0_TEMP.V_TEMP"/192_168_1_103.0.0_TEMP.V_TEMP/');

      {

      "common": {

      "name": "192_168_1_103.0.0_TEMP.V_TEMP",

      "type": "string",

      "role": "value.temperature",

      "min": 0,

      "def": 0,

      "read": true,

      "write": false

      },

      "native": {

      "ip": "192.168.1.103",

      "id": "0",

      "childId": "0",

      "subType": "S_TEMP",

      "varType": "V_TEMP",

      "subTypeNum": 6,

      "varTypeNum": 0

      },

      "acl": {

      "object": 1638,

      "owner": "system.user.admin",

      "ownerGroup": "system.group.administrator",

      "state": 1638

      },

      "_id": "mysensors.0.192_168_1_103.0.0_TEMP.V_TEMP",

      "type": "state"

      }

      posted in Skripten / Logik
      I
      iobroker-6043
    • RE: Sending messages to iobroker instance

      ! ````
      unsigned long SLEEP_TIME = 30000; // Sleep time between reads (in milliseconds)
      OneWire oneWire(ONE_WIRE_BUS); // Setup a oneWire instance to communicate with any OneWire devices (not just Maxim/Dallas temperature ICs)
      DallasTemperature sensors(&oneWire); // Pass the oneWire reference to Dallas Temperature.
      float lastTemperature[MAX_ATTACHED_DS18B20];
      int numSensors=0;
      bool receivedConfig = false;
      bool metric = true;
      // Initialize temperature message
      MyMessage msg(0,V_TEMP);
      ! void setup()
      {
      // Startup up the OneWire library
      sensors.begin();
      // requestTemperatures() will not block current thread
      sensors.setWaitForConversion(false);
      }
      ! void presentation() {
      // Send the sketch version information to the gateway and Controller
      // sendSketchInfo("Temperature Sensor", "1.1");
      // Fetch the number of attached temperature sensors
      numSensors = sensors.getDeviceCount();
      // Present all sensors to controller
      present(0, S_TEMP);
      }
      ! void loop()
      {
      // Fetch temperatures from Dallas sensors
      sensors.requestTemperatures();
      Serial.print("-------------------------------------------->Temperature for the device 1 (index 0) is: ");
      Serial.println(sensors.getTempCByIndex(0));
      }

      posted in ioBroker Allgemein
      I
      iobroker-6043
    • Sending messages to iobroker instance

      Hello community

      I have my NodeMCU sketch up and running. In the serial monitor it looks ok, but the controller (iobroker with mysensors instance)

      does not receive any messages. I can read the temperature, but then the sketch runs into an exception and does a stack trace.

      ?? Best regards and any help is appreciated.

      connected with ho….., channel 1

      dhcp client start...

      chg_B1:-40

      .ip:192.168.1.103,mask:255.255.0.0,gw:192.168.1.1

      .IP: 192.168.1.103

      –------------------------------------------>Temperature for the device 1 (index 0) is: 24.00

      Fatal exception 9(LoadStoreAlignmentCause):

      epc1=0x402026c0, epc2=0x00000000, epc3=0x00000000, excvaddr=0x0000002f, depc=0x00000000

      Exception (9):

      epc1=0x402026c0 epc2=0x00000000 epc3=0x00000000 excvaddr=0x0000002f depc=0x00000000

      ctx: cont

      sp: 3ffef410 end: 3ffef680 offset: 01a0

      stack>>>

      3ffef5b0: 3ffef600 3ffee638 00000008 40205ca0

      3ffef5c0: 3ffe8750 00000000 000000ff 40207270

      3ffef5d0: ffffffff 00000080 3ffee638 00000004

      3ffef5e0: 000000e7 3ffef990 3ffef6f8 3ffee650

      3ffef5f0: 3fffdad0 3ffef70f 3ffef6f8 402039c8

      3ffef600: 3ffef710 00000000 3ffef6cc 40204095

      3ffef610: 3fffdad0 00000000 00000006 40202336

      3ffef620: 3ffe892c 3ffee61c 3fff0d6c 3ffee650

      3ffef630: 3fffdad0 00000000 00000005 40204365

      3ffef640: 3fffdad0 00000000 3ffee5f0 402044f5

      3ffef650: 00000000 00000000 3ffee5f0 40204720

      3ffef660: 3fffdad0 00000000 3ffee5f0 4020474c

      3ffef670: feefeffe feefeffe 3ffee660 40100114

      <<<stack<<<< r=""></stack<<<<>

      posted in ioBroker Allgemein
      I
      iobroker-6043
    • RE: [fixed]iobroker & mysensors, WLAN joined, Instanz keine Verbindung

      Oh, mea culpa 😞

      Die Konfig des controllers fehlt.

      #define MY_CONTROLLER_IP_ADDRESS 192, 168,…..

      posted in ioBroker Allgemein
      I
      iobroker-6043
    • [fixed]iobroker & mysensors, WLAN joined, Instanz keine Verbindung

      Hallo community

      Kann mir da jemand helfen ? Habe eine nodeMCU und das mysensors gateway läuft. Hier das Log

      0;255;3;0;9;Starting gateway (RRNGE-, 2.0.0)

      0;255;3;0;9;TSM:INIT

      0;255;3;0;9;TSM:RADIO:OK

      0;255;3;0;9;TSM:GW MODE

      0;255;3;0;9;TSM:READY

      scandone

      f 0, scandone

      state: 0 -> 2 (b0)

      state: 2 -> 3 (0)

      state: 3 -> 5 (10)

      add 0

      aid 2

      cnt

      connected with ho…....., channel 6

      dhcp client start...

      chg_B1:-40

      .ip:192.168.1.153,mask:255.255.0.0,gw:192.168.1.1

      .IP: 192.168.1.153

      0;255;3;0;9;No registration required

      0;255;3;0;9;Init complete, id=0, parent=0, distance=0, registration=1

      pm open,type:2 0

      0;255;3;0;9;TSP:SANCHK:OK

      0;255;3;0;9;TSP:SANCHK:OK

      0;255;3;0;9;TSP:SANCHK:OK

      0;255;3;0;9;TSP:SANCHK:OK

      Die Instanzkonfig.

      Type: UDP Server

      Bind: Listen on all IP's

      Port: 5003 ( ist in der mysensors config auch 5003 )

      Connection timeout: 60000 ms

      Inclusion mode timeout: 60000 ms

      Der Status bleibt auf [Gelb], –> connected to mysensors : false

      Stehe da schon etwas am Berg :roll:

      posted in ioBroker Allgemein
      I
      iobroker-6043
    • RE: Sonos und sayit Instanz, sayit findet Sonos Webserver nicht

      Oh Mann, wer liest ist klar im Vorteil 🙂

      npm install iobroker.web –production --prefix "/opt/iobroker" (System call)

      Bion davon ausgegangen dass der Sonos Webserver gemeint ist, klappt !!

      posted in ioBroker Allgemein
      I
      iobroker-6043
    • Sonos und sayit Instanz, sayit findet Sonos Webserver nicht

      Hallo Leute

      Habe mir eine SONOS und eine sayit Instanz Konfiguriert. Sonos Webcontroller funktioniert, Port 8080, beim sayit Adapter kann ich Sonos auswählen, sehe die beiden Sonos:AMP und Sonos:Play3, was jedoch nicht geht, ist die Auswahl von

      Device: sonos.0.root.192_168…

      Web instance:

      Web server IP:

      Die beiden Drop-downs sind leer, kann Audio nur auf dem System abspielen.

      Beide Instanzen (Sonos und sayit sind grün), Sonos Version 0.1.10, sayit Version 1.0.0

      Was gilt es hier noch zu konfigurieren ?

      Hier die log Einträge :

      sayit-0 2016-08-24 07:52:35.411 error Cannot read information about "null". No web server is active

      sayit-0 2016-08-24 07:52:35.310 info Upload announce mp3 files

      sayit-0 2016-08-24 07:52:35.272 info starting. Version 1.0.0 in /opt/iobroker/node_modules/iobroker.sayit

      host-raspberrypi01 2016-08-24 07:52:32.919 info instance system.adapter.sayit.0 started with pid 10823

      host-raspberrypi01 2016-08-24 07:52:32.892 info object change system.adapter.sayit.0

      sonos-0 2016-08-24 07:51:06.390 info http sonos server listening on port 8080

      sonos-0 2016-08-24 07:51:06.217 info starting. Version 0.1.10 in /opt/iobroker/node_modules/iobroker.sonos

      host-raspberrypi01 2016-08-24 07:51:02.992 info instance system.adapter.sonos.0 started with pid 10782

      posted in ioBroker Allgemein
      I
      iobroker-6043
    • RE: Iobroker kann auf neuem raspi3 nicht mehr installiert werden

      Ja das sind die Befehle, hat bis vor zwei Wochen geklappt. warum wird den nodejs nicht installiert ?

      sudo apt-get update && sudo apt-get upgrade

      curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -

      sudo apt-get install -y build-essential python-rpi.gpio nodejs

      reboot

      sudo mkdir /opt/iobroker

      sudo chmod 777 /opt/iobroker

      cd /opt/iobroker

      sudo npm install iobroker –unsafe-perm

      Installiert ist Jessie Light

      posted in ioBroker Allgemein
      I
      iobroker-6043
    Community
    Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
    The ioBroker Community 2014-2023
    logo