Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. Adapter: maxcul

    NEWS

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    Adapter: maxcul

    This topic has been deleted. Only users with topic management privileges can see it.
    • Bluefox
      Bluefox last edited by

      @bowao:

      Hallo,

      danke an Bluefox für diesen Adapter. Nun kann ich auch ohne Cloud-gedöns meine Heizungsthermostate steuern.

      Ich habe MAX! Heizungsthermostate Basic mit Fensterkontakten über Scripte gekoppelt. Kein Cube. Kein Wandthermostat.

      Verbindung über einem Selbstbau CUL.

      Beim Experimentieren mit dem Adapter ist mir aufgefallen, dass das Senden der 'config' und der 'valveConfig' zum Thermostat in einem Absturz des Adapters endet.

      Hab daraufhin mal ein bischen am Code gefrickelt. Funktioniert nun einwandfrei.

      Hier die diffs der geänderten Dateien. Vielleicht fließt das in einer der nächsten Versionen mit ein.

      iobroker.maxcul Version 0.2.3

      main.js:

      ! ````
      238c238
      < adapter.getForeignState(channel + '.comfortTemperature', function (err, state) {


              adapter.getForeignState(channel + '.config.comfortTemperature', function (err, state) {
      

      249c249
      < adapter.getForeignState(channel + '.ecoTemperature', function (err, state) {

              adapter.getForeignState(channel + '.config.ecoTemperature', function (err, state) {
      

      252c252
      < state.val = 21;

                      state.val = 17;
      

      260c260
      < adapter.getForeignState(channel + '.minimumTemperature', function (err, state) {

              adapter.getForeignState(channel + '.config.minimumTemperature', function (err, state) {
      

      271c271
      < adapter.getForeignState(channel + '.maximumTemperature', function (err, state) {

              adapter.getForeignState(channel + '.config.maximumTemperature', function (err, state) {
      

      282c282
      < adapter.getForeignState(channel + '.offset', function (err, state) {

              adapter.getForeignState(channel + '.config.offset', function (err, state) {
      

      293c293
      < adapter.getForeignState(channel + '.windowOpenTime', function (err, state) {

              adapter.getForeignState(channel + '.config.windowOpenTime', function (err, state) {
      

      296c296
      < state.val = 0;

                      state.val = 10;
      

      304c304
      < adapter.getForeignState(channel + '.windowOpenTemperature', function (err, state) {

              adapter.getForeignState(channel + '.config.windowOpenTemperature', function (err, state) {
      

      316,323c316,323
      < // comfortTemperature, ecoTemperature, minimumTemperature, maximumTemperature, offset, windowOpenTime, windowOpenTemperature
      < if (timers[channel].comfortTemperature !== undefined ||
      < timers[channel].ecoTemperature !== undefined ||
      < timers[channel].minimumTemperature !== undefined ||
      < timers[channel].maximumTemperature !== undefined ||
      < timers[channel].offset !== undefined ||
      < timers[channel].windowOpenTime !== undefined ||
      < timers[channel].windowOpenTemperature !== undefined) {

      // boostDuration, boostValvePosition, decalcificationDay, decalcificationHour, maxValveSetting, valveOffset
      if (timers[channel].boostDuration           !== undefined ||
          timers[channel].boostValvePosition      !== undefined ||
          timers[channel].decalcificationDay      !== undefined ||
          timers[channel].decalcificationHour     !== undefined ||
          timers[channel].maxValveSetting         !== undefined ||
          timers[channel].valveOffset             !== undefined) {
      

      327c327
      < adapter.getForeignState(channel + '.boostDuration', function (err, state) {

              adapter.getForeignState(channel + '.valveConfig.boostDuration', function (err, state) {
      

      330c330
      < state.val = 21;

                      state.val = 5;
      

      338c338
      < adapter.getForeignState(channel + '.boostValvePosition', function (err, state) {

              adapter.getForeignState(channel + '.valveConfig.boostValvePosition', function (err, state) {
      

      341c341
      < state.val = 21;

                      state.val = 100;
      

      349c349
      < adapter.getForeignState(channel + '.decalcificationDay', function (err, state) {

              adapter.getForeignState(channel + '.valveConfig.decalcificationDay', function (err, state) {
      

      352c352
      < state.val = 4.5;

                      state.val = 0;
      

      360c360
      < adapter.getForeignState(channel + '.decalcificationHour', function (err, state) {

              adapter.getForeignState(channel + '.valveConfig.decalcificationHour', function (err, state) {
      

      363c363
      < state.val = 30.5;

                      state.val = 12;
      

      371c371
      < adapter.getForeignState(channel + '.maxValveSetting', function (err, state) {

              adapter.getForeignState(channel + '.valveConfig.maxValveSetting', function (err, state) {
      

      374c374
      < state.val = 0;

                      state.val = 100;
      

      382c382
      < adapter.getForeignState(channel + '.valveOffset', function (err, state) {

              adapter.getForeignState(channel + '.valveConfig.valveOffset', function (err, state) {
      

      1231c1231
      < adapter.logger.debug("Updating time information for deviceId");

          adapter.log.debug("Updating time information for deviceId");
      
      
      maxcul.js:
      
      >! ````
      347c347
      <                 if (boostDuration >= i) {
      ---
      >                 if (boostDuration <= i) {
      373c373
      <             boost = boost.toString('hex');
      ---
      >             boost = boost.toString(16);
      376c376
      <             maxValveSetting = maxValveSetting.toString('hex');
      ---
      >             maxValveSetting = maxValveSetting.toString(16);
      379c379
      <             valveOffset = valveOffset.toString('hex');
      ---
      >             valveOffset = valveOffset.toString(16);
      382c382
      <             decalc = decalc.toString('hex');
      ---
      >             decalc = decalc.toString(16);
      384a385,386
      >             groupId = groupId.toString(16);
      >             if (groupId.length < 2) groupId = '0' + groupId;
      

      Danke bis denn.

      bowao `
      Ich habe durch Zufall diesen Thread entdeckt. Ich schaffe nicht mehr alle posts zu lesen.

      Kannst du github pull request machen?

      1 Reply Last reply Reply Quote 0
      • bowao
        bowao Developer last edited by

        github pull request ist gemacht.

        1 Reply Last reply Reply Quote 0
        • M
          Marcolotti last edited by

          Hallo,

          vielleicht kann sich ja nochmal jemand mit dem MAX Wandthermostat beschäftigen, der zwar angelernt wird aber keiner Daten anzeigt.

          maxcul.0	2017-06-21 08:08:50.111	info	Packet 0b010001123456090bb30000 sent but no response!
          maxcul.0	2017-06-21 08:08:49.903	info	deviceRequestTimeInformation: "090bb3"
          maxcul.0	2017-06-21 08:08:44.901	info	deviceRequestTimeInformation: "090bb3"
          maxcul.0	2017-06-21 08:08:40.403	info	deviceRequestTimeInformation: "090bb3"
          maxcul.0	2017-06-21 08:08:37.597	info	Packet 0b010001123456090bb30000 sent but no response!
          maxcul.0	2017-06-21 08:08:34.463	info	object maxcul.0.maxcul.0.KEQ0501999.valveConfig.valveOffset created
          maxcul.0	2017-06-21 08:08:34.441	info	object maxcul.0.maxcul.0.KEQ0501999.valveConfig.maxValveSetting created
          maxcul.0	2017-06-21 08:08:34.400	info	object maxcul.0.maxcul.0.KEQ0501999.valveConfig.decalcificationHour created
          maxcul.0	2017-06-21 08:08:34.380	info	object maxcul.0.maxcul.0.KEQ0501999.valveConfig.decalcificationDay created
          maxcul.0	2017-06-21 08:08:34.358	info	object maxcul.0.maxcul.0.KEQ0501999.valveConfig.boostValvePosition created
          maxcul.0	2017-06-21 08:08:34.340	info	object maxcul.0.maxcul.0.KEQ0501999.valveConfig.boostDuration created
          maxcul.0	2017-06-21 08:08:34.297	info	object maxcul.0.maxcul.0.KEQ0501999.rssi created
          maxcul.0	2017-06-21 08:08:34.279	info	object maxcul.0.maxcul.0.KEQ0501999.config.windowOpenTime created
          maxcul.0	2017-06-21 08:08:34.261	info	object maxcul.0.maxcul.0.KEQ0501999.config.windowOpenTemperature created
          maxcul.0	2017-06-21 08:08:34.241	info	object maxcul.0.maxcul.0.KEQ0501999.config.offset created
          maxcul.0	2017-06-21 08:08:34.199	info	object maxcul.0.maxcul.0.KEQ0501999.config.maximumTemperature created
          maxcul.0	2017-06-21 08:08:34.180	info	object maxcul.0.maxcul.0.KEQ0501999.config.minimumTemperature created
          maxcul.0	2017-06-21 08:08:34.163	info	object maxcul.0.maxcul.0.KEQ0501999.config.ecoTemperature created
          maxcul.0	2017-06-21 08:08:34.144	info	object maxcul.0.maxcul.0.KEQ0501999.config.comfortTemperature created
          maxcul.0	2017-06-21 08:08:34.095	info	object maxcul.0.maxcul.0.KEQ0501999.batteryLow created
          maxcul.0	2017-06-21 08:08:33.980	info	object maxcul.0.maxcul.0.KEQ0501999.rfError created
          maxcul.0	2017-06-21 08:08:33.961	info	object maxcul.0.maxcul.0.KEQ0501999.valvePosition created
          maxcul.0	2017-06-21 08:08:33.914	info	object maxcul.0.maxcul.0.KEQ0501999.desiredTemperature created
          maxcul.0	2017-06-21 08:08:33.830	info	object maxcul.0.maxcul.0.KEQ0501999.measuredTemperature created
          maxcul.0	2017-06-21 08:08:33.695	info	object maxcul.0.maxcul.0.KEQ0501999.mode created
          maxcul.0	2017-06-21 08:08:33.677	info	object maxcul.0.maxcul.0.KEQ0501999 created
          maxcul.0	2017-06-21 08:08:33.659	info	deviceRequestTimeInformation: "090bb3"
          maxcul.0	2017-06-21 08:08:33.643	info	PairDevice: {"src":"090bb3","type":3,"raw":"1003FF4B455130353031393939","rssi":-62.5}
          

          721_max.jpg

          Gruß Marco

          1 Reply Last reply Reply Quote 0
          • D
            Desa last edited by

            Hi Ihr,

            alsooo ich habe ein definitiv Großes Problem mit dem Adapter. würde ihn gerne nutzen aber es ist nicht Möglich.

            Ich fasse mal zusammen:

            Installation super.

            4 Kleine Max Thermostate verbunden und haben auch alle Ihre Informationen übertragen . alles toll.

            Leider nicht mit langem erfolg. ab einer zeit von 1 bis 6 Stunden schmiert mir der Cul ab und sendet dauerhaft ein Signal und störrt damit alles von 433 Mhz bis 862 Mhz im komplette bereich. Getestet mit 3 verschiedenen Culs und den letzten 3 Firmwares. Es ist auch nur mit einem Hard Reset möglich dieses zu beenden.

            Über fhem hingegen laufen diese ohne den CUL zu beeinträchtigen.

            Dieses Problem tritt auch nur bei mehreren Thermostaten auf . mit einem Alleine geht es wunderbar

            leider gib es auch keinen fehler zum Posten

            Lg Desa

            1 Reply Last reply Reply Quote 0
            • A
              andy6090 last edited by

              Hallo,

              leider habe ich genau das gleiche problem wie Desa.

              ich habe den RFLink und einen Maxcul.

              Maxcul habe ich mit verschieden culfw beschrieben, auch die alternatieve habe ich ausprobiert.

              Doch kein Erfolg, nach kurzer Zeit Sendeversuche des Cul und RFLinker geht auch nicht mehr, ziehe ich den MaxCul raus geht RFLinker sofort wieder.

              Hat jemand abhilfe ?????

              MfG

              1 Reply Last reply Reply Quote 0
              • A
                andy6090 last edited by

                So ,

                ich habe Heizkörperthermostate und Eco Schalter ( benutze ich für 433 MHZ Rolladenaktoren ).

                Da habe ich mal die Heizkörperthermostate aus den Objekten gelöscht, und der Cul Stürtzt nicht ab.

                Also liegt es an den Thermostaten.

                1 Reply Last reply Reply Quote 0
                • R
                  Redclaw last edited by

                  Hi, hab mein ganzes System ( 4 Thermostate + 3 Fensterkontakte ) jetzt scheinbar endlich am laufen.

                  hätte da aber ein kleines Problem. kann man den such/pairing modus irgendwie ausschalten? Hintergrund : bei mir im Haus ( mehrere Parteien ) hat auch einer ne Heizungssteuerung die auf 868Mhz funkt und ein Thermostat davon wird von der MAX!cul dauernd gefunden und versucht ihn anzusprechen. Generiert halt tonnenweise Fehler/debug Meldungen. Deswegen würd ich gern diesen Pairing mode abschalten. Geht das? Wenn ich diesen Fremdthermostat aus den objekten lösche , wird er nach spätestens 15 minuten wieder zugefügt. Oder kann man einzelne Objekte " deaktivieren" ?

                  1 Reply Last reply Reply Quote 0
                  • O
                    Okidoki3009 last edited by

                    hallo,

                    vielleicht kann mir jemand helfen!

                    Ich habe den Cul von Busware installiert und der läuft auch.

                    Ich habe 7Max-Thermostate ,die ich gerne in iobroker verbinden möchte.

                    Ich habe alle resetet ,leider bekomme ich nur 3 richtig angelernt die ich auch schalten kann.

                    Gibt es da einen bestimmten Trick ?

                    Dann bekomme ich dauernd solche Meldungen

                    maxcul.0	2018-10-16 09:37:03.781	info	Packet 0f01040312345606d97100121009a4b3 sent but no response!
                    maxcul.0	2018-10-16 09:36:51.772	info	deviceRequestTimeInformation: "06d971"
                    maxcul.0	2018-10-16 09:36:10.657	info	Poll device1 : 1, 17.5 ignored, still running
                    maxcul.0	2018-10-16 09:36:10.657	info	Poll device1 : 1, 16.5 ignored, still running
                    maxcul.0	2018-10-16 09:36:10.657	info	Poll device1 : 1, 15.5 ignored, still running
                    maxcul.0	2018-10-16 09:36:10.656	info	Poll device1 : 1, 16.5 ignored, still running
                    maxcul.0	2018-10-16 09:36:10.656	info	Poll device1 : 1, 17.5 ignored, still running
                    maxcul.0	2018-10-16 09:35:10.644	info	Poll device1 : 1, 17.5 ignored, still running
                    maxcul.0	2018-10-16 09:35:10.644	info	Poll device1 : 1, 16.5 ignored, still running
                    maxcul.0	2018-10-16 09:35:10.643	info	Poll device1 : 1, 15.5 ignored, still running
                    maxcul.0	2018-10-16 09:35:10.643	info	Poll device1 : 1, 16.5 ignored, still running
                    maxcul.0	2018-10-16 09:35:10.643	info	Poll device1 : 1, 17.5 ignored, still running
                    

                    Nach dem Anlernen kommt das

                    maxcul.0	2018-10-16 09:29:29.026	info	Packet 0b0100011234560448e80000 sent but no response!
                    maxcul.0	2018-10-16 09:29:16.972	info	Packet 0b0100011234560448e80000 sent but no response!
                    maxcul.0	2018-10-16 09:29:04.915	info	Packet 0b0100011234560448e80000 sent but no response!
                    maxcul.0	2018-10-16 09:28:52.856	info	Packet 0b0100011234560448e80000 sent but no response!
                    maxcul.0	2018-10-16 09:28:41.724	info	PairDevice: {"src":"0448e8","type":1,"raw":"1601FF4A4D4433303131373937","rssi":-75}
                    maxcul.0	2018-10-16 09:28:40.799	info	Packet 0b0100011234560448e80000 sent but no response!
                    maxcul.0	2018-10-16 09:28:36.725	info	PairDevice: {"src":"0448e8","type":1,"raw":"1601FF4A4D4433303131373937","rssi":-75}
                    maxcul.0	2018-10-16 09:28:31.940	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.valveOffset created
                    maxcul.0	2018-10-16 09:28:31.933	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.maxValveSetting created
                    maxcul.0	2018-10-16 09:28:31.926	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.decalcificationHour created
                    maxcul.0	2018-10-16 09:28:31.919	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.decalcificationDay created
                    maxcul.0	2018-10-16 09:28:31.910	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.boostValvePosition created
                    maxcul.0	2018-10-16 09:28:31.901	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.boostDuration created
                    maxcul.0	2018-10-16 09:28:31.892	info	object maxcul.0.maxcul.0.JMD3011797.rssi created
                    maxcul.0	2018-10-16 09:28:31.883	info	object maxcul.0.maxcul.0.JMD3011797.config.windowOpenTime created
                    maxcul.0	2018-10-16 09:28:31.874	info	object maxcul.0.maxcul.0.JMD3011797.config.windowOpenTemperature created
                    maxcul.0	2018-10-16 09:28:31.865	info	object maxcul.0.maxcul.0.JMD3011797.config.offset created
                    maxcul.0	2018-10-16 09:28:31.856	info	object maxcul.0.maxcul.0.JMD3011797.config.maximumTemperature created
                    maxcul.0	2018-10-16 09:28:31.848	info	object maxcul.0.maxcul.0.JMD3011797.config.minimumTemperature created
                    maxcul.0	2018-10-16 09:28:31.833	info	object maxcul.0.maxcul.0.JMD3011797.config.ecoTemperature created
                    maxcul.0	2018-10-16 09:28:31.824	info	object maxcul.0.maxcul.0.JMD3011797.config.comfortTemperature created
                    maxcul.0	2018-10-16 09:28:31.816	info	object maxcul.0.maxcul.0.JMD3011797.batteryLow created
                    maxcul.0	2018-10-16 09:28:31.808	info	object maxcul.0.maxcul.0.JMD3011797.rfError created
                    maxcul.0	2018-10-16 09:28:31.793	info	object maxcul.0.maxcul.0.JMD3011797.valvePosition created
                    maxcul.0	2018-10-16 09:28:31.780	info	object maxcul.0.maxcul.0.JMD3011797.desiredTemperature created
                    maxcul.0	2018-10-16 09:28:31.766	info	object maxcul.0.maxcul.0.JMD3011797.measuredTemperature created
                    maxcul.0	2018-10-16 09:28:31.754	info	object maxcul.0.maxcul.0.JMD3011797.mode created
                    maxcul.0	2018-10-16 09:28:31.741	info	object maxcul.0.maxcul.0.JMD3011797 created
                    maxcul.0	2018-10-16 09:28:31.725	info	PairDevice: {"src":"0448e8","type":1,"raw":"1601FF4A4D4433303131373937","rssi":-75}
                    maxcul.0	2018-10-16 09:28:28.740	info	Packet 0b0100011234560448e80000 sent but no response!
                    maxcul.0	2018-10-16 09:28:26.929	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.valveOffset created
                    maxcul.0	2018-10-16 09:28:26.921	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.maxValveSetting created
                    maxcul.0	2018-10-16 09:28:26.915	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.decalcificationHour created
                    maxcul.0	2018-10-16 09:28:26.909	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.decalcificationDay created
                    maxcul.0	2018-10-16 09:28:26.901	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.boostValvePosition created
                    maxcul.0	2018-10-16 09:28:26.894	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.boostDuration created
                    maxcul.0	2018-10-16 09:28:26.888	info	object maxcul.0.maxcul.0.JMD3011797.rssi created
                    maxcul.0	2018-10-16 09:28:26.881	info	object maxcul.0.maxcul.0.JMD3011797.config.windowOpenTime created
                    maxcul.0	2018-10-16 09:28:26.874	info	object maxcul.0.maxcul.0.JMD3011797.config.windowOpenTemperature created
                    maxcul.0	2018-10-16 09:28:26.866	info	object maxcul.0.maxcul.0.JMD3011797.config.offset created
                    maxcul.0	2018-10-16 09:28:26.858	info	object maxcul.0.maxcul.0.JMD3011797.config.maximumTemperature created
                    maxcul.0	2018-10-16 09:28:26.850	info	object maxcul.0.maxcul.0.JMD3011797.config.minimumTemperature created
                    maxcul.0	2018-10-16 09:28:26.841	info	object maxcul.0.maxcul.0.JMD3011797.config.ecoTemperature created
                    maxcul.0	2018-10-16 09:28:26.834	info	object maxcul.0.maxcul.0.JMD3011797.config.comfortTemperature created
                    maxcul.0	2018-10-16 09:28:26.826	info	object maxcul.0.maxcul.0.JMD3011797.batteryLow created
                    maxcul.0	2018-10-16 09:28:26.818	info	object maxcul.0.maxcul.0.JMD3011797.rfError created
                    maxcul.0	2018-10-16 09:28:26.792	info	object maxcul.0.maxcul.0.JMD3011797.valvePosition created
                    maxcul.0	2018-10-16 09:28:26.778	info	object maxcul.0.maxcul.0.JMD3011797.desiredTemperature created
                    maxcul.0	2018-10-16 09:28:26.765	info	object maxcul.0.maxcul.0.JMD3011797.measuredTemperature created
                    maxcul.0	2018-10-16 09:28:26.752	info	object maxcul.0.maxcul.0.JMD3011797.mode created
                    maxcul.0	2018-10-16 09:28:26.736	info	object maxcul.0.maxcul.0.JMD3011797 created
                    maxcul.0	2018-10-16 09:28:26.725	info	PairDevice: {"src":"0448e8","type":1,"raw":"1601FF4A4D4433303131373937","rssi":-74.5}
                    maxcul.0	2018-10-16 09:28:22.230	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.valveOffset created
                    maxcul.0	2018-10-16 09:28:22.222	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.maxValveSetting created
                    maxcul.0	2018-10-16 09:28:22.215	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.decalcificationHour created
                    maxcul.0	2018-10-16 09:28:22.208	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.decalcificationDay created
                    maxcul.0	2018-10-16 09:28:22.199	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.boostValvePosition created
                    maxcul.0	2018-10-16 09:28:22.190	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.boostDuration created
                    maxcul.0	2018-10-16 09:28:22.180	info	object maxcul.0.maxcul.0.JMD3011797.rssi created
                    maxcul.0	2018-10-16 09:28:22.171	info	object maxcul.0.maxcul.0.JMD3011797.config.windowOpenTime created
                    maxcul.0	2018-10-16 09:28:22.163	info	object maxcul.0.maxcul.0.JMD3011797.config.windowOpenTemperature created
                    maxcul.0	2018-10-16 09:28:22.149	info	object maxcul.0.maxcul.0.JMD3011797.config.offset created
                    maxcul.0	2018-10-16 09:28:22.141	info	object maxcul.0.maxcul.0.JMD3011797.config.maximumTemperature created
                    maxcul.0	2018-10-16 09:28:22.133	info	object maxcul.0.maxcul.0.JMD3011797.config.minimumTemperature created
                    maxcul.0	2018-10-16 09:28:22.125	info	object maxcul.0.maxcul.0.JMD3011797.config.ecoTemperature created
                    maxcul.0	2018-10-16 09:28:22.117	info	object maxcul.0.maxcul.0.JMD3011797.config.comfortTemperature created
                    maxcul.0	2018-10-16 09:28:22.108	info	object maxcul.0.maxcul.0.JMD3011797.batteryLow created
                    maxcul.0	2018-10-16 09:28:22.100	info	object maxcul.0.maxcul.0.JMD3011797.rfError created
                    maxcul.0	2018-10-16 09:28:22.091	info	object maxcul.0.maxcul.0.JMD3011797.valvePosition created
                    maxcul.0	2018-10-16 09:28:22.082	info	object maxcul.0.maxcul.0.JMD3011797.desiredTemperature created
                    maxcul.0	2018-10-16 09:28:22.073	info	object maxcul.0.maxcul.0.JMD3011797.measuredTemperature created
                    maxcul.0	2018-10-16 09:28:21.750	info	object maxcul.0.maxcul.0.JMD3011797.mode created
                    maxcul.0	2018-10-16 09:28:21.735	info	object maxcul.0.maxcul.0.JMD3011797 created
                    maxcul.0	2018-10-16 09:28:21.724	info	PairDevice: {"src":"0448e8","type":1,"raw":"1601FF4A4D4433303131373937","rssi":-76}
                    maxcul.0	2018-10-16 09:28:16.959	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.valveOffset created
                    maxcul.0	2018-10-16 09:28:16.951	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.maxValveSetting created
                    maxcul.0	2018-10-16 09:28:16.940	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.decalcificationHour created
                    maxcul.0	2018-10-16 09:28:16.932	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.decalcificationDay created
                    maxcul.0	2018-10-16 09:28:16.924	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.boostValvePosition created
                    maxcul.0	2018-10-16 09:28:16.915	info	object maxcul.0.maxcul.0.JMD3011797.valveConfig.boostDuration created
                    maxcul.0	2018-10-16 09:28:16.906	info	object maxcul.0.maxcul.0.JMD3011797.rssi created
                    maxcul.0	2018-10-16 09:28:16.897	info	object maxcul.0.maxcul.0.JMD3011797.config.windowOpenTime created
                    maxcul.0	2018-10-16 09:28:16.887	info	object maxcul.0.maxcul.0.JMD3011797.config.windowOpenTemperature created
                    maxcul.0	2018-10-16 09:28:16.880	info	object maxcul.0.maxcul.0.JMD3011797.config.offset created
                    maxcul.0	2018-10-16 09:28:16.871	info	object maxcul.0.maxcul.0.JMD3011797.config.maximumTemperature created
                    maxcul.0	2018-10-16 09:28:16.863	info	object maxcul.0.maxcul.0.JMD3011797.config.minimumTemperature created
                    maxcul.0	2018-10-16 09:28:16.853	info	object maxcul.0.maxcul.0.JMD3011797.config.ecoTemperature created
                    maxcul.0	2018-10-16 09:28:16.846	info	object maxcul.0.maxcul.0.JMD3011797.config.comfortTemperature created
                    maxcul.0	2018-10-16 09:28:16.838	info	object maxcul.0.maxcul.0.JMD3011797.batteryLow created
                    maxcul.0	2018-10-16 09:28:16.830	info	object maxcul.0.maxcul.0.JMD3011797.rfError created
                    maxcul.0	2018-10-16 09:28:16.821	info	object maxcul.0.maxcul.0.JMD3011797.valvePosition created
                    maxcul.0	2018-10-16 09:28:16.809	info	object maxcul.0.maxcul.0.JMD3011797.desiredTemperature created
                    maxcul.0	2018-10-16 09:28:16.787	info	object maxcul.0.maxcul.0.JMD3011797.measuredTemperature created
                    maxcul.0	2018-10-16 09:28:16.770	info	object maxcul.0.maxcul.0.JMD3011797.mode created
                    maxcul.0	2018-10-16 09:28:16.754	info	object maxcul.0.maxcul.0.JMD3011797 created
                    maxcul.0	2018-10-16 09:28:16.726	info	PairDevice: {"src":"0448e8","type":1,"raw":"1601FF4A4D4433303131373937","rssi":-73.5}
                    
                    

                    Danke euch

                    1 Reply Last reply Reply Quote 0
                    • S
                      Safti last edited by

                      bekomm ebenfall häufiger die Meldung Packet XXXXXXXXXXXXXXXXXXXXX sent but no response!

                      dann aktualisieren sich die Daten des Thermostats auch nicht mehr

                      weiß jemand woran es liegen könnte?

                      Benutze einen nanocul.

                      Die Signalstärken liegen zwischen -50dBm und ca. -72dBm

                      Gruß

                      1 Reply Last reply Reply Quote 0
                      • P
                        Pascal09 last edited by

                        Ich hab mal ne Frage zu der Window open Time.

                        Die funktioniert nur wenn man ein Fensterkontakt direkt koppelt oder?

                        Mal angenommen es ist nichts eingetragen und das Fenster wird geöffnet, bleibt die Temperatur dann bis zum schließen?

                        Und gibt es ein State um dem Heizkörperventil (über iobroker) beim Fenster öffnen direkt den Status mitzuteilen oder muss man im schlimmsten Fall immer ein paar Minuten warten bis es übertragen wird?

                        1 Reply Last reply Reply Quote 0
                        • First post
                          Last post

                        Support us

                        ioBroker
                        Community Adapters
                        Donate

                        826
                        Online

                        31.7k
                        Users

                        79.8k
                        Topics

                        1.3m
                        Posts

                        14
                        21
                        14371
                        Loading More Posts
                        • Oldest to Newest
                        • Newest to Oldest
                        • Most Votes
                        Reply
                        • Reply as topic
                        Log in to reply
                        Community
                        Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                        The ioBroker Community 2014-2023
                        logo