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. ioBroker Allgemein
  4. Einstellungen von Shuttercontrol

NEWS

  • Neuer ioBroker-Blog online: Monatsrückblick März/April 2026
    BluefoxB
    Bluefox
    8
    1
    825

  • Verwendung von KI bitte immer deutlich kennzeichnen
    HomoranH
    Homoran
    10
    1
    620

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

Einstellungen von Shuttercontrol

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
43 Beiträge 5 Kommentatoren 4.0k Aufrufe 7 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.
  • S StealthAngel

    @simatec said in Einstellungen von Shuttercontrol:

    @stealthangel Stelle mal in den Rollladen Einstellungen die Automatik auch bei geöffneten Fenster ein.

    Buero1.JPG

    Passt der Wert 0 für den Fensterkontakt?

    Buero FK.JPG

    Ich denke, das passt.

    Ich habe jetzt in den Sourcecode mal ein paar Debugs eingebaut.

    In die if Bedingung

    if ((currentValue === mustValue || currentValue === mustValueTilted) && shutterSettings[s].tempSensor != '' || (currentValue != mustValue && currentValue != mustValueTilted && shutterSettings[s].autoDrive != 'onlyDown' && shutterSettings[s].autoDrive != 'off') || (shutterSettings[s].triggerID == '')) {
    .......
    

    springt er schon nicht mehr rein.

    Die Objekte sind

    CurrentValue: 0
    mustValue: 0
    mustValueTilted: 0
    shutterSettungs.temp:
    shutterSettings[s].autoDrive: upDown
    shutterSettings[s].triggerID: hm-rpc.1.00155D898A87A1.1.STATE
    shutterSettings[s].driveAfterClose: false
    

    Mit meinen stümperhaften Programmierkenntnissen würde ich sagen es liegt an

    shutterSettings[s].tempSensor != ''
    

    Aber ich habe keinen Temperatursensor :-(

    Was kann ich da tun?
    Danke für Eure Hilfe....

    simatecS Offline
    simatecS Offline
    simatec
    Developer Most Active
    schrieb am zuletzt editiert von
    #24

    @stealthangel sagte in Einstellungen von Shuttercontrol:

    Aber ich habe keinen Temperatursensor

    Trage doch mal zum testen irgendeine ID bei tempSensor ein.
    Damit könnte man den Fehler erstmal eingrenzen

    • Besuche meine Github Seite
    • Beitrag hat geholfen oder willst du mich unterstützen
    • HowTo Restore ioBroker
    S 1 Antwort Letzte Antwort
    0
    • S StealthAngel

      @tolkin said in Einstellungen von Shuttercontrol:

      ....sagen wie ich bei den neuen Shelly's 2PM auf Positon fahren kann?

      Schau mal hier:
      Shelly Gen 2 Device API

      und hier:
      MQTT Control

      Bei weiteren Fragen besser ein neues Thema aufmachen, das es nix mit den Shuttercontrol Adapter zu tun hat....

      simatecS Offline
      simatecS Offline
      simatec
      Developer Most Active
      schrieb am zuletzt editiert von simatec
      #25

      @stealthangel Teste bitte mal die v1.4.24 ... Da sollte es egal sein, ob du einen Temperatursensor hast

      • Besuche meine Github Seite
      • Beitrag hat geholfen oder willst du mich unterstützen
      • HowTo Restore ioBroker
      S 1 Antwort Letzte Antwort
      0
      • simatecS simatec

        @stealthangel sagte in Einstellungen von Shuttercontrol:

        Aber ich habe keinen Temperatursensor

        Trage doch mal zum testen irgendeine ID bei tempSensor ein.
        Damit könnte man den Fehler erstmal eingrenzen

        S Offline
        S Offline
        StealthAngel
        schrieb am zuletzt editiert von
        #26

        @simatec said in Einstellungen von Shuttercontrol:

        Damit könnte man den Fehler erstmal eingrenzen

        Ich habe vermutlich den Fehler gefunden :-) Mit Temp-Sensor geht es.

        Das ist aber gar nicht nötig. In der "sunProtect.js" ist in ca. Zeile 1251 steht die if-Bedingung

        if ((currentValue === mustValue || currentValue === mustValueTilted) && shutterSettings[s].tempSensor != '' || (currentValue != mustValue && currentValue != mustValueTilted && shutterSettings[s].autoDrive != 'onlyDown' && shutterSettings[s].autoDrive != 'off') || (shutterSettings[s].triggerID == '')) {
        

        In der ganzen if-Bedingung wird "shutterSettings[].tempSensor" aber nicht gebraucht.
        Aus meiner Sicht müsste

        && shutterSettings[].tempSensor != ''
        

        ersatzlos gelöscht werden. Habe ich auch ausprobiert. Damit klappt es.

        @simatec said in Einstellungen von Shuttercontrol:

        @stealthangel Teste bitte mal die v1.4.24 ... Da sollte es egal sein, ob du einen Temperatursensor hast

        Lade ich gleich mal und Teste....

        Danke für Eure Hilfe

        1 Antwort Letzte Antwort
        0
        • simatecS simatec

          @stealthangel Teste bitte mal die v1.4.24 ... Da sollte es egal sein, ob du einen Temperatursensor hast

          S Offline
          S Offline
          StealthAngel
          schrieb am zuletzt editiert von
          #27

          @simatec said in Einstellungen von Shuttercontrol:

          @stealthangel Teste bitte mal die v1.4.24 ... Da sollte es egal sein, ob du einen Temperatursensor hast

          Jau, damit klappt es. Super, danke.

          Allerdings war es jetzt so, dass als sunProtect bei 210° Azimut gestartet wurde ist der Rollladen 3x innerhalb von wenigen Minuten runter und rauf gefahren 😨

          2023-04-11 14:55:02.018 - info: shuttercontrol.0 (175760) Sunprotect #416 Set ID: Buero value: 30%
          2023-04-11 14:55:02.037 - info: mqtt.0 (955) send2Server mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos[shellies/Buero/Rolladen/roller/0/command/pos]
          2023-04-11 14:55:29.544 - info: shuttercontrol.0 (175760) Lightsensor #5 Set ID: Buero value: 100%
          2023-04-11 14:55:29.552 - info: mqtt.0 (955) send2Server mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos[shellies/Buero/Rolladen/roller/0/command/pos]
          2023-04-11 14:55:31.535 - info: shuttercontrol.0 (175760) Sunprotect #416 Set ID: Buero value: 30%
          2023-04-11 14:55:31.542 - info: mqtt.0 (955) send2Server mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos[shellies/Buero/Rolladen/roller/0/command/pos]
          2023-04-11 14:57:59.509 - info: shuttercontrol.0 (175760) Lightsensor #5 Set ID: Buero value: 100%
          2023-04-11 14:57:59.519 - info: mqtt.0 (955) send2Server mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos[shellies/Buero/Rolladen/roller/0/command/pos]
          2023-04-11 14:58:01.499 - info: shuttercontrol.0 (175760) Sunprotect #416 Set ID: Buero value: 30%
          2023-04-11 14:58:01.505 - info: mqtt.0 (955) send2Server mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos[shellies/Buero/Rolladen/roller/0/command/pos]
          

          Das war mit der Version davor nicht. (Obwohl ich gestehen muss, das heute noch zusätzlich "autoDown auf false gesetzt war).

          Eine Idee dazu?....

          simatecS 1 Antwort Letzte Antwort
          0
          • S StealthAngel

            @simatec said in Einstellungen von Shuttercontrol:

            @stealthangel Teste bitte mal die v1.4.24 ... Da sollte es egal sein, ob du einen Temperatursensor hast

            Jau, damit klappt es. Super, danke.

            Allerdings war es jetzt so, dass als sunProtect bei 210° Azimut gestartet wurde ist der Rollladen 3x innerhalb von wenigen Minuten runter und rauf gefahren 😨

            2023-04-11 14:55:02.018 - info: shuttercontrol.0 (175760) Sunprotect #416 Set ID: Buero value: 30%
            2023-04-11 14:55:02.037 - info: mqtt.0 (955) send2Server mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos[shellies/Buero/Rolladen/roller/0/command/pos]
            2023-04-11 14:55:29.544 - info: shuttercontrol.0 (175760) Lightsensor #5 Set ID: Buero value: 100%
            2023-04-11 14:55:29.552 - info: mqtt.0 (955) send2Server mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos[shellies/Buero/Rolladen/roller/0/command/pos]
            2023-04-11 14:55:31.535 - info: shuttercontrol.0 (175760) Sunprotect #416 Set ID: Buero value: 30%
            2023-04-11 14:55:31.542 - info: mqtt.0 (955) send2Server mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos[shellies/Buero/Rolladen/roller/0/command/pos]
            2023-04-11 14:57:59.509 - info: shuttercontrol.0 (175760) Lightsensor #5 Set ID: Buero value: 100%
            2023-04-11 14:57:59.519 - info: mqtt.0 (955) send2Server mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos[shellies/Buero/Rolladen/roller/0/command/pos]
            2023-04-11 14:58:01.499 - info: shuttercontrol.0 (175760) Sunprotect #416 Set ID: Buero value: 30%
            2023-04-11 14:58:01.505 - info: mqtt.0 (955) send2Server mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos[shellies/Buero/Rolladen/roller/0/command/pos]
            

            Das war mit der Version davor nicht. (Obwohl ich gestehen muss, das heute noch zusätzlich "autoDown auf false gesetzt war).

            Eine Idee dazu?....

            simatecS Offline
            simatecS Offline
            simatec
            Developer Most Active
            schrieb am zuletzt editiert von
            #28

            @stealthangel was sagt der Debuglog?

            • Besuche meine Github Seite
            • Beitrag hat geholfen oder willst du mich unterstützen
            • HowTo Restore ioBroker
            S 1 Antwort Letzte Antwort
            0
            • simatecS simatec

              @stealthangel was sagt der Debuglog?

              S Offline
              S Offline
              StealthAngel
              schrieb am zuletzt editiert von
              #29

              @simatec said in Einstellungen von Shuttercontrol:

              @stealthangel was sagt der Debuglog?

              2023-04-12 14:50:00.010 - debug: shuttercontrol.0 (179737) calculate astrodata ...
              2023-04-12 14:50:00.010 - debug: shuttercontrol.0 (179737) Sun Azimut: 209.5°
              2023-04-12 14:50:00.011 - debug: shuttercontrol.0 (179737) Sun Elevation: 43.3°
              2023-04-12 14:50:09.334 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
              2023-04-12 14:52:53.560 - debug: shuttercontrol.0 (179737) Brightness sensor value: 4125
              2023-04-12 14:52:53.608 - debug: shuttercontrol.0 (179737) Lightsensor up Buero already up at: 100% - setting current action: up
              2023-04-12 14:53:03.561 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
              2023-04-12 14:55:00.007 - debug: shuttercontrol.0 (179737) calculate astrodata ...
              2023-04-12 14:55:00.008 - debug: shuttercontrol.0 (179737) Sun Azimut: 211.1°
              2023-04-12 14:55:00.008 - debug: shuttercontrol.0 (179737) Sun Elevation: 42.9°
              2023-04-12 14:55:02.018 - debug: shuttercontrol.0 (179737) Buero: Check basis for sunprotect. Height:100 > HeightDownSun: 30 AND Height:100 == currentHeight:100 AND currentHeight:100 == heightUp:100
              2023-04-12 14:55:02.019 - info: shuttercontrol.0 (179737) Sunprotect #416 Set ID: Buero value: 30%
              2023-04-12 14:55:02.070 - debug: shuttercontrol.0 (179737) #0 wait for shutter check started
              2023-04-12 14:55:02.069 - info: mqtt.0 (955) send2Server mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos[shellies/Buero/Rolladen/roller/0/command/pos]
              2023-04-12 14:55:02.099 - debug: shuttercontrol.0 (179737) Sunprotect for Buero is active
              2023-04-12 14:55:02.100 - debug: shuttercontrol.0 (179737) RangeMinus: 210 < 211.1RangePlus: 320 > 211.1
              2023-04-12 14:55:02.100 - debug: shuttercontrol.0 (179737) last automatic Action for Buero: down_Sunprotect
              2023-04-12 14:55:02.101 - debug: shuttercontrol.0 (179737) Sunprotect Buero old height: 100% new height: 30%
              2023-04-12 14:55:22.072 - debug: shuttercontrol.0 (179737) #0 wait for shutter check end
              2023-04-12 14:55:22.074 - debug: shuttercontrol.0 (179737) Shutter state changed: Buero old value = 100 new value = 30
              2023-04-12 14:55:22.074 - debug: shuttercontrol.0 (179737) #1 shutterName: Buero
              2023-04-12 14:55:22.074 - debug: shuttercontrol.0 (179737) #1 shutterState: 30 %
              2023-04-12 14:55:22.074 - debug: shuttercontrol.0 (179737) #1 currentAction: Manu_Mode
              2023-04-12 14:55:22.075 - debug: shuttercontrol.0 (179737) #1 triggerAction: Manu_Mode
              2023-04-12 14:55:22.075 - debug: shuttercontrol.0 (179737) #1 currentHeight: 30 %
              2023-04-12 14:55:22.075 - debug: shuttercontrol.0 (179737) #1 oldHeight: 100 %
              2023-04-12 14:55:22.075 - debug: shuttercontrol.0 (179737) #1 currentShutterState: activated
              2023-04-12 14:55:22.076 - debug: shuttercontrol.0 (179737) #1 currentShutterStateTime: 20 seconds
              2023-04-12 14:55:22.127 - debug: shuttercontrol.0 (179737) Buero drived manually to 30. Old value = 100. New value = 30
              2023-04-12 14:55:22.127 - debug: shuttercontrol.0 (179737) Buero Updated trigger action to Manu_Mode to prevent moving after window close
              2023-04-12 14:55:33.323 - debug: shuttercontrol.0 (179737) Brightness sensor value: 4104
              2023-04-12 14:55:33.354 - info: shuttercontrol.0 (179737) Lightsensor #5 Set ID: Buero value: 100%
              2023-04-12 14:55:33.361 - info: mqtt.0 (955) send2Server mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos[shellies/Buero/Rolladen/roller/0/command/pos]
              2023-04-12 14:55:33.362 - debug: shuttercontrol.0 (179737) #0 wait for shutter check started
              2023-04-12 14:55:33.419 - debug: shuttercontrol.0 (179737) last automatic Action for Buero: up_Brightness
              2023-04-12 14:55:33.420 - debug: shuttercontrol.0 (179737) save current height: 100% from Buero
              2023-04-12 14:55:43.325 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
              2023-04-12 14:55:53.364 - debug: shuttercontrol.0 (179737) #0 wait for shutter check end
              2023-04-12 14:55:53.365 - debug: shuttercontrol.0 (179737) Buero Old value = 100. New value = 100. automatic is active
              2023-04-12 14:57:58.575 - debug: shuttercontrol.0 (179737) Brightness sensor value: 3967
              2023-04-12 14:57:58.629 - debug: shuttercontrol.0 (179737) Lightsensor up Buero already up at: 100% - setting current action: up
              2023-04-12 14:58:08.577 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
              2023-04-12 15:00:00.008 - debug: shuttercontrol.0 (179737) calculate astrodata ...
              2023-04-12 15:00:00.008 - debug: shuttercontrol.0 (179737) Sun Azimut: 212.7°
              2023-04-12 15:00:00.009 - debug: shuttercontrol.0 (179737) Sun Elevation: 42.5°
              2023-04-12 15:00:02.020 - debug: shuttercontrol.0 (179737) Buero: Check basis for sunprotect. Height:100 > HeightDownSun: 30 AND Height:100 == currentHeight:100 AND currentHeight:100 == heightUp:100
              2023-04-12 15:00:02.020 - info: shuttercontrol.0 (179737) Sunprotect #416 Set ID: Buero value: 30%
              2023-04-12 15:00:02.065 - info: mqtt.0 (955) send2Server mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos[shellies/Buero/Rolladen/roller/0/command/pos]
              2023-04-12 15:00:02.066 - debug: shuttercontrol.0 (179737) #0 wait for shutter check started
              2023-04-12 15:00:02.121 - debug: shuttercontrol.0 (179737) Sunprotect for Buero is active
              2023-04-12 15:00:02.121 - debug: shuttercontrol.0 (179737) RangeMinus: 210 < 212.7RangePlus: 320 > 212.7
              2023-04-12 15:00:02.121 - debug: shuttercontrol.0 (179737) last automatic Action for Buero: down_Sunprotect
              2023-04-12 15:00:02.121 - debug: shuttercontrol.0 (179737) Sunprotect Buero old height: 100% new height: 30%
              2023-04-12 15:00:09.576 - debug: shuttercontrol.0 (179737) Brightness sensor value: 3856
              2023-04-12 15:00:09.606 - debug: shuttercontrol.0 (179737) outsidetemperature changed: hm-rpc.1.00181D89B4E7B4.1.ACTUAL_TEMPERATURE Value: 10.6
              2023-04-12 15:00:09.672 - debug: shuttercontrol.0 (179737) Lightsensor up Buero already up at: 100% - setting current action: sunProtect
              2023-04-12 15:00:19.577 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
              2023-04-12 15:00:22.067 - debug: shuttercontrol.0 (179737) #0 wait for shutter check end
              2023-04-12 15:00:22.068 - debug: shuttercontrol.0 (179737) Shutter state changed: Buero old value = 100 new value = 30
              2023-04-12 15:00:22.069 - debug: shuttercontrol.0 (179737) Buero Old value = 100. New value = 30. automatic is active
              2023-04-12 15:03:10.046 - debug: shuttercontrol.0 (179737) Brightness sensor value: 4257
              2023-04-12 15:03:10.068 - debug: shuttercontrol.0 (179737) outsidetemperature changed: hm-rpc.1.00181D89B4E7B4.1.ACTUAL_TEMPERATURE Value: 10.5
              2023-04-12 15:03:10.130 - debug: shuttercontrol.0 (179737) Lightsensor up Buero already up at: 100% - setting current action: sunProtect
              2023-04-12 15:03:20.047 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
              2023-04-12 15:05:00.008 - debug: shuttercontrol.0 (179737) calculate astrodata ...
              2023-04-12 15:05:00.009 - debug: shuttercontrol.0 (179737) Sun Azimut: 214.3°
              2023-04-12 15:05:00.009 - debug: shuttercontrol.0 (179737) Sun Elevation: 42.1°
              2023-04-12 15:05:56.040 - debug: shuttercontrol.0 (179737) Brightness sensor value: 4471
              2023-04-12 15:05:56.083 - debug: shuttercontrol.0 (179737) Lightsensor up Buero already up at: 100% - setting current action: sunProtect
              2023-04-12 15:06:06.041 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
              2023-04-12 15:08:27.812 - debug: shuttercontrol.0 (179737) Brightness sensor value: 4399
              2023-04-12 15:08:27.839 - debug: shuttercontrol.0 (179737) outsidetemperature changed: hm-rpc.1.00181D89B4E7B4.1.ACTUAL_TEMPERATURE Value: 10.6
              2023-04-12 15:08:27.898 - debug: shuttercontrol.0 (179737) Lightsensor up Buero already up at: 100% - setting current action: sunProtect
              2023-04-12 15:08:37.813 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
              2023-04-12 15:10:00.014 - debug: shuttercontrol.0 (179737) calculate astrodata ...
              2023-04-12 15:10:00.014 - debug: shuttercontrol.0 (179737) Sun Azimut: 215.8°
              2023-04-12 15:10:00.015 - debug: shuttercontrol.0 (179737) Sun Elevation: 41.6°
              2023-04-12 15:10:45.049 - debug: shuttercontrol.0 (179737) Brightness sensor value: 4524
              2023-04-12 15:10:45.135 - debug: shuttercontrol.0 (179737) Lightsensor up Buero already up at: 100% - setting current action: sunProtect
              2023-04-12 15:10:55.050 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
              2023-04-12 15:12:47.794 - debug: shuttercontrol.0 (179737) Brightness sensor value: 4369
              2023-04-12 15:12:47.834 - debug: shuttercontrol.0 (179737) Lightsensor up Buero already up at: 100% - setting current action: sunProtect
              2023-04-12 15:12:57.795 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
              

              Danke für Deine Hilfe...

              simatecS 1 Antwort Letzte Antwort
              0
              • S StealthAngel

                @simatec said in Einstellungen von Shuttercontrol:

                @stealthangel was sagt der Debuglog?

                2023-04-12 14:50:00.010 - debug: shuttercontrol.0 (179737) calculate astrodata ...
                2023-04-12 14:50:00.010 - debug: shuttercontrol.0 (179737) Sun Azimut: 209.5°
                2023-04-12 14:50:00.011 - debug: shuttercontrol.0 (179737) Sun Elevation: 43.3°
                2023-04-12 14:50:09.334 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
                2023-04-12 14:52:53.560 - debug: shuttercontrol.0 (179737) Brightness sensor value: 4125
                2023-04-12 14:52:53.608 - debug: shuttercontrol.0 (179737) Lightsensor up Buero already up at: 100% - setting current action: up
                2023-04-12 14:53:03.561 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
                2023-04-12 14:55:00.007 - debug: shuttercontrol.0 (179737) calculate astrodata ...
                2023-04-12 14:55:00.008 - debug: shuttercontrol.0 (179737) Sun Azimut: 211.1°
                2023-04-12 14:55:00.008 - debug: shuttercontrol.0 (179737) Sun Elevation: 42.9°
                2023-04-12 14:55:02.018 - debug: shuttercontrol.0 (179737) Buero: Check basis for sunprotect. Height:100 > HeightDownSun: 30 AND Height:100 == currentHeight:100 AND currentHeight:100 == heightUp:100
                2023-04-12 14:55:02.019 - info: shuttercontrol.0 (179737) Sunprotect #416 Set ID: Buero value: 30%
                2023-04-12 14:55:02.070 - debug: shuttercontrol.0 (179737) #0 wait for shutter check started
                2023-04-12 14:55:02.069 - info: mqtt.0 (955) send2Server mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos[shellies/Buero/Rolladen/roller/0/command/pos]
                2023-04-12 14:55:02.099 - debug: shuttercontrol.0 (179737) Sunprotect for Buero is active
                2023-04-12 14:55:02.100 - debug: shuttercontrol.0 (179737) RangeMinus: 210 < 211.1RangePlus: 320 > 211.1
                2023-04-12 14:55:02.100 - debug: shuttercontrol.0 (179737) last automatic Action for Buero: down_Sunprotect
                2023-04-12 14:55:02.101 - debug: shuttercontrol.0 (179737) Sunprotect Buero old height: 100% new height: 30%
                2023-04-12 14:55:22.072 - debug: shuttercontrol.0 (179737) #0 wait for shutter check end
                2023-04-12 14:55:22.074 - debug: shuttercontrol.0 (179737) Shutter state changed: Buero old value = 100 new value = 30
                2023-04-12 14:55:22.074 - debug: shuttercontrol.0 (179737) #1 shutterName: Buero
                2023-04-12 14:55:22.074 - debug: shuttercontrol.0 (179737) #1 shutterState: 30 %
                2023-04-12 14:55:22.074 - debug: shuttercontrol.0 (179737) #1 currentAction: Manu_Mode
                2023-04-12 14:55:22.075 - debug: shuttercontrol.0 (179737) #1 triggerAction: Manu_Mode
                2023-04-12 14:55:22.075 - debug: shuttercontrol.0 (179737) #1 currentHeight: 30 %
                2023-04-12 14:55:22.075 - debug: shuttercontrol.0 (179737) #1 oldHeight: 100 %
                2023-04-12 14:55:22.075 - debug: shuttercontrol.0 (179737) #1 currentShutterState: activated
                2023-04-12 14:55:22.076 - debug: shuttercontrol.0 (179737) #1 currentShutterStateTime: 20 seconds
                2023-04-12 14:55:22.127 - debug: shuttercontrol.0 (179737) Buero drived manually to 30. Old value = 100. New value = 30
                2023-04-12 14:55:22.127 - debug: shuttercontrol.0 (179737) Buero Updated trigger action to Manu_Mode to prevent moving after window close
                2023-04-12 14:55:33.323 - debug: shuttercontrol.0 (179737) Brightness sensor value: 4104
                2023-04-12 14:55:33.354 - info: shuttercontrol.0 (179737) Lightsensor #5 Set ID: Buero value: 100%
                2023-04-12 14:55:33.361 - info: mqtt.0 (955) send2Server mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos[shellies/Buero/Rolladen/roller/0/command/pos]
                2023-04-12 14:55:33.362 - debug: shuttercontrol.0 (179737) #0 wait for shutter check started
                2023-04-12 14:55:33.419 - debug: shuttercontrol.0 (179737) last automatic Action for Buero: up_Brightness
                2023-04-12 14:55:33.420 - debug: shuttercontrol.0 (179737) save current height: 100% from Buero
                2023-04-12 14:55:43.325 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
                2023-04-12 14:55:53.364 - debug: shuttercontrol.0 (179737) #0 wait for shutter check end
                2023-04-12 14:55:53.365 - debug: shuttercontrol.0 (179737) Buero Old value = 100. New value = 100. automatic is active
                2023-04-12 14:57:58.575 - debug: shuttercontrol.0 (179737) Brightness sensor value: 3967
                2023-04-12 14:57:58.629 - debug: shuttercontrol.0 (179737) Lightsensor up Buero already up at: 100% - setting current action: up
                2023-04-12 14:58:08.577 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
                2023-04-12 15:00:00.008 - debug: shuttercontrol.0 (179737) calculate astrodata ...
                2023-04-12 15:00:00.008 - debug: shuttercontrol.0 (179737) Sun Azimut: 212.7°
                2023-04-12 15:00:00.009 - debug: shuttercontrol.0 (179737) Sun Elevation: 42.5°
                2023-04-12 15:00:02.020 - debug: shuttercontrol.0 (179737) Buero: Check basis for sunprotect. Height:100 > HeightDownSun: 30 AND Height:100 == currentHeight:100 AND currentHeight:100 == heightUp:100
                2023-04-12 15:00:02.020 - info: shuttercontrol.0 (179737) Sunprotect #416 Set ID: Buero value: 30%
                2023-04-12 15:00:02.065 - info: mqtt.0 (955) send2Server mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos[shellies/Buero/Rolladen/roller/0/command/pos]
                2023-04-12 15:00:02.066 - debug: shuttercontrol.0 (179737) #0 wait for shutter check started
                2023-04-12 15:00:02.121 - debug: shuttercontrol.0 (179737) Sunprotect for Buero is active
                2023-04-12 15:00:02.121 - debug: shuttercontrol.0 (179737) RangeMinus: 210 < 212.7RangePlus: 320 > 212.7
                2023-04-12 15:00:02.121 - debug: shuttercontrol.0 (179737) last automatic Action for Buero: down_Sunprotect
                2023-04-12 15:00:02.121 - debug: shuttercontrol.0 (179737) Sunprotect Buero old height: 100% new height: 30%
                2023-04-12 15:00:09.576 - debug: shuttercontrol.0 (179737) Brightness sensor value: 3856
                2023-04-12 15:00:09.606 - debug: shuttercontrol.0 (179737) outsidetemperature changed: hm-rpc.1.00181D89B4E7B4.1.ACTUAL_TEMPERATURE Value: 10.6
                2023-04-12 15:00:09.672 - debug: shuttercontrol.0 (179737) Lightsensor up Buero already up at: 100% - setting current action: sunProtect
                2023-04-12 15:00:19.577 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
                2023-04-12 15:00:22.067 - debug: shuttercontrol.0 (179737) #0 wait for shutter check end
                2023-04-12 15:00:22.068 - debug: shuttercontrol.0 (179737) Shutter state changed: Buero old value = 100 new value = 30
                2023-04-12 15:00:22.069 - debug: shuttercontrol.0 (179737) Buero Old value = 100. New value = 30. automatic is active
                2023-04-12 15:03:10.046 - debug: shuttercontrol.0 (179737) Brightness sensor value: 4257
                2023-04-12 15:03:10.068 - debug: shuttercontrol.0 (179737) outsidetemperature changed: hm-rpc.1.00181D89B4E7B4.1.ACTUAL_TEMPERATURE Value: 10.5
                2023-04-12 15:03:10.130 - debug: shuttercontrol.0 (179737) Lightsensor up Buero already up at: 100% - setting current action: sunProtect
                2023-04-12 15:03:20.047 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
                2023-04-12 15:05:00.008 - debug: shuttercontrol.0 (179737) calculate astrodata ...
                2023-04-12 15:05:00.009 - debug: shuttercontrol.0 (179737) Sun Azimut: 214.3°
                2023-04-12 15:05:00.009 - debug: shuttercontrol.0 (179737) Sun Elevation: 42.1°
                2023-04-12 15:05:56.040 - debug: shuttercontrol.0 (179737) Brightness sensor value: 4471
                2023-04-12 15:05:56.083 - debug: shuttercontrol.0 (179737) Lightsensor up Buero already up at: 100% - setting current action: sunProtect
                2023-04-12 15:06:06.041 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
                2023-04-12 15:08:27.812 - debug: shuttercontrol.0 (179737) Brightness sensor value: 4399
                2023-04-12 15:08:27.839 - debug: shuttercontrol.0 (179737) outsidetemperature changed: hm-rpc.1.00181D89B4E7B4.1.ACTUAL_TEMPERATURE Value: 10.6
                2023-04-12 15:08:27.898 - debug: shuttercontrol.0 (179737) Lightsensor up Buero already up at: 100% - setting current action: sunProtect
                2023-04-12 15:08:37.813 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
                2023-04-12 15:10:00.014 - debug: shuttercontrol.0 (179737) calculate astrodata ...
                2023-04-12 15:10:00.014 - debug: shuttercontrol.0 (179737) Sun Azimut: 215.8°
                2023-04-12 15:10:00.015 - debug: shuttercontrol.0 (179737) Sun Elevation: 41.6°
                2023-04-12 15:10:45.049 - debug: shuttercontrol.0 (179737) Brightness sensor value: 4524
                2023-04-12 15:10:45.135 - debug: shuttercontrol.0 (179737) Lightsensor up Buero already up at: 100% - setting current action: sunProtect
                2023-04-12 15:10:55.050 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
                2023-04-12 15:12:47.794 - debug: shuttercontrol.0 (179737) Brightness sensor value: 4369
                2023-04-12 15:12:47.834 - debug: shuttercontrol.0 (179737) Lightsensor up Buero already up at: 100% - setting current action: sunProtect
                2023-04-12 15:12:57.795 - debug: shuttercontrol.0 (179737) Brightness State Down is: false
                

                Danke für Deine Hilfe...

                simatecS Offline
                simatecS Offline
                simatec
                Developer Most Active
                schrieb am zuletzt editiert von
                #30

                @stealthangel Deine Überprüfung der Rollläden nach 20 Sekunden löst hier die Aktion aus.
                Entweder deine Rollläden liefern einen sauberen State, dann schalte die Überprüfung aus oder setze der Wert höher.
                Z.B. auf 60 oder 100 Sekunden

                • Besuche meine Github Seite
                • Beitrag hat geholfen oder willst du mich unterstützen
                • HowTo Restore ioBroker
                S 2 Antworten Letzte Antwort
                0
                • simatecS simatec

                  @stealthangel Deine Überprüfung der Rollläden nach 20 Sekunden löst hier die Aktion aus.
                  Entweder deine Rollläden liefern einen sauberen State, dann schalte die Überprüfung aus oder setze der Wert höher.
                  Z.B. auf 60 oder 100 Sekunden

                  S Offline
                  S Offline
                  StealthAngel
                  schrieb am zuletzt editiert von
                  #31

                  @simatec said in Einstellungen von Shuttercontrol:

                  @stealthangel Deine Überprüfung der Rollläden nach 20 Sekunden löst hier die Aktion aus.
                  Entweder deine Rollläden liefern einen sauberen State, dann schalte die Überprüfung aus oder setze der Wert höher.
                  Z.B. auf 60 oder 100 Sekunden

                  Hallo, die Überprüfung ist auf 60 Sekunden eingestellt
                  Verzoegerung.JPG

                  Jetzt war ich zwar nicht zuhause, aber als ich nach Hause kam war der Rollladen hochgefahren (und nicht auf 30%).

                  2023-04-13 14:50:00.007 - debug: shuttercontrol.0 (184934) calculate astrodata ...
                  2023-04-13 14:50:00.008 - debug: shuttercontrol.0 (184934) Sun Azimut: 209.7°
                  2023-04-13 14:50:00.008 - debug: shuttercontrol.0 (184934) Sun Elevation: 43.6°
                  2023-04-13 14:50:04.184 - debug: shuttercontrol.0 (184934) Brightness sensor value: 7487
                  2023-04-13 14:50:04.208 - debug: shuttercontrol.0 (184934) outsidetemperature changed: hm-rpc.1.00181D89B4E7B4.1.ACTUAL_TEMPERATURE Value: 12
                  2023-04-13 14:50:04.274 - debug: shuttercontrol.0 (184934) Lightsensor up Buero already up at: 100% - setting current action: up
                  2023-04-13 14:50:14.184 - debug: shuttercontrol.0 (184934) Brightness State Down is: false
                  2023-04-13 14:52:53.676 - debug: shuttercontrol.0 (184934) Brightness sensor value: 7333
                  2023-04-13 14:52:53.718 - debug: shuttercontrol.0 (184934) Lightsensor up Buero already up at: 100% - setting current action: up
                  2023-04-13 14:53:03.677 - debug: shuttercontrol.0 (184934) Brightness State Down is: false
                  2023-04-13 14:55:00.009 - debug: shuttercontrol.0 (184934) calculate astrodata ...
                  2023-04-13 14:55:00.009 - debug: shuttercontrol.0 (184934) Sun Azimut: 211.4°
                  2023-04-13 14:55:00.010 - debug: shuttercontrol.0 (184934) Sun Elevation: 43.2°
                  2023-04-13 14:55:02.023 - debug: shuttercontrol.0 (184934) Buero: Check basis for sunprotect. Height:100 > HeightDownSun: 30 AND Height:100 == currentHeight:100 AND currentHeight:100 == heightUp:100
                  2023-04-13 14:55:02.024 - info: shuttercontrol.0 (184934) Sunprotect #416 Set ID: Buero value: 30%
                  2023-04-13 14:55:02.075 - debug: shuttercontrol.0 (184934) #0 wait for shutter check started
                  2023-04-13 14:55:02.073 - info: mqtt.0 (955) send2Server mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos[shellies/Buero/Rolladen/roller/0/command/pos]
                  2023-04-13 14:55:02.126 - debug: shuttercontrol.0 (184934) Sunprotect for Buero is active
                  2023-04-13 14:55:02.127 - debug: shuttercontrol.0 (184934) RangeMinus: 210 < 211.4RangePlus: 320 > 211.4
                  2023-04-13 14:55:02.127 - debug: shuttercontrol.0 (184934) last automatic Action for Buero: down_Sunprotect
                  2023-04-13 14:55:02.127 - debug: shuttercontrol.0 (184934) Sunprotect Buero old height: 100% new height: 30%
                  2023-04-13 14:55:28.929 - debug: shuttercontrol.0 (184934) Brightness sensor value: 7345
                  2023-04-13 14:55:28.952 - debug: shuttercontrol.0 (184934) outsidetemperature changed: hm-rpc.1.00181D89B4E7B4.1.ACTUAL_TEMPERATURE Value: 12.1
                  2023-04-13 14:55:29.030 - debug: shuttercontrol.0 (184934) Lightsensor up Buero already up at: 100% - setting current action: sunProtect
                  2023-04-13 14:55:38.930 - debug: shuttercontrol.0 (184934) Brightness State Down is: false
                  2023-04-13 14:56:02.076 - debug: shuttercontrol.0 (184934) #0 wait for shutter check end
                  2023-04-13 14:56:02.078 - debug: shuttercontrol.0 (184934) Shutter state changed: Buero old value = 100 new value = 30
                  2023-04-13 14:56:02.078 - debug: shuttercontrol.0 (184934) Buero Old value = 100. New value = 30. automatic is active
                  2023-04-13 14:57:49.676 - debug: shuttercontrol.0 (184934) Brightness sensor value: 7125
                  2023-04-13 14:57:49.724 - debug: shuttercontrol.0 (184934) Lightsensor up Buero already up at: 100% - setting current action: sunProtect
                  2023-04-13 14:57:59.677 - debug: shuttercontrol.0 (184934) Brightness State Down is: false
                  2023-04-13 14:59:55.972 - debug: shuttercontrol.0 (184934) Brightness sensor value: 6848
                  2023-04-13 14:59:56.003 - debug: shuttercontrol.0 (184934) outsidetemperature changed: hm-rpc.1.00181D89B4E7B4.1.ACTUAL_TEMPERATURE Value: 12.2
                  2023-04-13 14:59:56.029 - debug: shuttercontrol.0 (184934) Lightsensor up Buero already up at: 100% - setting current action: sunProtect
                  

                  Die Objects sind der Meinung, dass der Rollladen auf 30% steht

                  Obj1.JPG

                  In Wirklichkeit ist der Rollladen aber auf 100%
                  ShellyObj.JPG

                  Also ist er scheinbar runter und gleich wieder hochgefahren.
                  Kast Du bitte nochmal schauen, was hier schief gegangen ist?.....

                  simatecS 1 Antwort Letzte Antwort
                  0
                  • simatecS simatec

                    @stealthangel Deine Überprüfung der Rollläden nach 20 Sekunden löst hier die Aktion aus.
                    Entweder deine Rollläden liefern einen sauberen State, dann schalte die Überprüfung aus oder setze der Wert höher.
                    Z.B. auf 60 oder 100 Sekunden

                    S Offline
                    S Offline
                    StealthAngel
                    schrieb am zuletzt editiert von
                    #32

                    @simatec

                    Halt Stop, ich habe noch einen Fehler bei mir gefunden. Wenn ich die "Objekt-ID Rollladen" einstelle wird vermutlich die Sollposition dort hin gesendet und die Position davon auch abgefragt, oder?

                    Bei meinen Shellys muss ich aber auf

                    mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos
                    

                    schreiben und von

                    mqtt.0.shellies.Buero.Rolladen.roller.0.pos
                    

                    lesen. Ich hatte als Object-ID "mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos". Das könnte der Fehler sein. Ich arbeite jetzt mit einen Alias.

                        "alias": {
                          "id": {
                            "read": "mqtt.0.shellies.Buero.Rolladen.roller.0.pos",
                            "write": "mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos"
                          }
                        },
                    

                    Ich hoffe, dass es jetzt morgen funktioniert.

                    Erstmal Sorry und vielen Dank....

                    simatecS 1 Antwort Letzte Antwort
                    0
                    • S StealthAngel

                      @simatec said in Einstellungen von Shuttercontrol:

                      @stealthangel Deine Überprüfung der Rollläden nach 20 Sekunden löst hier die Aktion aus.
                      Entweder deine Rollläden liefern einen sauberen State, dann schalte die Überprüfung aus oder setze der Wert höher.
                      Z.B. auf 60 oder 100 Sekunden

                      Hallo, die Überprüfung ist auf 60 Sekunden eingestellt
                      Verzoegerung.JPG

                      Jetzt war ich zwar nicht zuhause, aber als ich nach Hause kam war der Rollladen hochgefahren (und nicht auf 30%).

                      2023-04-13 14:50:00.007 - debug: shuttercontrol.0 (184934) calculate astrodata ...
                      2023-04-13 14:50:00.008 - debug: shuttercontrol.0 (184934) Sun Azimut: 209.7°
                      2023-04-13 14:50:00.008 - debug: shuttercontrol.0 (184934) Sun Elevation: 43.6°
                      2023-04-13 14:50:04.184 - debug: shuttercontrol.0 (184934) Brightness sensor value: 7487
                      2023-04-13 14:50:04.208 - debug: shuttercontrol.0 (184934) outsidetemperature changed: hm-rpc.1.00181D89B4E7B4.1.ACTUAL_TEMPERATURE Value: 12
                      2023-04-13 14:50:04.274 - debug: shuttercontrol.0 (184934) Lightsensor up Buero already up at: 100% - setting current action: up
                      2023-04-13 14:50:14.184 - debug: shuttercontrol.0 (184934) Brightness State Down is: false
                      2023-04-13 14:52:53.676 - debug: shuttercontrol.0 (184934) Brightness sensor value: 7333
                      2023-04-13 14:52:53.718 - debug: shuttercontrol.0 (184934) Lightsensor up Buero already up at: 100% - setting current action: up
                      2023-04-13 14:53:03.677 - debug: shuttercontrol.0 (184934) Brightness State Down is: false
                      2023-04-13 14:55:00.009 - debug: shuttercontrol.0 (184934) calculate astrodata ...
                      2023-04-13 14:55:00.009 - debug: shuttercontrol.0 (184934) Sun Azimut: 211.4°
                      2023-04-13 14:55:00.010 - debug: shuttercontrol.0 (184934) Sun Elevation: 43.2°
                      2023-04-13 14:55:02.023 - debug: shuttercontrol.0 (184934) Buero: Check basis for sunprotect. Height:100 > HeightDownSun: 30 AND Height:100 == currentHeight:100 AND currentHeight:100 == heightUp:100
                      2023-04-13 14:55:02.024 - info: shuttercontrol.0 (184934) Sunprotect #416 Set ID: Buero value: 30%
                      2023-04-13 14:55:02.075 - debug: shuttercontrol.0 (184934) #0 wait for shutter check started
                      2023-04-13 14:55:02.073 - info: mqtt.0 (955) send2Server mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos[shellies/Buero/Rolladen/roller/0/command/pos]
                      2023-04-13 14:55:02.126 - debug: shuttercontrol.0 (184934) Sunprotect for Buero is active
                      2023-04-13 14:55:02.127 - debug: shuttercontrol.0 (184934) RangeMinus: 210 < 211.4RangePlus: 320 > 211.4
                      2023-04-13 14:55:02.127 - debug: shuttercontrol.0 (184934) last automatic Action for Buero: down_Sunprotect
                      2023-04-13 14:55:02.127 - debug: shuttercontrol.0 (184934) Sunprotect Buero old height: 100% new height: 30%
                      2023-04-13 14:55:28.929 - debug: shuttercontrol.0 (184934) Brightness sensor value: 7345
                      2023-04-13 14:55:28.952 - debug: shuttercontrol.0 (184934) outsidetemperature changed: hm-rpc.1.00181D89B4E7B4.1.ACTUAL_TEMPERATURE Value: 12.1
                      2023-04-13 14:55:29.030 - debug: shuttercontrol.0 (184934) Lightsensor up Buero already up at: 100% - setting current action: sunProtect
                      2023-04-13 14:55:38.930 - debug: shuttercontrol.0 (184934) Brightness State Down is: false
                      2023-04-13 14:56:02.076 - debug: shuttercontrol.0 (184934) #0 wait for shutter check end
                      2023-04-13 14:56:02.078 - debug: shuttercontrol.0 (184934) Shutter state changed: Buero old value = 100 new value = 30
                      2023-04-13 14:56:02.078 - debug: shuttercontrol.0 (184934) Buero Old value = 100. New value = 30. automatic is active
                      2023-04-13 14:57:49.676 - debug: shuttercontrol.0 (184934) Brightness sensor value: 7125
                      2023-04-13 14:57:49.724 - debug: shuttercontrol.0 (184934) Lightsensor up Buero already up at: 100% - setting current action: sunProtect
                      2023-04-13 14:57:59.677 - debug: shuttercontrol.0 (184934) Brightness State Down is: false
                      2023-04-13 14:59:55.972 - debug: shuttercontrol.0 (184934) Brightness sensor value: 6848
                      2023-04-13 14:59:56.003 - debug: shuttercontrol.0 (184934) outsidetemperature changed: hm-rpc.1.00181D89B4E7B4.1.ACTUAL_TEMPERATURE Value: 12.2
                      2023-04-13 14:59:56.029 - debug: shuttercontrol.0 (184934) Lightsensor up Buero already up at: 100% - setting current action: sunProtect
                      

                      Die Objects sind der Meinung, dass der Rollladen auf 30% steht

                      Obj1.JPG

                      In Wirklichkeit ist der Rollladen aber auf 100%
                      ShellyObj.JPG

                      Also ist er scheinbar runter und gleich wieder hochgefahren.
                      Kast Du bitte nochmal schauen, was hier schief gegangen ist?.....

                      simatecS Offline
                      simatecS Offline
                      simatec
                      Developer Most Active
                      schrieb am zuletzt editiert von
                      #33

                      @stealthangel Laut dem Log hat Shuttercontrol mit dem Überprüfen nach 60 Sekunden alles richtig gemacht.
                      Automatik wurde erkannt und er wurde in den Sonnenschutz gefahren.

                      Ich gehe mal davon aus, dass da bei deinen States der Rollläden was krum ist.
                      Hast du da noch irgendwelche Scripte laufen?

                      Wann wurde denn der State des Rollladens geändert?

                      • Besuche meine Github Seite
                      • Beitrag hat geholfen oder willst du mich unterstützen
                      • HowTo Restore ioBroker
                      1 Antwort Letzte Antwort
                      0
                      • S StealthAngel

                        @simatec

                        Halt Stop, ich habe noch einen Fehler bei mir gefunden. Wenn ich die "Objekt-ID Rollladen" einstelle wird vermutlich die Sollposition dort hin gesendet und die Position davon auch abgefragt, oder?

                        Bei meinen Shellys muss ich aber auf

                        mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos
                        

                        schreiben und von

                        mqtt.0.shellies.Buero.Rolladen.roller.0.pos
                        

                        lesen. Ich hatte als Object-ID "mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos". Das könnte der Fehler sein. Ich arbeite jetzt mit einen Alias.

                            "alias": {
                              "id": {
                                "read": "mqtt.0.shellies.Buero.Rolladen.roller.0.pos",
                                "write": "mqtt.0.shellies.Buero.Rolladen.roller.0.command.pos"
                              }
                            },
                        

                        Ich hoffe, dass es jetzt morgen funktioniert.

                        Erstmal Sorry und vielen Dank....

                        simatecS Offline
                        simatecS Offline
                        simatec
                        Developer Most Active
                        schrieb am zuletzt editiert von
                        #34

                        @stealthangel Warum nutzt du nicht den Shelly Adapter??? Würde sicher einiges erleichtern

                        • Besuche meine Github Seite
                        • Beitrag hat geholfen oder willst du mich unterstützen
                        • HowTo Restore ioBroker
                        S 1 Antwort Letzte Antwort
                        0
                        • simatecS simatec

                          @stealthangel Warum nutzt du nicht den Shelly Adapter??? Würde sicher einiges erleichtern

                          S Offline
                          S Offline
                          StealthAngel
                          schrieb am zuletzt editiert von
                          #35

                          @simatec said in Einstellungen von Shuttercontrol:

                          @stealthangel Warum nutzt du nicht den Shelly Adapter??? Würde sicher einiges erleichtern

                          Ich habe jetzt auch auf den Shelly Adapter umgestellt. Das Problem ist aber immer noch das Gleiche :(

                          Der Rollladen ist wieder 3 mal runter und rauf gefahren. So langsam verzweifele ich ....

                          2023-04-17 14:45:00.014 - debug: shuttercontrol.0 (207218) calculate astrodata ...
                          2023-04-17 14:45:00.014 - debug: shuttercontrol.0 (207218) Sun Azimut: 209°
                          2023-04-17 14:45:00.015 - debug: shuttercontrol.0 (207218) Sun Elevation: 45.3°
                          2023-04-17 14:46:12.976 - debug: shuttercontrol.0 (207218) Brightness sensor value: 5032
                          2023-04-17 14:46:14.052 - debug: shuttercontrol.0 (207218) Lightsensor up BueroRollladen already up at: 100% - setting current action: up
                          2023-04-17 14:46:22.978 - debug: shuttercontrol.0 (207218) Brightness State Down is: false
                          2023-04-17 14:48:53.703 - debug: shuttercontrol.0 (207218) Brightness sensor value: 4799
                          2023-04-17 14:48:54.799 - debug: shuttercontrol.0 (207218) Lightsensor up BueroRollladen already up at: 100% - setting current action: up
                          2023-04-17 14:49:03.703 - debug: shuttercontrol.0 (207218) Brightness State Down is: false
                          2023-04-17 14:50:00.019 - debug: shuttercontrol.0 (207218) calculate astrodata ...
                          2023-04-17 14:50:00.020 - debug: shuttercontrol.0 (207218) Sun Azimut: 210.7°
                          2023-04-17 14:50:00.021 - debug: shuttercontrol.0 (207218) Sun Elevation: 44.9°
                          2023-04-17 14:50:02.035 - debug: shuttercontrol.0 (207218) BueroRollladen: Check basis for sunprotect. Height:100 > HeightDownSun: 30 AND Height:100 == currentHeight:100 AND currentHeight:100 == heightUp:100
                          2023-04-17 14:50:02.036 - info: shuttercontrol.0 (207218) Sunprotect #416 Set ID: BueroRollladen value: 30%
                          2023-04-17 14:50:02.048 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                          2023-04-17 14:50:02.059 - debug: shuttercontrol.0 (207218) Sunprotect for BueroRollladen is active
                          2023-04-17 14:50:02.060 - debug: shuttercontrol.0 (207218) RangeMinus: 210 < 210.7RangePlus: 320 > 210.7
                          2023-04-17 14:50:02.060 - debug: shuttercontrol.0 (207218) last automatic Action for BueroRollladen: down_Sunprotect
                          2023-04-17 14:50:02.060 - debug: shuttercontrol.0 (207218) Sunprotect BueroRollladen old height: % new height: 30%
                          2023-04-17 14:50:02.083 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                          2023-04-17 14:50:14.335 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                          2023-04-17 14:51:02.049 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                          2023-04-17 14:51:02.051 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = new value = 30
                          2023-04-17 14:51:02.051 - debug: shuttercontrol.0 (207218) #1 shutterName: BueroRollladen
                          2023-04-17 14:51:02.052 - debug: shuttercontrol.0 (207218) #1 shutterState: 30 %
                          2023-04-17 14:51:02.052 - debug: shuttercontrol.0 (207218) #1 currentAction: Manu_Mode
                          2023-04-17 14:51:02.052 - debug: shuttercontrol.0 (207218) #1 triggerAction: Manu_Mode
                          2023-04-17 14:51:02.053 - debug: shuttercontrol.0 (207218) #1 currentHeight: 30 %
                          2023-04-17 14:51:02.053 - debug: shuttercontrol.0 (207218) #1 oldHeight: %
                          2023-04-17 14:51:02.053 - debug: shuttercontrol.0 (207218) #1 currentShutterState: activated
                          2023-04-17 14:51:02.053 - debug: shuttercontrol.0 (207218) #1 currentShutterStateTime: 60 seconds
                          2023-04-17 14:51:02.084 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                          2023-04-17 14:51:02.085 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = new value = 30
                          2023-04-17 14:51:02.086 - debug: shuttercontrol.0 (207218) #1 shutterName: BueroRollladen
                          2023-04-17 14:51:02.087 - debug: shuttercontrol.0 (207218) #1 shutterState: 30 %
                          2023-04-17 14:51:02.087 - debug: shuttercontrol.0 (207218) #1 currentAction: Manu_Mode
                          2023-04-17 14:51:02.087 - debug: shuttercontrol.0 (207218) #1 triggerAction: Manu_Mode
                          2023-04-17 14:51:02.088 - debug: shuttercontrol.0 (207218) #1 currentHeight: 30 %
                          2023-04-17 14:51:02.088 - debug: shuttercontrol.0 (207218) #1 oldHeight: %
                          2023-04-17 14:51:02.089 - debug: shuttercontrol.0 (207218) #1 currentShutterState: activated
                          2023-04-17 14:51:02.089 - debug: shuttercontrol.0 (207218) #1 currentShutterStateTime: 60 seconds
                          2023-04-17 14:51:02.091 - debug: shuttercontrol.0 (207218) BueroRollladen drived manually to 30. Old value = . New value = 30
                          2023-04-17 14:51:02.092 - debug: shuttercontrol.0 (207218) BueroRollladen Updated trigger action to Manu_Mode to prevent moving after window close
                          2023-04-17 14:51:02.142 - debug: shuttercontrol.0 (207218) BueroRollladen drived manually to 30. Old value = . New value = 30
                          2023-04-17 14:51:02.143 - debug: shuttercontrol.0 (207218) BueroRollladen Updated trigger action to Manu_Mode to prevent moving after window close
                          2023-04-17 14:51:14.336 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                          2023-04-17 14:51:14.338 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = new value = 30
                          2023-04-17 14:51:14.338 - debug: shuttercontrol.0 (207218) #1 shutterName: BueroRollladen
                          2023-04-17 14:51:14.339 - debug: shuttercontrol.0 (207218) #1 shutterState: 30 %
                          2023-04-17 14:51:14.339 - debug: shuttercontrol.0 (207218) #1 currentAction: Manu_Mode
                          2023-04-17 14:51:14.339 - debug: shuttercontrol.0 (207218) #1 triggerAction: Manu_Mode
                          2023-04-17 14:51:14.339 - debug: shuttercontrol.0 (207218) #1 currentHeight: 30 %
                          2023-04-17 14:51:14.340 - debug: shuttercontrol.0 (207218) #1 oldHeight: %
                          2023-04-17 14:51:14.340 - debug: shuttercontrol.0 (207218) #1 currentShutterState: activated
                          2023-04-17 14:51:14.340 - debug: shuttercontrol.0 (207218) #1 currentShutterStateTime: 60 seconds
                          2023-04-17 14:51:14.390 - debug: shuttercontrol.0 (207218) BueroRollladen drived manually to 30. Old value = . New value = 30
                          2023-04-17 14:51:14.391 - debug: shuttercontrol.0 (207218) BueroRollladen Updated trigger action to Manu_Mode to prevent moving after window close
                          2023-04-17 14:51:19.961 - debug: shuttercontrol.0 (207218) Brightness sensor value: 4622
                          2023-04-17 14:51:19.995 - info: shuttercontrol.0 (207218) Lightsensor #5 Set ID: BueroRollladen value: 100%
                          2023-04-17 14:51:20.003 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                          2023-04-17 14:51:20.013 - debug: shuttercontrol.0 (207218) last automatic Action for BueroRollladen: up_Brightness
                          2023-04-17 14:51:20.013 - debug: shuttercontrol.0 (207218) save current height: 100% from BueroRollladen
                          2023-04-17 14:51:20.035 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                          2023-04-17 14:51:29.963 - debug: shuttercontrol.0 (207218) Brightness State Down is: false
                          2023-04-17 14:51:33.042 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                          2023-04-17 14:52:20.004 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                          2023-04-17 14:52:20.005 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = new value = 100
                          2023-04-17 14:52:20.006 - debug: shuttercontrol.0 (207218) BueroRollladen Old value = . New value = 100. automatic is active
                          2023-04-17 14:52:20.035 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                          2023-04-17 14:52:20.037 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = new value = 100
                          2023-04-17 14:52:20.038 - debug: shuttercontrol.0 (207218) BueroRollladen Old value = . New value = 100. automatic is active
                          2023-04-17 14:52:33.043 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                          2023-04-17 14:52:33.044 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = new value = 100
                          2023-04-17 14:52:33.045 - debug: shuttercontrol.0 (207218) BueroRollladen Old value = . New value = 100. automatic is active
                          2023-04-17 14:53:31.713 - debug: shuttercontrol.0 (207218) Brightness sensor value: 4502
                          2023-04-17 14:53:31.770 - debug: shuttercontrol.0 (207218) Lightsensor up BueroRollladen already up at: 100% - setting current action: up
                          2023-04-17 14:53:41.714 - debug: shuttercontrol.0 (207218) Brightness State Down is: false
                          2023-04-17 14:55:00.017 - debug: shuttercontrol.0 (207218) calculate astrodata ...
                          2023-04-17 14:55:00.018 - debug: shuttercontrol.0 (207218) Sun Azimut: 212.3°
                          2023-04-17 14:55:00.018 - debug: shuttercontrol.0 (207218) Sun Elevation: 44.5°
                          2023-04-17 14:55:02.040 - debug: shuttercontrol.0 (207218) BueroRollladen: Check basis for sunprotect. Height:100 > HeightDownSun: 30 AND Height:100 == currentHeight:100 AND currentHeight:100 == heightUp:100
                          2023-04-17 14:55:02.041 - info: shuttercontrol.0 (207218) Sunprotect #416 Set ID: BueroRollladen value: 30%
                          2023-04-17 14:55:02.093 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                          2023-04-17 14:55:02.111 - debug: shuttercontrol.0 (207218) Sunprotect for BueroRollladen is active
                          2023-04-17 14:55:02.112 - debug: shuttercontrol.0 (207218) RangeMinus: 210 < 212.3RangePlus: 320 > 212.3
                          2023-04-17 14:55:02.113 - debug: shuttercontrol.0 (207218) last automatic Action for BueroRollladen: down_Sunprotect
                          2023-04-17 14:55:02.113 - debug: shuttercontrol.0 (207218) Sunprotect BueroRollladen old height: 100% new height: 30%
                          2023-04-17 14:55:02.136 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                          2023-04-17 14:55:14.373 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                          2023-04-17 14:56:02.095 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                          2023-04-17 14:56:02.097 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = 100 new value = 30
                          2023-04-17 14:56:02.098 - debug: shuttercontrol.0 (207218) #1 shutterName: BueroRollladen
                          2023-04-17 14:56:02.099 - debug: shuttercontrol.0 (207218) #1 shutterState: 30 %
                          2023-04-17 14:56:02.099 - debug: shuttercontrol.0 (207218) #1 currentAction: Manu_Mode
                          2023-04-17 14:56:02.100 - debug: shuttercontrol.0 (207218) #1 triggerAction: Manu_Mode
                          2023-04-17 14:56:02.100 - debug: shuttercontrol.0 (207218) #1 currentHeight: 30 %
                          2023-04-17 14:56:02.101 - debug: shuttercontrol.0 (207218) #1 oldHeight: 100 %
                          2023-04-17 14:56:02.101 - debug: shuttercontrol.0 (207218) #1 currentShutterState: activated
                          2023-04-17 14:56:02.101 - debug: shuttercontrol.0 (207218) #1 currentShutterStateTime: 60 seconds
                          2023-04-17 14:56:02.137 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                          2023-04-17 14:56:02.143 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = 100 new value = 30
                          2023-04-17 14:56:02.144 - debug: shuttercontrol.0 (207218) #1 shutterName: BueroRollladen
                          2023-04-17 14:56:02.144 - debug: shuttercontrol.0 (207218) #1 shutterState: 30 %
                          2023-04-17 14:56:02.145 - debug: shuttercontrol.0 (207218) #1 currentAction: Manu_Mode
                          2023-04-17 14:56:02.146 - debug: shuttercontrol.0 (207218) #1 triggerAction: Manu_Mode
                          2023-04-17 14:56:02.146 - debug: shuttercontrol.0 (207218) #1 currentHeight: 30 %
                          2023-04-17 14:56:02.147 - debug: shuttercontrol.0 (207218) #1 oldHeight: 100 %
                          2023-04-17 14:56:02.147 - debug: shuttercontrol.0 (207218) #1 currentShutterState: activated
                          2023-04-17 14:56:02.148 - debug: shuttercontrol.0 (207218) #1 currentShutterStateTime: 60 seconds
                          2023-04-17 14:56:02.152 - debug: shuttercontrol.0 (207218) BueroRollladen drived manually to 30. Old value = 100. New value = 30
                          2023-04-17 14:56:02.153 - debug: shuttercontrol.0 (207218) BueroRollladen Updated trigger action to Manu_Mode to prevent moving after window close
                          2023-04-17 14:56:02.208 - debug: shuttercontrol.0 (207218) BueroRollladen drived manually to 30. Old value = 100. New value = 30
                          2023-04-17 14:56:02.209 - debug: shuttercontrol.0 (207218) BueroRollladen Updated trigger action to Manu_Mode to prevent moving after window close
                          2023-04-17 14:56:14.374 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                          2023-04-17 14:56:14.377 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = 100 new value = 30
                          2023-04-17 14:56:14.377 - debug: shuttercontrol.0 (207218) #1 shutterName: BueroRollladen
                          2023-04-17 14:56:14.378 - debug: shuttercontrol.0 (207218) #1 shutterState: 30 %
                          2023-04-17 14:56:14.378 - debug: shuttercontrol.0 (207218) #1 currentAction: Manu_Mode
                          2023-04-17 14:56:14.378 - debug: shuttercontrol.0 (207218) #1 triggerAction: Manu_Mode
                          2023-04-17 14:56:14.378 - debug: shuttercontrol.0 (207218) #1 currentHeight: 30 %
                          2023-04-17 14:56:14.379 - debug: shuttercontrol.0 (207218) #1 oldHeight: 100 %
                          2023-04-17 14:56:14.379 - debug: shuttercontrol.0 (207218) #1 currentShutterState: activated
                          2023-04-17 14:56:14.379 - debug: shuttercontrol.0 (207218) #1 currentShutterStateTime: 60 seconds
                          2023-04-17 14:56:14.432 - debug: shuttercontrol.0 (207218) BueroRollladen drived manually to 30. Old value = 100. New value = 30
                          2023-04-17 14:56:14.432 - debug: shuttercontrol.0 (207218) BueroRollladen Updated trigger action to Manu_Mode to prevent moving after window close
                          2023-04-17 14:56:32.952 - debug: shuttercontrol.0 (207218) Brightness sensor value: 4650
                          2023-04-17 14:56:32.992 - info: shuttercontrol.0 (207218) Lightsensor #5 Set ID: BueroRollladen value: 100%
                          2023-04-17 14:56:33.000 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                          2023-04-17 14:56:33.010 - debug: shuttercontrol.0 (207218) last automatic Action for BueroRollladen: up_Brightness
                          2023-04-17 14:56:33.011 - debug: shuttercontrol.0 (207218) save current height: 100% from BueroRollladen
                          2023-04-17 14:56:33.032 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                          2023-04-17 14:56:42.953 - debug: shuttercontrol.0 (207218) Brightness State Down is: false
                          2023-04-17 14:56:46.052 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                          2023-04-17 14:57:26.778 - info: admin.0 (831) ==> Connected system.user.admin from ::ffff:192.168.2.21
                          2023-04-17 14:57:33.002 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                          2023-04-17 14:57:33.003 - debug: shuttercontrol.0 (207218) BueroRollladen Old value = 100. New value = 100. automatic is active
                          2023-04-17 14:57:33.032 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                          2023-04-17 14:57:33.034 - debug: shuttercontrol.0 (207218) BueroRollladen Old value = 100. New value = 100. automatic is active
                          2023-04-17 14:57:38.475 - info: admin.0 (831) ==> Connected system.user.admin from ::ffff:192.168.2.21
                          2023-04-17 14:57:46.054 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                          2023-04-17 14:57:46.055 - debug: shuttercontrol.0 (207218) BueroRollladen Old value = 100. New value = 100. automatic is active
                          2023-04-17 14:59:19.969 - debug: shuttercontrol.0 (207218) Brightness sensor value: 4804
                          2023-04-17 14:59:20.020 - debug: shuttercontrol.0 (207218) Lightsensor up BueroRollladen already up at: 100% - setting current action: up
                          2023-04-17 14:59:29.971 - debug: shuttercontrol.0 (207218) Brightness State Down is: false
                          2023-04-17 15:00:00.012 - debug: shuttercontrol.0 (207218) calculate astrodata ...
                          2023-04-17 15:00:00.013 - debug: shuttercontrol.0 (207218) Sun Azimut: 213.9°
                          2023-04-17 15:00:00.013 - debug: shuttercontrol.0 (207218) Sun Elevation: 44.1°
                          2023-04-17 15:00:02.026 - debug: shuttercontrol.0 (207218) BueroRollladen: Check basis for sunprotect. Height:100 > HeightDownSun: 30 AND Height:100 == currentHeight:100 AND currentHeight:100 == heightUp:100
                          2023-04-17 15:00:02.026 - info: shuttercontrol.0 (207218) Sunprotect #416 Set ID: BueroRollladen value: 30%
                          2023-04-17 15:00:02.075 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                          2023-04-17 15:00:02.086 - debug: shuttercontrol.0 (207218) Sunprotect for BueroRollladen is active
                          2023-04-17 15:00:02.086 - debug: shuttercontrol.0 (207218) RangeMinus: 210 < 213.9RangePlus: 320 > 213.9
                          2023-04-17 15:00:02.086 - debug: shuttercontrol.0 (207218) last automatic Action for BueroRollladen: down_Sunprotect
                          2023-04-17 15:00:02.087 - debug: shuttercontrol.0 (207218) Sunprotect BueroRollladen old height: 100% new height: 30%
                          2023-04-17 15:00:02.105 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                          2023-04-17 15:00:14.359 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                          2023-04-17 15:01:02.077 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                          2023-04-17 15:01:02.078 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = 100 new value = 30
                          2023-04-17 15:01:02.079 - debug: shuttercontrol.0 (207218) #1 shutterName: BueroRollladen
                          2023-04-17 15:01:02.079 - debug: shuttercontrol.0 (207218) #1 shutterState: 30 %
                          2023-04-17 15:01:02.080 - debug: shuttercontrol.0 (207218) #1 currentAction: Manu_Mode
                          2023-04-17 15:01:02.080 - debug: shuttercontrol.0 (207218) #1 triggerAction: Manu_Mode
                          2023-04-17 15:01:02.080 - debug: shuttercontrol.0 (207218) #1 currentHeight: 30 %
                          2023-04-17 15:01:02.080 - debug: shuttercontrol.0 (207218) #1 oldHeight: 100 %
                          2023-04-17 15:01:02.081 - debug: shuttercontrol.0 (207218) #1 currentShutterState: activated
                          2023-04-17 15:01:02.081 - debug: shuttercontrol.0 (207218) #1 currentShutterStateTime: 60 seconds
                          2023-04-17 15:01:02.106 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                          2023-04-17 15:01:02.128 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = 100 new value = 30
                          2023-04-17 15:01:02.128 - debug: shuttercontrol.0 (207218) #1 shutterName: BueroRollladen
                          2023-04-17 15:01:02.129 - debug: shuttercontrol.0 (207218) #1 shutterState: 30 %
                          2023-04-17 15:01:02.130 - debug: shuttercontrol.0 (207218) #1 currentAction: Manu_Mode
                          2023-04-17 15:01:02.130 - debug: shuttercontrol.0 (207218) #1 triggerAction: Manu_Mode
                          2023-04-17 15:01:02.132 - debug: shuttercontrol.0 (207218) #1 currentHeight: 30 %
                          2023-04-17 15:01:02.132 - debug: shuttercontrol.0 (207218) #1 oldHeight: 100 %
                          2023-04-17 15:01:02.132 - debug: shuttercontrol.0 (207218) #1 currentShutterState: activated
                          2023-04-17 15:01:02.133 - debug: shuttercontrol.0 (207218) #1 currentShutterStateTime: 60 seconds
                          2023-04-17 15:01:02.140 - debug: shuttercontrol.0 (207218) BueroRollladen drived manually to 30. Old value = 100. New value = 30
                          2023-04-17 15:01:02.140 - debug: shuttercontrol.0 (207218) BueroRollladen Updated trigger action to Manu_Mode to prevent moving after window close
                          2023-04-17 15:01:02.188 - debug: shuttercontrol.0 (207218) BueroRollladen drived manually to 30. Old value = 100. New value = 30
                          2023-04-17 15:01:02.188 - debug: shuttercontrol.0 (207218) BueroRollladen Updated trigger action to Manu_Mode to prevent moving after window close
                          2023-04-17 15:01:14.360 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                          2023-04-17 15:01:14.361 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = 100 new value = 30
                          2023-04-17 15:01:14.362 - debug: shuttercontrol.0 (207218) #1 shutterName: BueroRollladen
                          2023-04-17 15:01:14.362 - debug: shuttercontrol.0 (207218) #1 shutterState: 30 %
                          2023-04-17 15:01:14.362 - debug: shuttercontrol.0 (207218) #1 currentAction: Manu_Mode
                          2023-04-17 15:01:14.363 - debug: shuttercontrol.0 (207218) #1 triggerAction: Manu_Mode
                          2023-04-17 15:01:14.363 - debug: shuttercontrol.0 (207218) #1 currentHeight: 30 %
                          2023-04-17 15:01:14.363 - debug: shuttercontrol.0 (207218) #1 oldHeight: 100 %
                          2023-04-17 15:01:14.363 - debug: shuttercontrol.0 (207218) #1 currentShutterState: activated
                          2023-04-17 15:01:14.364 - debug: shuttercontrol.0 (207218) #1 currentShutterStateTime: 60 seconds
                          2023-04-17 15:01:14.415 - debug: shuttercontrol.0 (207218) BueroRollladen drived manually to 30. Old value = 100. New value = 30
                          2023-04-17 15:01:14.415 - debug: shuttercontrol.0 (207218) BueroRollladen Updated trigger action to Manu_Mode to prevent moving after window close
                          2023-04-17 15:01:52.457 - debug: shuttercontrol.0 (207218) Brightness sensor value: 4873
                          2023-04-17 15:01:52.494 - info: shuttercontrol.0 (207218) Lightsensor #5 Set ID: BueroRollladen value: 100%
                          2023-04-17 15:01:52.506 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                          2023-04-17 15:01:52.520 - debug: shuttercontrol.0 (207218) last automatic Action for BueroRollladen: up_Brightness
                          2023-04-17 15:01:52.520 - debug: shuttercontrol.0 (207218) save current height: 100% from BueroRollladen
                          2023-04-17 15:01:52.537 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                          2023-04-17 15:02:02.459 - debug: shuttercontrol.0 (207218) Brightness State Down is: false
                          2023-04-17 15:02:05.565 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                          

                          Also irgendwas läuft noch falsch.
                          Mich wundert, dass sich der Status ändert. Ist das so richtig?

                          Screenshot ist von einem etwas späteren Zeitpunkt, war aber sonst auch so, allerdings nicht geloggt....

                          State.JPG

                          Jetzt wo ich hier schreibe, fährt der Rollladen munter weiter rauf und runter.
                          Es ist mit dem Shelly-Adapter also massiv schlechter geworden :(

                          simatecS 1 Antwort Letzte Antwort
                          0
                          • S StealthAngel

                            @simatec said in Einstellungen von Shuttercontrol:

                            @stealthangel Warum nutzt du nicht den Shelly Adapter??? Würde sicher einiges erleichtern

                            Ich habe jetzt auch auf den Shelly Adapter umgestellt. Das Problem ist aber immer noch das Gleiche :(

                            Der Rollladen ist wieder 3 mal runter und rauf gefahren. So langsam verzweifele ich ....

                            2023-04-17 14:45:00.014 - debug: shuttercontrol.0 (207218) calculate astrodata ...
                            2023-04-17 14:45:00.014 - debug: shuttercontrol.0 (207218) Sun Azimut: 209°
                            2023-04-17 14:45:00.015 - debug: shuttercontrol.0 (207218) Sun Elevation: 45.3°
                            2023-04-17 14:46:12.976 - debug: shuttercontrol.0 (207218) Brightness sensor value: 5032
                            2023-04-17 14:46:14.052 - debug: shuttercontrol.0 (207218) Lightsensor up BueroRollladen already up at: 100% - setting current action: up
                            2023-04-17 14:46:22.978 - debug: shuttercontrol.0 (207218) Brightness State Down is: false
                            2023-04-17 14:48:53.703 - debug: shuttercontrol.0 (207218) Brightness sensor value: 4799
                            2023-04-17 14:48:54.799 - debug: shuttercontrol.0 (207218) Lightsensor up BueroRollladen already up at: 100% - setting current action: up
                            2023-04-17 14:49:03.703 - debug: shuttercontrol.0 (207218) Brightness State Down is: false
                            2023-04-17 14:50:00.019 - debug: shuttercontrol.0 (207218) calculate astrodata ...
                            2023-04-17 14:50:00.020 - debug: shuttercontrol.0 (207218) Sun Azimut: 210.7°
                            2023-04-17 14:50:00.021 - debug: shuttercontrol.0 (207218) Sun Elevation: 44.9°
                            2023-04-17 14:50:02.035 - debug: shuttercontrol.0 (207218) BueroRollladen: Check basis for sunprotect. Height:100 > HeightDownSun: 30 AND Height:100 == currentHeight:100 AND currentHeight:100 == heightUp:100
                            2023-04-17 14:50:02.036 - info: shuttercontrol.0 (207218) Sunprotect #416 Set ID: BueroRollladen value: 30%
                            2023-04-17 14:50:02.048 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                            2023-04-17 14:50:02.059 - debug: shuttercontrol.0 (207218) Sunprotect for BueroRollladen is active
                            2023-04-17 14:50:02.060 - debug: shuttercontrol.0 (207218) RangeMinus: 210 < 210.7RangePlus: 320 > 210.7
                            2023-04-17 14:50:02.060 - debug: shuttercontrol.0 (207218) last automatic Action for BueroRollladen: down_Sunprotect
                            2023-04-17 14:50:02.060 - debug: shuttercontrol.0 (207218) Sunprotect BueroRollladen old height: % new height: 30%
                            2023-04-17 14:50:02.083 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                            2023-04-17 14:50:14.335 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                            2023-04-17 14:51:02.049 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                            2023-04-17 14:51:02.051 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = new value = 30
                            2023-04-17 14:51:02.051 - debug: shuttercontrol.0 (207218) #1 shutterName: BueroRollladen
                            2023-04-17 14:51:02.052 - debug: shuttercontrol.0 (207218) #1 shutterState: 30 %
                            2023-04-17 14:51:02.052 - debug: shuttercontrol.0 (207218) #1 currentAction: Manu_Mode
                            2023-04-17 14:51:02.052 - debug: shuttercontrol.0 (207218) #1 triggerAction: Manu_Mode
                            2023-04-17 14:51:02.053 - debug: shuttercontrol.0 (207218) #1 currentHeight: 30 %
                            2023-04-17 14:51:02.053 - debug: shuttercontrol.0 (207218) #1 oldHeight: %
                            2023-04-17 14:51:02.053 - debug: shuttercontrol.0 (207218) #1 currentShutterState: activated
                            2023-04-17 14:51:02.053 - debug: shuttercontrol.0 (207218) #1 currentShutterStateTime: 60 seconds
                            2023-04-17 14:51:02.084 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                            2023-04-17 14:51:02.085 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = new value = 30
                            2023-04-17 14:51:02.086 - debug: shuttercontrol.0 (207218) #1 shutterName: BueroRollladen
                            2023-04-17 14:51:02.087 - debug: shuttercontrol.0 (207218) #1 shutterState: 30 %
                            2023-04-17 14:51:02.087 - debug: shuttercontrol.0 (207218) #1 currentAction: Manu_Mode
                            2023-04-17 14:51:02.087 - debug: shuttercontrol.0 (207218) #1 triggerAction: Manu_Mode
                            2023-04-17 14:51:02.088 - debug: shuttercontrol.0 (207218) #1 currentHeight: 30 %
                            2023-04-17 14:51:02.088 - debug: shuttercontrol.0 (207218) #1 oldHeight: %
                            2023-04-17 14:51:02.089 - debug: shuttercontrol.0 (207218) #1 currentShutterState: activated
                            2023-04-17 14:51:02.089 - debug: shuttercontrol.0 (207218) #1 currentShutterStateTime: 60 seconds
                            2023-04-17 14:51:02.091 - debug: shuttercontrol.0 (207218) BueroRollladen drived manually to 30. Old value = . New value = 30
                            2023-04-17 14:51:02.092 - debug: shuttercontrol.0 (207218) BueroRollladen Updated trigger action to Manu_Mode to prevent moving after window close
                            2023-04-17 14:51:02.142 - debug: shuttercontrol.0 (207218) BueroRollladen drived manually to 30. Old value = . New value = 30
                            2023-04-17 14:51:02.143 - debug: shuttercontrol.0 (207218) BueroRollladen Updated trigger action to Manu_Mode to prevent moving after window close
                            2023-04-17 14:51:14.336 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                            2023-04-17 14:51:14.338 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = new value = 30
                            2023-04-17 14:51:14.338 - debug: shuttercontrol.0 (207218) #1 shutterName: BueroRollladen
                            2023-04-17 14:51:14.339 - debug: shuttercontrol.0 (207218) #1 shutterState: 30 %
                            2023-04-17 14:51:14.339 - debug: shuttercontrol.0 (207218) #1 currentAction: Manu_Mode
                            2023-04-17 14:51:14.339 - debug: shuttercontrol.0 (207218) #1 triggerAction: Manu_Mode
                            2023-04-17 14:51:14.339 - debug: shuttercontrol.0 (207218) #1 currentHeight: 30 %
                            2023-04-17 14:51:14.340 - debug: shuttercontrol.0 (207218) #1 oldHeight: %
                            2023-04-17 14:51:14.340 - debug: shuttercontrol.0 (207218) #1 currentShutterState: activated
                            2023-04-17 14:51:14.340 - debug: shuttercontrol.0 (207218) #1 currentShutterStateTime: 60 seconds
                            2023-04-17 14:51:14.390 - debug: shuttercontrol.0 (207218) BueroRollladen drived manually to 30. Old value = . New value = 30
                            2023-04-17 14:51:14.391 - debug: shuttercontrol.0 (207218) BueroRollladen Updated trigger action to Manu_Mode to prevent moving after window close
                            2023-04-17 14:51:19.961 - debug: shuttercontrol.0 (207218) Brightness sensor value: 4622
                            2023-04-17 14:51:19.995 - info: shuttercontrol.0 (207218) Lightsensor #5 Set ID: BueroRollladen value: 100%
                            2023-04-17 14:51:20.003 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                            2023-04-17 14:51:20.013 - debug: shuttercontrol.0 (207218) last automatic Action for BueroRollladen: up_Brightness
                            2023-04-17 14:51:20.013 - debug: shuttercontrol.0 (207218) save current height: 100% from BueroRollladen
                            2023-04-17 14:51:20.035 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                            2023-04-17 14:51:29.963 - debug: shuttercontrol.0 (207218) Brightness State Down is: false
                            2023-04-17 14:51:33.042 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                            2023-04-17 14:52:20.004 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                            2023-04-17 14:52:20.005 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = new value = 100
                            2023-04-17 14:52:20.006 - debug: shuttercontrol.0 (207218) BueroRollladen Old value = . New value = 100. automatic is active
                            2023-04-17 14:52:20.035 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                            2023-04-17 14:52:20.037 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = new value = 100
                            2023-04-17 14:52:20.038 - debug: shuttercontrol.0 (207218) BueroRollladen Old value = . New value = 100. automatic is active
                            2023-04-17 14:52:33.043 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                            2023-04-17 14:52:33.044 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = new value = 100
                            2023-04-17 14:52:33.045 - debug: shuttercontrol.0 (207218) BueroRollladen Old value = . New value = 100. automatic is active
                            2023-04-17 14:53:31.713 - debug: shuttercontrol.0 (207218) Brightness sensor value: 4502
                            2023-04-17 14:53:31.770 - debug: shuttercontrol.0 (207218) Lightsensor up BueroRollladen already up at: 100% - setting current action: up
                            2023-04-17 14:53:41.714 - debug: shuttercontrol.0 (207218) Brightness State Down is: false
                            2023-04-17 14:55:00.017 - debug: shuttercontrol.0 (207218) calculate astrodata ...
                            2023-04-17 14:55:00.018 - debug: shuttercontrol.0 (207218) Sun Azimut: 212.3°
                            2023-04-17 14:55:00.018 - debug: shuttercontrol.0 (207218) Sun Elevation: 44.5°
                            2023-04-17 14:55:02.040 - debug: shuttercontrol.0 (207218) BueroRollladen: Check basis for sunprotect. Height:100 > HeightDownSun: 30 AND Height:100 == currentHeight:100 AND currentHeight:100 == heightUp:100
                            2023-04-17 14:55:02.041 - info: shuttercontrol.0 (207218) Sunprotect #416 Set ID: BueroRollladen value: 30%
                            2023-04-17 14:55:02.093 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                            2023-04-17 14:55:02.111 - debug: shuttercontrol.0 (207218) Sunprotect for BueroRollladen is active
                            2023-04-17 14:55:02.112 - debug: shuttercontrol.0 (207218) RangeMinus: 210 < 212.3RangePlus: 320 > 212.3
                            2023-04-17 14:55:02.113 - debug: shuttercontrol.0 (207218) last automatic Action for BueroRollladen: down_Sunprotect
                            2023-04-17 14:55:02.113 - debug: shuttercontrol.0 (207218) Sunprotect BueroRollladen old height: 100% new height: 30%
                            2023-04-17 14:55:02.136 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                            2023-04-17 14:55:14.373 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                            2023-04-17 14:56:02.095 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                            2023-04-17 14:56:02.097 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = 100 new value = 30
                            2023-04-17 14:56:02.098 - debug: shuttercontrol.0 (207218) #1 shutterName: BueroRollladen
                            2023-04-17 14:56:02.099 - debug: shuttercontrol.0 (207218) #1 shutterState: 30 %
                            2023-04-17 14:56:02.099 - debug: shuttercontrol.0 (207218) #1 currentAction: Manu_Mode
                            2023-04-17 14:56:02.100 - debug: shuttercontrol.0 (207218) #1 triggerAction: Manu_Mode
                            2023-04-17 14:56:02.100 - debug: shuttercontrol.0 (207218) #1 currentHeight: 30 %
                            2023-04-17 14:56:02.101 - debug: shuttercontrol.0 (207218) #1 oldHeight: 100 %
                            2023-04-17 14:56:02.101 - debug: shuttercontrol.0 (207218) #1 currentShutterState: activated
                            2023-04-17 14:56:02.101 - debug: shuttercontrol.0 (207218) #1 currentShutterStateTime: 60 seconds
                            2023-04-17 14:56:02.137 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                            2023-04-17 14:56:02.143 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = 100 new value = 30
                            2023-04-17 14:56:02.144 - debug: shuttercontrol.0 (207218) #1 shutterName: BueroRollladen
                            2023-04-17 14:56:02.144 - debug: shuttercontrol.0 (207218) #1 shutterState: 30 %
                            2023-04-17 14:56:02.145 - debug: shuttercontrol.0 (207218) #1 currentAction: Manu_Mode
                            2023-04-17 14:56:02.146 - debug: shuttercontrol.0 (207218) #1 triggerAction: Manu_Mode
                            2023-04-17 14:56:02.146 - debug: shuttercontrol.0 (207218) #1 currentHeight: 30 %
                            2023-04-17 14:56:02.147 - debug: shuttercontrol.0 (207218) #1 oldHeight: 100 %
                            2023-04-17 14:56:02.147 - debug: shuttercontrol.0 (207218) #1 currentShutterState: activated
                            2023-04-17 14:56:02.148 - debug: shuttercontrol.0 (207218) #1 currentShutterStateTime: 60 seconds
                            2023-04-17 14:56:02.152 - debug: shuttercontrol.0 (207218) BueroRollladen drived manually to 30. Old value = 100. New value = 30
                            2023-04-17 14:56:02.153 - debug: shuttercontrol.0 (207218) BueroRollladen Updated trigger action to Manu_Mode to prevent moving after window close
                            2023-04-17 14:56:02.208 - debug: shuttercontrol.0 (207218) BueroRollladen drived manually to 30. Old value = 100. New value = 30
                            2023-04-17 14:56:02.209 - debug: shuttercontrol.0 (207218) BueroRollladen Updated trigger action to Manu_Mode to prevent moving after window close
                            2023-04-17 14:56:14.374 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                            2023-04-17 14:56:14.377 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = 100 new value = 30
                            2023-04-17 14:56:14.377 - debug: shuttercontrol.0 (207218) #1 shutterName: BueroRollladen
                            2023-04-17 14:56:14.378 - debug: shuttercontrol.0 (207218) #1 shutterState: 30 %
                            2023-04-17 14:56:14.378 - debug: shuttercontrol.0 (207218) #1 currentAction: Manu_Mode
                            2023-04-17 14:56:14.378 - debug: shuttercontrol.0 (207218) #1 triggerAction: Manu_Mode
                            2023-04-17 14:56:14.378 - debug: shuttercontrol.0 (207218) #1 currentHeight: 30 %
                            2023-04-17 14:56:14.379 - debug: shuttercontrol.0 (207218) #1 oldHeight: 100 %
                            2023-04-17 14:56:14.379 - debug: shuttercontrol.0 (207218) #1 currentShutterState: activated
                            2023-04-17 14:56:14.379 - debug: shuttercontrol.0 (207218) #1 currentShutterStateTime: 60 seconds
                            2023-04-17 14:56:14.432 - debug: shuttercontrol.0 (207218) BueroRollladen drived manually to 30. Old value = 100. New value = 30
                            2023-04-17 14:56:14.432 - debug: shuttercontrol.0 (207218) BueroRollladen Updated trigger action to Manu_Mode to prevent moving after window close
                            2023-04-17 14:56:32.952 - debug: shuttercontrol.0 (207218) Brightness sensor value: 4650
                            2023-04-17 14:56:32.992 - info: shuttercontrol.0 (207218) Lightsensor #5 Set ID: BueroRollladen value: 100%
                            2023-04-17 14:56:33.000 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                            2023-04-17 14:56:33.010 - debug: shuttercontrol.0 (207218) last automatic Action for BueroRollladen: up_Brightness
                            2023-04-17 14:56:33.011 - debug: shuttercontrol.0 (207218) save current height: 100% from BueroRollladen
                            2023-04-17 14:56:33.032 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                            2023-04-17 14:56:42.953 - debug: shuttercontrol.0 (207218) Brightness State Down is: false
                            2023-04-17 14:56:46.052 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                            2023-04-17 14:57:26.778 - info: admin.0 (831) ==> Connected system.user.admin from ::ffff:192.168.2.21
                            2023-04-17 14:57:33.002 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                            2023-04-17 14:57:33.003 - debug: shuttercontrol.0 (207218) BueroRollladen Old value = 100. New value = 100. automatic is active
                            2023-04-17 14:57:33.032 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                            2023-04-17 14:57:33.034 - debug: shuttercontrol.0 (207218) BueroRollladen Old value = 100. New value = 100. automatic is active
                            2023-04-17 14:57:38.475 - info: admin.0 (831) ==> Connected system.user.admin from ::ffff:192.168.2.21
                            2023-04-17 14:57:46.054 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                            2023-04-17 14:57:46.055 - debug: shuttercontrol.0 (207218) BueroRollladen Old value = 100. New value = 100. automatic is active
                            2023-04-17 14:59:19.969 - debug: shuttercontrol.0 (207218) Brightness sensor value: 4804
                            2023-04-17 14:59:20.020 - debug: shuttercontrol.0 (207218) Lightsensor up BueroRollladen already up at: 100% - setting current action: up
                            2023-04-17 14:59:29.971 - debug: shuttercontrol.0 (207218) Brightness State Down is: false
                            2023-04-17 15:00:00.012 - debug: shuttercontrol.0 (207218) calculate astrodata ...
                            2023-04-17 15:00:00.013 - debug: shuttercontrol.0 (207218) Sun Azimut: 213.9°
                            2023-04-17 15:00:00.013 - debug: shuttercontrol.0 (207218) Sun Elevation: 44.1°
                            2023-04-17 15:00:02.026 - debug: shuttercontrol.0 (207218) BueroRollladen: Check basis for sunprotect. Height:100 > HeightDownSun: 30 AND Height:100 == currentHeight:100 AND currentHeight:100 == heightUp:100
                            2023-04-17 15:00:02.026 - info: shuttercontrol.0 (207218) Sunprotect #416 Set ID: BueroRollladen value: 30%
                            2023-04-17 15:00:02.075 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                            2023-04-17 15:00:02.086 - debug: shuttercontrol.0 (207218) Sunprotect for BueroRollladen is active
                            2023-04-17 15:00:02.086 - debug: shuttercontrol.0 (207218) RangeMinus: 210 < 213.9RangePlus: 320 > 213.9
                            2023-04-17 15:00:02.086 - debug: shuttercontrol.0 (207218) last automatic Action for BueroRollladen: down_Sunprotect
                            2023-04-17 15:00:02.087 - debug: shuttercontrol.0 (207218) Sunprotect BueroRollladen old height: 100% new height: 30%
                            2023-04-17 15:00:02.105 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                            2023-04-17 15:00:14.359 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                            2023-04-17 15:01:02.077 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                            2023-04-17 15:01:02.078 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = 100 new value = 30
                            2023-04-17 15:01:02.079 - debug: shuttercontrol.0 (207218) #1 shutterName: BueroRollladen
                            2023-04-17 15:01:02.079 - debug: shuttercontrol.0 (207218) #1 shutterState: 30 %
                            2023-04-17 15:01:02.080 - debug: shuttercontrol.0 (207218) #1 currentAction: Manu_Mode
                            2023-04-17 15:01:02.080 - debug: shuttercontrol.0 (207218) #1 triggerAction: Manu_Mode
                            2023-04-17 15:01:02.080 - debug: shuttercontrol.0 (207218) #1 currentHeight: 30 %
                            2023-04-17 15:01:02.080 - debug: shuttercontrol.0 (207218) #1 oldHeight: 100 %
                            2023-04-17 15:01:02.081 - debug: shuttercontrol.0 (207218) #1 currentShutterState: activated
                            2023-04-17 15:01:02.081 - debug: shuttercontrol.0 (207218) #1 currentShutterStateTime: 60 seconds
                            2023-04-17 15:01:02.106 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                            2023-04-17 15:01:02.128 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = 100 new value = 30
                            2023-04-17 15:01:02.128 - debug: shuttercontrol.0 (207218) #1 shutterName: BueroRollladen
                            2023-04-17 15:01:02.129 - debug: shuttercontrol.0 (207218) #1 shutterState: 30 %
                            2023-04-17 15:01:02.130 - debug: shuttercontrol.0 (207218) #1 currentAction: Manu_Mode
                            2023-04-17 15:01:02.130 - debug: shuttercontrol.0 (207218) #1 triggerAction: Manu_Mode
                            2023-04-17 15:01:02.132 - debug: shuttercontrol.0 (207218) #1 currentHeight: 30 %
                            2023-04-17 15:01:02.132 - debug: shuttercontrol.0 (207218) #1 oldHeight: 100 %
                            2023-04-17 15:01:02.132 - debug: shuttercontrol.0 (207218) #1 currentShutterState: activated
                            2023-04-17 15:01:02.133 - debug: shuttercontrol.0 (207218) #1 currentShutterStateTime: 60 seconds
                            2023-04-17 15:01:02.140 - debug: shuttercontrol.0 (207218) BueroRollladen drived manually to 30. Old value = 100. New value = 30
                            2023-04-17 15:01:02.140 - debug: shuttercontrol.0 (207218) BueroRollladen Updated trigger action to Manu_Mode to prevent moving after window close
                            2023-04-17 15:01:02.188 - debug: shuttercontrol.0 (207218) BueroRollladen drived manually to 30. Old value = 100. New value = 30
                            2023-04-17 15:01:02.188 - debug: shuttercontrol.0 (207218) BueroRollladen Updated trigger action to Manu_Mode to prevent moving after window close
                            2023-04-17 15:01:14.360 - debug: shuttercontrol.0 (207218) #0 wait for shutter check end
                            2023-04-17 15:01:14.361 - debug: shuttercontrol.0 (207218) Shutter state changed: BueroRollladen old value = 100 new value = 30
                            2023-04-17 15:01:14.362 - debug: shuttercontrol.0 (207218) #1 shutterName: BueroRollladen
                            2023-04-17 15:01:14.362 - debug: shuttercontrol.0 (207218) #1 shutterState: 30 %
                            2023-04-17 15:01:14.362 - debug: shuttercontrol.0 (207218) #1 currentAction: Manu_Mode
                            2023-04-17 15:01:14.363 - debug: shuttercontrol.0 (207218) #1 triggerAction: Manu_Mode
                            2023-04-17 15:01:14.363 - debug: shuttercontrol.0 (207218) #1 currentHeight: 30 %
                            2023-04-17 15:01:14.363 - debug: shuttercontrol.0 (207218) #1 oldHeight: 100 %
                            2023-04-17 15:01:14.363 - debug: shuttercontrol.0 (207218) #1 currentShutterState: activated
                            2023-04-17 15:01:14.364 - debug: shuttercontrol.0 (207218) #1 currentShutterStateTime: 60 seconds
                            2023-04-17 15:01:14.415 - debug: shuttercontrol.0 (207218) BueroRollladen drived manually to 30. Old value = 100. New value = 30
                            2023-04-17 15:01:14.415 - debug: shuttercontrol.0 (207218) BueroRollladen Updated trigger action to Manu_Mode to prevent moving after window close
                            2023-04-17 15:01:52.457 - debug: shuttercontrol.0 (207218) Brightness sensor value: 4873
                            2023-04-17 15:01:52.494 - info: shuttercontrol.0 (207218) Lightsensor #5 Set ID: BueroRollladen value: 100%
                            2023-04-17 15:01:52.506 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                            2023-04-17 15:01:52.520 - debug: shuttercontrol.0 (207218) last automatic Action for BueroRollladen: up_Brightness
                            2023-04-17 15:01:52.520 - debug: shuttercontrol.0 (207218) save current height: 100% from BueroRollladen
                            2023-04-17 15:01:52.537 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                            2023-04-17 15:02:02.459 - debug: shuttercontrol.0 (207218) Brightness State Down is: false
                            2023-04-17 15:02:05.565 - debug: shuttercontrol.0 (207218) #0 wait for shutter check started
                            

                            Also irgendwas läuft noch falsch.
                            Mich wundert, dass sich der Status ändert. Ist das so richtig?

                            Screenshot ist von einem etwas späteren Zeitpunkt, war aber sonst auch so, allerdings nicht geloggt....

                            State.JPG

                            Jetzt wo ich hier schreibe, fährt der Rollladen munter weiter rauf und runter.
                            Es ist mit dem Shelly-Adapter also massiv schlechter geworden :(

                            simatecS Offline
                            simatecS Offline
                            simatec
                            Developer Most Active
                            schrieb am zuletzt editiert von
                            #36

                            @stealthangel Bitte teste die aktuelle v1.4.28

                            • Besuche meine Github Seite
                            • Beitrag hat geholfen oder willst du mich unterstützen
                            • HowTo Restore ioBroker
                            S 1 Antwort Letzte Antwort
                            0
                            • simatecS simatec

                              @stealthangel Bitte teste die aktuelle v1.4.28

                              S Offline
                              S Offline
                              StealthAngel
                              schrieb am zuletzt editiert von StealthAngel
                              #37

                              @simatec said in Einstellungen von Shuttercontrol:

                              @stealthangel Bitte teste die aktuelle v1.4.28

                              Funktioniert auch nicht richtig :(

                              Das einzige was sich jetzt geändert hat ist, dass der Rollladen nicht mehr komplett rauf und runter fährt, sondern nur ca. 5% und das jetzt fast im Sekunden Takt.

                              Am besten sieht man das an der Shelly Shutter.Position Objekt:

                              shellyObj1.JPG

                              Hier auch noch das Debug:

                              2023-04-18 15:34:50.700 - debug: shuttercontrol.0 (208390) Brightness sensor value: 8371
                              2023-04-18 15:34:50.742 - debug: shuttercontrol.0 (208390) Lightsensor up BueroRollladen already up at: 100% - setting current action: up
                              2023-04-18 15:35:00.016 - debug: shuttercontrol.0 (208390) calculate astrodata ...
                              2023-04-18 15:35:00.017 - debug: shuttercontrol.0 (208390) Sun Azimut: 224.9°
                              2023-04-18 15:35:00.018 - debug: shuttercontrol.0 (208390) Sun Elevation: 41°
                              2023-04-18 15:35:00.700 - debug: shuttercontrol.0 (208390) Brightness State Down is: false
                              2023-04-18 15:35:02.073 - debug: shuttercontrol.0 (208390) BueroRollladen: Check basis for sunprotect. Height:100 > HeightDownSun: 30 AND Height:100 == currentHeight:100 AND currentHeight:100 == heightUp:100
                              2023-04-18 15:35:02.074 - info: shuttercontrol.0 (208390) Sunprotect #416 Set ID: BueroRollladen value: 30%
                              2023-04-18 15:35:02.122 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                              2023-04-18 15:35:02.141 - debug: shuttercontrol.0 (208390) Sunprotect for BueroRollladen is active
                              2023-04-18 15:35:02.142 - debug: shuttercontrol.0 (208390) RangeMinus: 210 < 224.9RangePlus: 320 > 224.9
                              2023-04-18 15:35:02.144 - debug: shuttercontrol.0 (208390) last automatic Action for BueroRollladen: down_Sunprotect
                              2023-04-18 15:35:02.144 - debug: shuttercontrol.0 (208390) Sunprotect BueroRollladen old height: 100% new height: 30%
                              2023-04-18 15:35:02.166 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                              2023-04-18 15:35:03.157 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                              2023-04-18 15:35:05.773 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                              2023-04-18 15:36:02.124 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                              2023-04-18 15:36:02.167 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                              2023-04-18 15:36:03.158 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                              2023-04-18 15:36:05.775 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                              2023-04-18 15:37:08.708 - debug: shuttercontrol.0 (208390) Brightness sensor value: 8611
                              2023-04-18 15:37:08.784 - info: shuttercontrol.0 (208390) Lightsensor #5 Set ID: BueroRollladen value: 30%
                              2023-04-18 15:37:08.793 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                              2023-04-18 15:37:08.806 - debug: shuttercontrol.0 (208390) last automatic Action for BueroRollladen: up_Brightness
                              2023-04-18 15:37:08.807 - debug: shuttercontrol.0 (208390) save current height: 30% from BueroRollladen
                              2023-04-18 15:37:08.824 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                              2023-04-18 15:37:09.861 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                              2023-04-18 15:37:10.839 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                              2023-04-18 15:37:11.852 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                              2023-04-18 15:37:12.863 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                              2023-04-18 15:37:13.883 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                              2023-04-18 15:37:16.495 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                              2023-04-18 15:37:18.709 - debug: shuttercontrol.0 (208390) Brightness State Down is: false
                              2023-04-18 15:38:08.794 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                              2023-04-18 15:38:08.825 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                              2023-04-18 15:38:09.860 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                              2023-04-18 15:38:10.840 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                              2023-04-18 15:38:11.853 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                              2023-04-18 15:38:12.863 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                              2023-04-18 15:38:13.884 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                              2023-04-18 15:38:16.496 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                              2023-04-18 15:39:12.143 - debug: shuttercontrol.0 (208390) Brightness sensor value: 8592
                              2023-04-18 15:39:22.144 - debug: shuttercontrol.0 (208390) Brightness State Down is: false
                              2023-04-18 15:40:00.010 - debug: shuttercontrol.0 (208390) calculate astrodata ...
                              2023-04-18 15:40:00.010 - debug: shuttercontrol.0 (208390) Sun Azimut: 226.4°
                              2023-04-18 15:40:00.011 - debug: shuttercontrol.0 (208390) Sun Elevation: 40.4°
                              2023-04-18 15:42:05.421 - debug: shuttercontrol.0 (208390) Brightness sensor value: 8634
                              2023-04-18 15:42:15.421 - debug: shuttercontrol.0 (208390) Brightness State Down is: false
                              2023-04-18 15:44:44.194 - debug: shuttercontrol.0 (208390) Brightness sensor value: 8423
                              2023-04-18 15:44:54.195 - debug: shuttercontrol.0 (208390) Brightness State Down is: false
                              2023-04-18 15:45:00.011 - debug: shuttercontrol.0 (208390) calculate astrodata ...
                              2023-04-18 15:45:00.011 - debug: shuttercontrol.0 (208390) Sun Azimut: 227.8°
                              2023-04-18 15:45:00.012 - debug: shuttercontrol.0 (208390) Sun Elevation: 39.8°
                              

                              Auch die Position in den Objekten passt nicht.
                              shutters.autoLevel.BueroRollladen steht auf 30%
                              Shelly.Shutter.Position sagt aber 100% (und das ist auch richtig)

                              HomoranH 1 Antwort Letzte Antwort
                              0
                              • S Offline
                                S Offline
                                StealthAngel
                                schrieb am zuletzt editiert von
                                #38

                                @simatec Wenn Du mir mit einigen Worten erklärst wie das Ganze funktionieren soll, würde ich mich bereit erklären und etwas in den Source-Code abzutauchen und Debug-Hilfe zugeben....

                                simatecS 1 Antwort Letzte Antwort
                                0
                                • S StealthAngel

                                  @simatec said in Einstellungen von Shuttercontrol:

                                  @stealthangel Bitte teste die aktuelle v1.4.28

                                  Funktioniert auch nicht richtig :(

                                  Das einzige was sich jetzt geändert hat ist, dass der Rollladen nicht mehr komplett rauf und runter fährt, sondern nur ca. 5% und das jetzt fast im Sekunden Takt.

                                  Am besten sieht man das an der Shelly Shutter.Position Objekt:

                                  shellyObj1.JPG

                                  Hier auch noch das Debug:

                                  2023-04-18 15:34:50.700 - debug: shuttercontrol.0 (208390) Brightness sensor value: 8371
                                  2023-04-18 15:34:50.742 - debug: shuttercontrol.0 (208390) Lightsensor up BueroRollladen already up at: 100% - setting current action: up
                                  2023-04-18 15:35:00.016 - debug: shuttercontrol.0 (208390) calculate astrodata ...
                                  2023-04-18 15:35:00.017 - debug: shuttercontrol.0 (208390) Sun Azimut: 224.9°
                                  2023-04-18 15:35:00.018 - debug: shuttercontrol.0 (208390) Sun Elevation: 41°
                                  2023-04-18 15:35:00.700 - debug: shuttercontrol.0 (208390) Brightness State Down is: false
                                  2023-04-18 15:35:02.073 - debug: shuttercontrol.0 (208390) BueroRollladen: Check basis for sunprotect. Height:100 > HeightDownSun: 30 AND Height:100 == currentHeight:100 AND currentHeight:100 == heightUp:100
                                  2023-04-18 15:35:02.074 - info: shuttercontrol.0 (208390) Sunprotect #416 Set ID: BueroRollladen value: 30%
                                  2023-04-18 15:35:02.122 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                                  2023-04-18 15:35:02.141 - debug: shuttercontrol.0 (208390) Sunprotect for BueroRollladen is active
                                  2023-04-18 15:35:02.142 - debug: shuttercontrol.0 (208390) RangeMinus: 210 < 224.9RangePlus: 320 > 224.9
                                  2023-04-18 15:35:02.144 - debug: shuttercontrol.0 (208390) last automatic Action for BueroRollladen: down_Sunprotect
                                  2023-04-18 15:35:02.144 - debug: shuttercontrol.0 (208390) Sunprotect BueroRollladen old height: 100% new height: 30%
                                  2023-04-18 15:35:02.166 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                                  2023-04-18 15:35:03.157 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                                  2023-04-18 15:35:05.773 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                                  2023-04-18 15:36:02.124 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                                  2023-04-18 15:36:02.167 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                                  2023-04-18 15:36:03.158 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                                  2023-04-18 15:36:05.775 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                                  2023-04-18 15:37:08.708 - debug: shuttercontrol.0 (208390) Brightness sensor value: 8611
                                  2023-04-18 15:37:08.784 - info: shuttercontrol.0 (208390) Lightsensor #5 Set ID: BueroRollladen value: 30%
                                  2023-04-18 15:37:08.793 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                                  2023-04-18 15:37:08.806 - debug: shuttercontrol.0 (208390) last automatic Action for BueroRollladen: up_Brightness
                                  2023-04-18 15:37:08.807 - debug: shuttercontrol.0 (208390) save current height: 30% from BueroRollladen
                                  2023-04-18 15:37:08.824 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                                  2023-04-18 15:37:09.861 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                                  2023-04-18 15:37:10.839 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                                  2023-04-18 15:37:11.852 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                                  2023-04-18 15:37:12.863 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                                  2023-04-18 15:37:13.883 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                                  2023-04-18 15:37:16.495 - debug: shuttercontrol.0 (208390) #0 wait for shutter check started
                                  2023-04-18 15:37:18.709 - debug: shuttercontrol.0 (208390) Brightness State Down is: false
                                  2023-04-18 15:38:08.794 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                                  2023-04-18 15:38:08.825 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                                  2023-04-18 15:38:09.860 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                                  2023-04-18 15:38:10.840 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                                  2023-04-18 15:38:11.853 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                                  2023-04-18 15:38:12.863 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                                  2023-04-18 15:38:13.884 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                                  2023-04-18 15:38:16.496 - debug: shuttercontrol.0 (208390) #0 wait for shutter check end
                                  2023-04-18 15:39:12.143 - debug: shuttercontrol.0 (208390) Brightness sensor value: 8592
                                  2023-04-18 15:39:22.144 - debug: shuttercontrol.0 (208390) Brightness State Down is: false
                                  2023-04-18 15:40:00.010 - debug: shuttercontrol.0 (208390) calculate astrodata ...
                                  2023-04-18 15:40:00.010 - debug: shuttercontrol.0 (208390) Sun Azimut: 226.4°
                                  2023-04-18 15:40:00.011 - debug: shuttercontrol.0 (208390) Sun Elevation: 40.4°
                                  2023-04-18 15:42:05.421 - debug: shuttercontrol.0 (208390) Brightness sensor value: 8634
                                  2023-04-18 15:42:15.421 - debug: shuttercontrol.0 (208390) Brightness State Down is: false
                                  2023-04-18 15:44:44.194 - debug: shuttercontrol.0 (208390) Brightness sensor value: 8423
                                  2023-04-18 15:44:54.195 - debug: shuttercontrol.0 (208390) Brightness State Down is: false
                                  2023-04-18 15:45:00.011 - debug: shuttercontrol.0 (208390) calculate astrodata ...
                                  2023-04-18 15:45:00.011 - debug: shuttercontrol.0 (208390) Sun Azimut: 227.8°
                                  2023-04-18 15:45:00.012 - debug: shuttercontrol.0 (208390) Sun Elevation: 39.8°
                                  

                                  Auch die Position in den Objekten passt nicht.
                                  shutters.autoLevel.BueroRollladen steht auf 30%
                                  Shelly.Shutter.Position sagt aber 100% (und das ist auch richtig)

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

                                  @stealthangel sagte in Einstellungen von Shuttercontrol:

                                  Am besten sieht man das an der Shelly Shutter.Position Objekt:

                                  das sieht für mich aus als ob der Shelly die Position unsauber durchgibt (flattert)
                                  im Millisekundenbereich von 92 auf 98 u.ä.

                                  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
                                  • S StealthAngel

                                    @simatec Wenn Du mir mit einigen Worten erklärst wie das Ganze funktionieren soll, würde ich mich bereit erklären und etwas in den Source-Code abzutauchen und Debug-Hilfe zugeben....

                                    simatecS Offline
                                    simatecS Offline
                                    simatec
                                    Developer Most Active
                                    schrieb am zuletzt editiert von
                                    #40

                                    @stealthangel Poste mal deine Config hier als JSON.
                                    Da ist bei dir völlig was krumm… Shuttercontrol gibt nur einen Fahrbefehl an deinen Rollladen.
                                    Schalte alle Scripte und sonstige Routinen ab

                                    • Besuche meine Github Seite
                                    • Beitrag hat geholfen oder willst du mich unterstützen
                                    • HowTo Restore ioBroker
                                    1 Antwort Letzte Antwort
                                    0
                                    • S Offline
                                      S Offline
                                      StealthAngel
                                      schrieb am zuletzt editiert von
                                      #41

                                      @simatec said in Einstellungen von Shuttercontrol:

                                      @stealthangel Poste mal deine Config hier als JSON.

                                      Hier ist die Config: system.adapter.shuttercontrol.0 (2).json

                                      Da ist bei dir völlig was krumm… Shuttercontrol gibt nur einen Fahrbefehl an deinen Rollladen.
                                      Schalte alle Scripte und sonstige Routinen ab

                                      Es gibt keine anderen Skripte oder Routinen

                                      Das Flattern habe ich auch nur mit dem Shelly-Adapter gesehen. Als ich das noch über MQTT gemacht habe war der Positionswert sauber, aber der Shuttercontrol hat trotzdem nicht richtig funktioniert...

                                      1 Antwort Letzte Antwort
                                      0
                                      • S Offline
                                        S Offline
                                        StealthAngel
                                        schrieb am zuletzt editiert von StealthAngel
                                        #42

                                        @simatec

                                        Noch zwei Fragen:

                                        1.) Wenn ich in den Objekten "autoSun" auf "false" stelle während der Sonnenschutz aktiv ist, müsste dann sunProtect nicht beendet werden und die Rollläden wieder hoch fahren?

                                        2.) Wenn der Rollladen bei "autoDown" runter fährt und das Fenster offen ist würde ich erwarten das der Rollladen nur bis auf den Wert runter fährt der bei "Rollladenhöhe bei öffnen des Fensters oder Tür" definiert ist. Bei mir fährt der Rollladen jedoch komplett runter und erst wenn ich das Fenster zu und wieder auf mache, wird die "richtige" Rollladenhöhe gefahren.

                                        Oder verstehe ich da irgendwas falsch?

                                        simatecS 1 Antwort Letzte Antwort
                                        0
                                        • S StealthAngel

                                          @simatec

                                          Noch zwei Fragen:

                                          1.) Wenn ich in den Objekten "autoSun" auf "false" stelle während der Sonnenschutz aktiv ist, müsste dann sunProtect nicht beendet werden und die Rollläden wieder hoch fahren?

                                          2.) Wenn der Rollladen bei "autoDown" runter fährt und das Fenster offen ist würde ich erwarten das der Rollladen nur bis auf den Wert runter fährt der bei "Rollladenhöhe bei öffnen des Fensters oder Tür" definiert ist. Bei mir fährt der Rollladen jedoch komplett runter und erst wenn ich das Fenster zu und wieder auf mache, wird die "richtige" Rollladenhöhe gefahren.

                                          Oder verstehe ich da irgendwas falsch?

                                          simatecS Offline
                                          simatecS Offline
                                          simatec
                                          Developer Most Active
                                          schrieb am zuletzt editiert von
                                          #43

                                          @stealthangel

                                          1. Nein ist nicht so angedacht ...
                                          2. Aussperrschutz falsch konfiguriert
                                          • Besuche meine Github Seite
                                          • Beitrag hat geholfen oder willst du mich unterstützen
                                          • HowTo Restore ioBroker
                                          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

                                          459

                                          Online

                                          32.8k

                                          Benutzer

                                          82.9k

                                          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