Skip to content
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo
  1. ioBroker Community Home
  2. Deutsch
  3. Tester
  4. Test Adapter iQontrol 2.0.x Vis (Entwicklungs-Thread)

NEWS

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    8.1k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    1.9k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    15
    1
    2.1k

Test Adapter iQontrol 2.0.x Vis (Entwicklungs-Thread)

Geplant Angeheftet Gesperrt Verschoben Tester
appdark-modeiqontrolresponsivevisvisualisierungvisualizationwidget
7.6k Beiträge 296 Kommentatoren 7.0m Aufrufe 201 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • F FuXXz2

    Hallo zusammen,

    kann man eigentlich bei den Geräten unter Hintergrundbild und Hintergrundbild Aktiv, die Größe des Bildes einstellen? Bei mir kommt es oft dazu, dass die Hintergrund falsch positioniert oder skaliert sind.

    Also ich bräuchte ein

    background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    

    <div class="iQontrolDeviceBackgroundImage" data-iqontrol-device-id="iqontrol.0.Views.Wohnzimmer.devices.0" style="background-image:url(./../iqontrol.meta/userimages/usersymbols/Wohnzimmer_Decke_aus-removebg-preview.png);background-size: contain;background-repeat: no-repeat;background-position: center;"></div>

    s.bormannS Offline
    s.bormannS Offline
    s.bormann
    Most Active
    schrieb am zuletzt editiert von
    #4061

    @FuXXz2 sagte in Test Adapter iQontrol 1.5.x:

    Hallo zusammen,

    kann man eigentlich bei den Geräten unter Hintergrundbild und Hintergrundbild Aktiv, die Größe des Bildes einstellen? Bei mir kommt es oft dazu, dass die Hintergrund falsch positioniert oder skaliert sind.

    Also ich bräuchte ein

    background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    

    <div class="iQontrolDeviceBackgroundImage" data-iqontrol-device-id="iqontrol.0.Views.Wohnzimmer.devices.0" style="background-image:url(./../iqontrol.meta/userimages/usersymbols/Wohnzimmer_Decke_aus-removebg-preview.png);background-size: contain;background-repeat: no-repeat;background-position: center;"></div>

    Hi,
    aktuell hat
    .iQontrolBackgroundImage die css-Eigenschaften
    background-size: cover; background-position: center;

    Bei mir passt das auch so. Wenn Du es trotzdem ändern magst, kannst Du folgenden Code unter Optionen/Sonstiges/Custom CSS eingeben:

    .iQontrolBackgroundImage {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    

    VG

    1 Antwort Letzte Antwort
    1
    • der KochD der Koch

      @s-bormann
      Wie ändere ich die Schriftgrösse in den Kacheln ?

      s.bormannS Offline
      s.bormannS Offline
      s.bormann
      Most Active
      schrieb am zuletzt editiert von
      #4062

      @der-Koch sagte in Test Adapter iQontrol 1.5.x:

      @s-bormann
      Wie ändere ich die Schriftgrösse in den Kacheln ?

      Hi,
      das geht nicht, da dann die Abmessungen der Kacheln nicht mehr passen.
      Du kannst aber (wie im Post obendrüber) eigene CSS-Anpassungen machen. Die Klassen sind:

      .iQontrolDeviceInfoAText {}
      .iQontrolDeviceInfoBText {}
      .iQontrolDeviceName {}
      .iQontrolDeviceState {}
      

      Und dann das ganze noch mal für große Bildschirme:

      @media screen and (min-width: 1500px) {
          .iQontrolDeviceInfoAText {}
          .iQontrolDeviceInfoBText {}
          .iQontrolDeviceName {}
          .iQontrolDeviceState {}
      }
      

      Je in die geschweiften Klammern kannst Du dann
      font-size: xxpx;
      oder was auch immer Du haben magst eintragen.

      E 1 Antwort Letzte Antwort
      1
      • da_WoodyD da_Woody

        @SabineT nicht so ganz wenn ich mir das so durchlese...

        Beschreibung:
        This is a flot-chart widget. It will display the history of the datapoint linked to STATE or LEVEL. You need to have a history adapter up and running and the linked Datapoint needs to be logged to get this working!

        S Offline
        S Offline
        SabineT
        schrieb am zuletzt editiert von
        #4063

        @da_Woody sagte in Test Adapter iQontrol 1.5.x:

        @SabineT nicht so ganz wenn ich mir das so durchlese...

        Beschreibung:
        This is a flot-chart widget. It will display the history of the datapoint linked to STATE or LEVEL. You need to have a history adapter up and running and the linked Datapoint needs to be logged to get this working!

        Das ist schon klar, nur wird die Leistung eben weder in STATE noch in LEVEL geliefert. Aber @s-bormann hat schon geschrieben, dass er das bei Gelegenheit einbauen wird.

        da_WoodyD s.bormannS 2 Antworten Letzte Antwort
        0
        • S Offline
          S Offline
          SabineT
          schrieb am zuletzt editiert von SabineT
          #4064

          @s-bormann noch eine Bitte:
          wenn man ein bestehendes Gerät kopiert wird bei "Gerät wählen" nur der Name der Geräte aus der Quell-Ansicht angezeigt. Man erkennt aber nicht, welcher Gerätetyp sich jeweils hinter den Namen verbirgt. Ein Name kann aber in einer Ansicht mehrfach vorkommen (z.B. Wohnzimmer vom Type Licht und Wohnzimmer vom Typ Thermostat).

          1 Antwort Letzte Antwort
          0
          • s.bormannS s.bormann

            @der-Koch sagte in Test Adapter iQontrol 1.5.x:

            @s-bormann
            Wie ändere ich die Schriftgrösse in den Kacheln ?

            Hi,
            das geht nicht, da dann die Abmessungen der Kacheln nicht mehr passen.
            Du kannst aber (wie im Post obendrüber) eigene CSS-Anpassungen machen. Die Klassen sind:

            .iQontrolDeviceInfoAText {}
            .iQontrolDeviceInfoBText {}
            .iQontrolDeviceName {}
            .iQontrolDeviceState {}
            

            Und dann das ganze noch mal für große Bildschirme:

            @media screen and (min-width: 1500px) {
                .iQontrolDeviceInfoAText {}
                .iQontrolDeviceInfoBText {}
                .iQontrolDeviceName {}
                .iQontrolDeviceState {}
            }
            

            Je in die geschweiften Klammern kannst Du dann
            font-size: xxpx;
            oder was auch immer Du haben magst eintragen.

            E Offline
            E Offline
            eMd
            schrieb am zuletzt editiert von
            #4065

            @s-bormann

            Kann ich damit auch eine eigene Schriftart festlegen?

            MfG
            eMd

            Master: Intel NUC 16GB/500GB
            Slave: Raspberry Pi 3 + Homematicmodul
            Shelly, Google Home, Zigbee Aqara, Sonoff

            Meine VIS: https://youtu.be/JMYr2KYlpME

            1 Antwort Letzte Antwort
            0
            • S SabineT

              @da_Woody sagte in Test Adapter iQontrol 1.5.x:

              @SabineT nicht so ganz wenn ich mir das so durchlese...

              Beschreibung:
              This is a flot-chart widget. It will display the history of the datapoint linked to STATE or LEVEL. You need to have a history adapter up and running and the linked Datapoint needs to be logged to get this working!

              Das ist schon klar, nur wird die Leistung eben weder in STATE noch in LEVEL geliefert. Aber @s-bormann hat schon geschrieben, dass er das bei Gelegenheit einbauen wird.

              da_WoodyD Online
              da_WoodyD Online
              da_Woody
              schrieb am zuletzt editiert von
              #4066

              @SabineT nicht bös sein, aber irgendwie reden wir anscheinend von was anderem...
              ich hab jetzt nur ganz auf die schnelle ein bestehendes grafana chart als background url angegeben. müsste man noch anpassen, aber zum probieren reichts...
              040e22fd-3a34-4d4e-a056-476c56eacbe6-grafik.png

              gruß vom Woody
              HAPPINESS is not a DESTINATION, it's a WAY of LIFE!

              1 Antwort Letzte Antwort
              0
              • SlowmanS Offline
                SlowmanS Offline
                Slowman
                schrieb am zuletzt editiert von Slowman
                #4067

                Aktuelle Version installiert 1.5.2

                Ersteinrichtung, alles gelöscht und beim Anlegen von Ansichten diese Meldung beim Speichern
                Screenshot_2020-12-18 instances - ioBroker.png

                Danach wechselt er ioBroker Übersicht. Das gleiche auch bei der Toolbar. Wenn ich dann iQontrol öffne bekomme ich die Symbole angezeigt, aber keine Schrift.

                Screenshot_2020-12-18 iQontrol.png

                Werde es jetzt nochmal löschen und eine alte Version nehmen

                Gleiche Problem bei 1.5.0 bei mir, anderer Browser auch so.

                K 1 Antwort Letzte Antwort
                0
                • SlowmanS Slowman

                  Aktuelle Version installiert 1.5.2

                  Ersteinrichtung, alles gelöscht und beim Anlegen von Ansichten diese Meldung beim Speichern
                  Screenshot_2020-12-18 instances - ioBroker.png

                  Danach wechselt er ioBroker Übersicht. Das gleiche auch bei der Toolbar. Wenn ich dann iQontrol öffne bekomme ich die Symbole angezeigt, aber keine Schrift.

                  Screenshot_2020-12-18 iQontrol.png

                  Werde es jetzt nochmal löschen und eine alte Version nehmen

                  Gleiche Problem bei 1.5.0 bei mir, anderer Browser auch so.

                  K Offline
                  K Offline
                  Kueppert
                  schrieb am zuletzt editiert von
                  #4068

                  @Slowman die Meldung ist normal. Liegt nicht am Adapter...sondern Admin wars glaub ich

                  UDM Pro, Intel NUC - ioBroker in Proxmox-VM, PiHole+Grafana&Influx+TasmoAdmin in LXCs, Raspberry Pi3 (als CCU), Zigbee-Stick Sonoff, Synology DS918+

                  SlowmanS 1 Antwort Letzte Antwort
                  0
                  • K Kueppert

                    @Slowman die Meldung ist normal. Liegt nicht am Adapter...sondern Admin wars glaub ich

                    SlowmanS Offline
                    SlowmanS Offline
                    Slowman
                    schrieb am zuletzt editiert von Slowman
                    #4069

                    @Kueppert

                    Ok, Danke für die Antwort.

                    So das Problem mit den nicht Anzeigen von Schriften für mich gelöst, ist aber auch ne böse Falle für Anfänger 🙄

                    Alle Farben sind auf #000000 Schwarz gestellt und somit guggt man erst Mal dumm rein. Vielleicht sollte man dies ändern, auf grau die Schriftfarbe.

                    s.bormannS 1 Antwort Letzte Antwort
                    0
                    • SlowmanS Slowman

                      @Kueppert

                      Ok, Danke für die Antwort.

                      So das Problem mit den nicht Anzeigen von Schriften für mich gelöst, ist aber auch ne böse Falle für Anfänger 🙄

                      Alle Farben sind auf #000000 Schwarz gestellt und somit guggt man erst Mal dumm rein. Vielleicht sollte man dies ändern, auf grau die Schriftfarbe.

                      s.bormannS Offline
                      s.bormannS Offline
                      s.bormann
                      Most Active
                      schrieb am zuletzt editiert von
                      #4070

                      @Slowman sagte in Test Adapter iQontrol 1.5.x:

                      @Kueppert

                      Ok, Danke für die Antwort.

                      So das Problem mit den nicht Anzeigen von Schriften für mich gelöst, ist aber auch ne böse Falle für Anfänger 🙄

                      Alle Farben sind auf #000000 Schwarz gestellt und somit guggt man erst Mal dumm rein. Vielleicht sollte man dies ändern, auf grau die Schriftfarbe.

                      Hi,

                      ich arbeite an dem Fehler mit den schwarzen Farben. Leider muss bei Neuinstallationen aktuell bei allen Farben unter den Optionen auf das "X" geklickt werden, damit die Farben wieder auf Standard gehen. Sorry für diesen Bug.

                      VG!

                      SlowmanS 1 Antwort Letzte Antwort
                      0
                      • s.bormannS s.bormann

                        @Slowman sagte in Test Adapter iQontrol 1.5.x:

                        @Kueppert

                        Ok, Danke für die Antwort.

                        So das Problem mit den nicht Anzeigen von Schriften für mich gelöst, ist aber auch ne böse Falle für Anfänger 🙄

                        Alle Farben sind auf #000000 Schwarz gestellt und somit guggt man erst Mal dumm rein. Vielleicht sollte man dies ändern, auf grau die Schriftfarbe.

                        Hi,

                        ich arbeite an dem Fehler mit den schwarzen Farben. Leider muss bei Neuinstallationen aktuell bei allen Farben unter den Optionen auf das "X" geklickt werden, damit die Farben wieder auf Standard gehen. Sorry für diesen Bug.

                        VG!

                        SlowmanS Offline
                        SlowmanS Offline
                        Slowman
                        schrieb am zuletzt editiert von
                        #4071

                        @s-bormann

                        Vielleicht sollte man solche aktuellen Fehler im 1. Posting mit aufnehmen. Denn genau dort fängt man als Neuling mit iQontrol an und verzweifelt schon bei der Installation bzw. doofe Fragen 😀

                        s.bormannS 1 Antwort Letzte Antwort
                        0
                        • SlowmanS Slowman

                          @s-bormann

                          Vielleicht sollte man solche aktuellen Fehler im 1. Posting mit aufnehmen. Denn genau dort fängt man als Neuling mit iQontrol an und verzweifelt schon bei der Installation bzw. doofe Fragen 😀

                          s.bormannS Offline
                          s.bormannS Offline
                          s.bormann
                          Most Active
                          schrieb am zuletzt editiert von
                          #4072

                          @Slowman sagte in Test Adapter iQontrol 1.5.x:

                          @s-bormann

                          Vielleicht sollte man solche aktuellen Fehler im 1. Posting mit aufnehmen. Denn genau dort fängt man als Neuling mit iQontrol an und verzweifelt schon bei der Installation bzw. doofe Fragen 😀

                          Hi, mit der 1.5.3 (lädt gerade hoch) ist der Fehler (hoffentlich) behoben. LG!

                          1 Antwort Letzte Antwort
                          2
                          • dslraserD dslraser

                            @da_Woody

                            3x3

                            Bildschirmfoto 2020-12-10 um 08.44.02.png

                            Vollbild

                            Bildschirmfoto 2020-12-10 um 08.44.24.png

                            oder meinst du wegen dem rest der drunter leer angezeigt wird? wenn ja und du schaffst das, geb ich einen aus!

                            was bekommst Du da nicht hin ?

                            EDIT: 3x1 reicht auch (passt sich ja an)
                            Bildschirmfoto 2020-12-10 um 08.50.08.png

                            EDIT2:
                            am Handy bei 3×1
                            Screenshot_20201210-085624_Chrome.jpg

                            einmal scrollen bei 3×1
                            Screenshot_20201210-085640_Chrome.jpg

                            vergrößert auf Vollbild
                            Screenshot_20201210-085656_Chrome.jpg

                            SlowmanS Offline
                            SlowmanS Offline
                            Slowman
                            schrieb am zuletzt editiert von
                            #4073

                            @s-bormann

                            Ja jetzt funzt es, musste nochmal von vorn anfangen.

                            Sag mal, für das Covid 19 Widget, wie bzw. wo importiere ich denn die *.json Datei?

                            @dslraser

                            Wie hast du denn das mit der digitalen Uhr hinbekommen?

                            Screenshot_2020-12-19 Test Adapter iQontrol 1 5 x.png

                            Bei dem Wetter will er nicht.

                            Screenshot_2020-12-19 instances - ioBroker.png
                            Screenshot_2020-12-19 iQontrol.png

                            Wenn ich auf den Button klicke kommt das Wetter dann, aber als lange Zeile

                            dslraserD 1 Antwort Letzte Antwort
                            0
                            • SlowmanS Slowman

                              @s-bormann

                              Ja jetzt funzt es, musste nochmal von vorn anfangen.

                              Sag mal, für das Covid 19 Widget, wie bzw. wo importiere ich denn die *.json Datei?

                              @dslraser

                              Wie hast du denn das mit der digitalen Uhr hinbekommen?

                              Screenshot_2020-12-19 Test Adapter iQontrol 1 5 x.png

                              Bei dem Wetter will er nicht.

                              Screenshot_2020-12-19 instances - ioBroker.png
                              Screenshot_2020-12-19 iQontrol.png

                              Wenn ich auf den Button klicke kommt das Wetter dann, aber als lange Zeile

                              dslraserD Offline
                              dslraserD Offline
                              dslraser
                              Forum Testing Most Active
                              schrieb am zuletzt editiert von
                              #4074

                              @Slowman sagte in Test Adapter iQontrol 1.5.x:

                              Wie hast du denn das mit der digitalen Uhr hinbekommen?

                              Das ist ein Script von @blackeagle998
                              weiter oben im Forum.

                              SlowmanS 1 Antwort Letzte Antwort
                              0
                              • dslraserD dslraser

                                @Slowman sagte in Test Adapter iQontrol 1.5.x:

                                Wie hast du denn das mit der digitalen Uhr hinbekommen?

                                Das ist ein Script von @blackeagle998
                                weiter oben im Forum.

                                SlowmanS Offline
                                SlowmanS Offline
                                Slowman
                                schrieb am zuletzt editiert von
                                #4075

                                @dslraser

                                Nach knapp 900 Postings hochspulen gefunden:

                                Falls nocg Jemand sucht: https://forum.iobroker.net/topic/22039/test-adapter-iqontrol-1-5-x/3145

                                1 Antwort Letzte Antwort
                                1
                                • H Offline
                                  H Offline
                                  Hc-Yami
                                  schrieb am zuletzt editiert von
                                  #4076

                                  Guten Tag,
                                  irgendwie komme ich nicht weiter.
                                  Ein Kollege hat einen Raspberry Pi 3. Auf diesem ist ioBroker installiert.
                                  iQontrol zeigt nur folgendes Bild:

                                  3228e3e9-dbce-4be7-ab6d-5f1f5cd86f1c-grafik.png

                                  Daraufhin hatte ich ihm gesagt "arschlecken, wir wollen sowieso auf RPi 4 wechseln".
                                  Gesagt getan. Raspberry Pi 4 gekauft, komplett neu mit ioBroker aufgesetzt. Gleiches Fenster. Das Ding ist also komplett neu aufgesetzt, leider funktioniert auch hier iQontrol nicht. 😞

                                  web.0:
                                  9d075a1c-04a3-4ca0-8bf8-39f8fe17e1c1-grafik.png

                                  iqontrol.0	2020-12-19 15:05:23.740	debug	(7165) DeviceObject Popup.Message ist still in use - not deleting.
                                  iqontrol.0	2020-12-19 15:05:23.739	debug	(7165) DeviceObject Popup.CLEAR ist still in use - not deleting.
                                  iqontrol.0	2020-12-19 15:05:23.739	debug	(7165) DeviceObject Popup.Duration ist still in use - not deleting.
                                  iqontrol.0	2020-12-19 15:05:23.739	debug	(7165) DeviceObject Popup.ClickedValue ist still in use - not deleting.
                                  iqontrol.0	2020-12-19 15:05:23.738	debug	(7165) DeviceObject Popup.ClickedDestinationState ist still in use - not deleting.
                                  iqontrol.0	2020-12-19 15:05:23.728	debug	(7165) DeviceObject Popup.POPUP_CLICKED ist still in use - not deleting.
                                  iqontrol.0	2020-12-19 15:05:23.728	debug	(7165) DeviceObject Popup.ButtonNames ist still in use - not deleting.
                                  iqontrol.0	2020-12-19 15:05:23.727	debug	(7165) DeviceObject Popup.ButtonValues ist still in use - not deleting.
                                  iqontrol.0	2020-12-19 15:05:23.727	debug	(7165) DeviceObject Popup.ButtonDestinationStates ist still in use - not deleting.
                                  iqontrol.0	2020-12-19 15:05:23.727	debug	(7165) DeviceObject Popup.ButtonCloses ist still in use - not deleting.
                                  iqontrol.0	2020-12-19 15:05:23.726	debug	(7165) DeviceObject Popup.BUTTON_CLICKED ist still in use - not deleting.
                                  iqontrol.0	2020-12-19 15:05:23.726	debug	(7165) Adapter Object IDs: 11 (iqontrol.0.Popup.BUTTON_CLICKED,iqontrol.0.Popup.ButtonCloses,iqontrol.0.Popup.ButtonDestinationStates,iqontrol.0.Popup.ButtonValues,iqontrol.0.Popup.ButtonNames,iqontro
                                  iqontrol.0	2020-12-19 15:05:23.725	debug	(7165) Got Adapter Objects
                                  iqontrol.0	2020-12-19 15:05:23.719	info	(7165) state iqontrol.0.info.connection changed: true (ack = true)
                                  iqontrol.0	2020-12-19 15:05:23.707	info	(7165) iQontrol ready.
                                  iqontrol.0	2020-12-19 15:05:23.705	info	(7165) Deleting unused Objects...
                                  iqontrol.0	2020-12-19 15:05:23.704	info	(7165) Creating Widget States...
                                  iqontrol.0	2020-12-19 15:05:23.703	debug	(7165) created: Popup.BUTTON_CLICKED
                                  iqontrol.0	2020-12-19 15:05:23.699	debug	(7165) created: Popup.ButtonCloses
                                  iqontrol.0	2020-12-19 15:05:23.695	debug	(7165) created: Popup.ButtonDestinationStates
                                  iqontrol.0	2020-12-19 15:05:23.690	debug	(7165) created: Popup.ButtonValues
                                  iqontrol.0	2020-12-19 15:05:23.686	debug	(7165) created: Popup.ButtonNames
                                  iqontrol.0	2020-12-19 15:05:23.682	debug	(7165) created: Popup.POPUP_CLICKED
                                  iqontrol.0	2020-12-19 15:05:23.677	debug	(7165) created: Popup.ClickedDestinationState
                                  iqontrol.0	2020-12-19 15:05:23.673	debug	(7165) created: Popup.ClickedValue
                                  iqontrol.0	2020-12-19 15:05:23.668	debug	(7165) created: Popup.Duration
                                  iqontrol.0	2020-12-19 15:05:23.662	debug	(7165) created: Popup.CLEAR
                                  iqontrol.0	2020-12-19 15:05:23.657	debug	(7165) created: Popup.Message
                                  iqontrol.0	2020-12-19 15:05:23.623	info	(7165) Creating Popup States...
                                  iqontrol.0	2020-12-19 15:05:23.593	info	(7165) starting. Version 1.5.0 in /opt/iobroker/node_modules/iobroker.iqontrol, node: v12.20.0, js-controller: 3.1.6
                                  iqontrol.0	2020-12-19 15:05:23.580	info	(7165) Plugin sentry Sentry Plugin disabled for this process because sending of statistic data is disabled for the system
                                  iqontrol.0	2020-12-19 15:05:23.575	debug	(7165) Plugin sentry Initialize Plugin (enabled=true)
                                  host.ioBrokerPi	2020-12-19 15:05:22.429	info	instance system.adapter.iqontrol.0 started with pid 7165
                                  host.ioBrokerPi	2020-12-19 14:05:19.919	info	instance system.adapter.iqontrol.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                                  iqontrol.0	2020-12-19 14:05:19.405	info	(7149) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                  

                                  Es ist node v12.20.0 wie auf meinem System wo iQontrol funktioniert.
                                  Woran könnte der Fehler noch liegen? 😕

                                  SlowmanS s.bormannS 2 Antworten Letzte Antwort
                                  0
                                  • H Hc-Yami

                                    Guten Tag,
                                    irgendwie komme ich nicht weiter.
                                    Ein Kollege hat einen Raspberry Pi 3. Auf diesem ist ioBroker installiert.
                                    iQontrol zeigt nur folgendes Bild:

                                    3228e3e9-dbce-4be7-ab6d-5f1f5cd86f1c-grafik.png

                                    Daraufhin hatte ich ihm gesagt "arschlecken, wir wollen sowieso auf RPi 4 wechseln".
                                    Gesagt getan. Raspberry Pi 4 gekauft, komplett neu mit ioBroker aufgesetzt. Gleiches Fenster. Das Ding ist also komplett neu aufgesetzt, leider funktioniert auch hier iQontrol nicht. 😞

                                    web.0:
                                    9d075a1c-04a3-4ca0-8bf8-39f8fe17e1c1-grafik.png

                                    iqontrol.0	2020-12-19 15:05:23.740	debug	(7165) DeviceObject Popup.Message ist still in use - not deleting.
                                    iqontrol.0	2020-12-19 15:05:23.739	debug	(7165) DeviceObject Popup.CLEAR ist still in use - not deleting.
                                    iqontrol.0	2020-12-19 15:05:23.739	debug	(7165) DeviceObject Popup.Duration ist still in use - not deleting.
                                    iqontrol.0	2020-12-19 15:05:23.739	debug	(7165) DeviceObject Popup.ClickedValue ist still in use - not deleting.
                                    iqontrol.0	2020-12-19 15:05:23.738	debug	(7165) DeviceObject Popup.ClickedDestinationState ist still in use - not deleting.
                                    iqontrol.0	2020-12-19 15:05:23.728	debug	(7165) DeviceObject Popup.POPUP_CLICKED ist still in use - not deleting.
                                    iqontrol.0	2020-12-19 15:05:23.728	debug	(7165) DeviceObject Popup.ButtonNames ist still in use - not deleting.
                                    iqontrol.0	2020-12-19 15:05:23.727	debug	(7165) DeviceObject Popup.ButtonValues ist still in use - not deleting.
                                    iqontrol.0	2020-12-19 15:05:23.727	debug	(7165) DeviceObject Popup.ButtonDestinationStates ist still in use - not deleting.
                                    iqontrol.0	2020-12-19 15:05:23.727	debug	(7165) DeviceObject Popup.ButtonCloses ist still in use - not deleting.
                                    iqontrol.0	2020-12-19 15:05:23.726	debug	(7165) DeviceObject Popup.BUTTON_CLICKED ist still in use - not deleting.
                                    iqontrol.0	2020-12-19 15:05:23.726	debug	(7165) Adapter Object IDs: 11 (iqontrol.0.Popup.BUTTON_CLICKED,iqontrol.0.Popup.ButtonCloses,iqontrol.0.Popup.ButtonDestinationStates,iqontrol.0.Popup.ButtonValues,iqontrol.0.Popup.ButtonNames,iqontro
                                    iqontrol.0	2020-12-19 15:05:23.725	debug	(7165) Got Adapter Objects
                                    iqontrol.0	2020-12-19 15:05:23.719	info	(7165) state iqontrol.0.info.connection changed: true (ack = true)
                                    iqontrol.0	2020-12-19 15:05:23.707	info	(7165) iQontrol ready.
                                    iqontrol.0	2020-12-19 15:05:23.705	info	(7165) Deleting unused Objects...
                                    iqontrol.0	2020-12-19 15:05:23.704	info	(7165) Creating Widget States...
                                    iqontrol.0	2020-12-19 15:05:23.703	debug	(7165) created: Popup.BUTTON_CLICKED
                                    iqontrol.0	2020-12-19 15:05:23.699	debug	(7165) created: Popup.ButtonCloses
                                    iqontrol.0	2020-12-19 15:05:23.695	debug	(7165) created: Popup.ButtonDestinationStates
                                    iqontrol.0	2020-12-19 15:05:23.690	debug	(7165) created: Popup.ButtonValues
                                    iqontrol.0	2020-12-19 15:05:23.686	debug	(7165) created: Popup.ButtonNames
                                    iqontrol.0	2020-12-19 15:05:23.682	debug	(7165) created: Popup.POPUP_CLICKED
                                    iqontrol.0	2020-12-19 15:05:23.677	debug	(7165) created: Popup.ClickedDestinationState
                                    iqontrol.0	2020-12-19 15:05:23.673	debug	(7165) created: Popup.ClickedValue
                                    iqontrol.0	2020-12-19 15:05:23.668	debug	(7165) created: Popup.Duration
                                    iqontrol.0	2020-12-19 15:05:23.662	debug	(7165) created: Popup.CLEAR
                                    iqontrol.0	2020-12-19 15:05:23.657	debug	(7165) created: Popup.Message
                                    iqontrol.0	2020-12-19 15:05:23.623	info	(7165) Creating Popup States...
                                    iqontrol.0	2020-12-19 15:05:23.593	info	(7165) starting. Version 1.5.0 in /opt/iobroker/node_modules/iobroker.iqontrol, node: v12.20.0, js-controller: 3.1.6
                                    iqontrol.0	2020-12-19 15:05:23.580	info	(7165) Plugin sentry Sentry Plugin disabled for this process because sending of statistic data is disabled for the system
                                    iqontrol.0	2020-12-19 15:05:23.575	debug	(7165) Plugin sentry Initialize Plugin (enabled=true)
                                    host.ioBrokerPi	2020-12-19 15:05:22.429	info	instance system.adapter.iqontrol.0 started with pid 7165
                                    host.ioBrokerPi	2020-12-19 14:05:19.919	info	instance system.adapter.iqontrol.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                                    iqontrol.0	2020-12-19 14:05:19.405	info	(7149) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                    

                                    Es ist node v12.20.0 wie auf meinem System wo iQontrol funktioniert.
                                    Woran könnte der Fehler noch liegen? 😕

                                    SlowmanS Offline
                                    SlowmanS Offline
                                    Slowman
                                    schrieb am zuletzt editiert von
                                    #4077

                                    @Hc-Yami

                                    Hast du nach der Installation eine Instanz erstellt? Sieht nämlich genau wie bei mir beim 1. Mal aus 😁

                                    Screenshot_2020-12-19 adapters - ioBroker.png

                                    1 Antwort Letzte Antwort
                                    0
                                    • SlowmanS Offline
                                      SlowmanS Offline
                                      Slowman
                                      schrieb am zuletzt editiert von
                                      #4078

                                      Screenshot_2020-12-19 iQontrol(2).png

                                      Hmm... Adapter daswetter läuft, Grafiken im richtigen Ordner, aber keine Grafiken werden angezeigt. Jemand einen Tipp für mich

                                      1 Antwort Letzte Antwort
                                      0
                                      • H Hc-Yami

                                        Guten Tag,
                                        irgendwie komme ich nicht weiter.
                                        Ein Kollege hat einen Raspberry Pi 3. Auf diesem ist ioBroker installiert.
                                        iQontrol zeigt nur folgendes Bild:

                                        3228e3e9-dbce-4be7-ab6d-5f1f5cd86f1c-grafik.png

                                        Daraufhin hatte ich ihm gesagt "arschlecken, wir wollen sowieso auf RPi 4 wechseln".
                                        Gesagt getan. Raspberry Pi 4 gekauft, komplett neu mit ioBroker aufgesetzt. Gleiches Fenster. Das Ding ist also komplett neu aufgesetzt, leider funktioniert auch hier iQontrol nicht. 😞

                                        web.0:
                                        9d075a1c-04a3-4ca0-8bf8-39f8fe17e1c1-grafik.png

                                        iqontrol.0	2020-12-19 15:05:23.740	debug	(7165) DeviceObject Popup.Message ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.739	debug	(7165) DeviceObject Popup.CLEAR ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.739	debug	(7165) DeviceObject Popup.Duration ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.739	debug	(7165) DeviceObject Popup.ClickedValue ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.738	debug	(7165) DeviceObject Popup.ClickedDestinationState ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.728	debug	(7165) DeviceObject Popup.POPUP_CLICKED ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.728	debug	(7165) DeviceObject Popup.ButtonNames ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.727	debug	(7165) DeviceObject Popup.ButtonValues ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.727	debug	(7165) DeviceObject Popup.ButtonDestinationStates ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.727	debug	(7165) DeviceObject Popup.ButtonCloses ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.726	debug	(7165) DeviceObject Popup.BUTTON_CLICKED ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.726	debug	(7165) Adapter Object IDs: 11 (iqontrol.0.Popup.BUTTON_CLICKED,iqontrol.0.Popup.ButtonCloses,iqontrol.0.Popup.ButtonDestinationStates,iqontrol.0.Popup.ButtonValues,iqontrol.0.Popup.ButtonNames,iqontro
                                        iqontrol.0	2020-12-19 15:05:23.725	debug	(7165) Got Adapter Objects
                                        iqontrol.0	2020-12-19 15:05:23.719	info	(7165) state iqontrol.0.info.connection changed: true (ack = true)
                                        iqontrol.0	2020-12-19 15:05:23.707	info	(7165) iQontrol ready.
                                        iqontrol.0	2020-12-19 15:05:23.705	info	(7165) Deleting unused Objects...
                                        iqontrol.0	2020-12-19 15:05:23.704	info	(7165) Creating Widget States...
                                        iqontrol.0	2020-12-19 15:05:23.703	debug	(7165) created: Popup.BUTTON_CLICKED
                                        iqontrol.0	2020-12-19 15:05:23.699	debug	(7165) created: Popup.ButtonCloses
                                        iqontrol.0	2020-12-19 15:05:23.695	debug	(7165) created: Popup.ButtonDestinationStates
                                        iqontrol.0	2020-12-19 15:05:23.690	debug	(7165) created: Popup.ButtonValues
                                        iqontrol.0	2020-12-19 15:05:23.686	debug	(7165) created: Popup.ButtonNames
                                        iqontrol.0	2020-12-19 15:05:23.682	debug	(7165) created: Popup.POPUP_CLICKED
                                        iqontrol.0	2020-12-19 15:05:23.677	debug	(7165) created: Popup.ClickedDestinationState
                                        iqontrol.0	2020-12-19 15:05:23.673	debug	(7165) created: Popup.ClickedValue
                                        iqontrol.0	2020-12-19 15:05:23.668	debug	(7165) created: Popup.Duration
                                        iqontrol.0	2020-12-19 15:05:23.662	debug	(7165) created: Popup.CLEAR
                                        iqontrol.0	2020-12-19 15:05:23.657	debug	(7165) created: Popup.Message
                                        iqontrol.0	2020-12-19 15:05:23.623	info	(7165) Creating Popup States...
                                        iqontrol.0	2020-12-19 15:05:23.593	info	(7165) starting. Version 1.5.0 in /opt/iobroker/node_modules/iobroker.iqontrol, node: v12.20.0, js-controller: 3.1.6
                                        iqontrol.0	2020-12-19 15:05:23.580	info	(7165) Plugin sentry Sentry Plugin disabled for this process because sending of statistic data is disabled for the system
                                        iqontrol.0	2020-12-19 15:05:23.575	debug	(7165) Plugin sentry Initialize Plugin (enabled=true)
                                        host.ioBrokerPi	2020-12-19 15:05:22.429	info	instance system.adapter.iqontrol.0 started with pid 7165
                                        host.ioBrokerPi	2020-12-19 14:05:19.919	info	instance system.adapter.iqontrol.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                                        iqontrol.0	2020-12-19 14:05:19.405	info	(7149) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                        

                                        Es ist node v12.20.0 wie auf meinem System wo iQontrol funktioniert.
                                        Woran könnte der Fehler noch liegen? 😕

                                        s.bormannS Offline
                                        s.bormannS Offline
                                        s.bormann
                                        Most Active
                                        schrieb am zuletzt editiert von
                                        #4079

                                        @Hc-Yami sagte in Test Adapter iQontrol 1.5.x:

                                        Guten Tag,
                                        irgendwie komme ich nicht weiter.
                                        Ein Kollege hat einen Raspberry Pi 3. Auf diesem ist ioBroker installiert.
                                        iQontrol zeigt nur folgendes Bild:

                                        3228e3e9-dbce-4be7-ab6d-5f1f5cd86f1c-grafik.png

                                        Daraufhin hatte ich ihm gesagt "arschlecken, wir wollen sowieso auf RPi 4 wechseln".
                                        Gesagt getan. Raspberry Pi 4 gekauft, komplett neu mit ioBroker aufgesetzt. Gleiches Fenster. Das Ding ist also komplett neu aufgesetzt, leider funktioniert auch hier iQontrol nicht. 😞

                                        web.0:
                                        9d075a1c-04a3-4ca0-8bf8-39f8fe17e1c1-grafik.png

                                        iqontrol.0	2020-12-19 15:05:23.740	debug	(7165) DeviceObject Popup.Message ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.739	debug	(7165) DeviceObject Popup.CLEAR ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.739	debug	(7165) DeviceObject Popup.Duration ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.739	debug	(7165) DeviceObject Popup.ClickedValue ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.738	debug	(7165) DeviceObject Popup.ClickedDestinationState ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.728	debug	(7165) DeviceObject Popup.POPUP_CLICKED ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.728	debug	(7165) DeviceObject Popup.ButtonNames ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.727	debug	(7165) DeviceObject Popup.ButtonValues ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.727	debug	(7165) DeviceObject Popup.ButtonDestinationStates ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.727	debug	(7165) DeviceObject Popup.ButtonCloses ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.726	debug	(7165) DeviceObject Popup.BUTTON_CLICKED ist still in use - not deleting.
                                        iqontrol.0	2020-12-19 15:05:23.726	debug	(7165) Adapter Object IDs: 11 (iqontrol.0.Popup.BUTTON_CLICKED,iqontrol.0.Popup.ButtonCloses,iqontrol.0.Popup.ButtonDestinationStates,iqontrol.0.Popup.ButtonValues,iqontrol.0.Popup.ButtonNames,iqontro
                                        iqontrol.0	2020-12-19 15:05:23.725	debug	(7165) Got Adapter Objects
                                        iqontrol.0	2020-12-19 15:05:23.719	info	(7165) state iqontrol.0.info.connection changed: true (ack = true)
                                        iqontrol.0	2020-12-19 15:05:23.707	info	(7165) iQontrol ready.
                                        iqontrol.0	2020-12-19 15:05:23.705	info	(7165) Deleting unused Objects...
                                        iqontrol.0	2020-12-19 15:05:23.704	info	(7165) Creating Widget States...
                                        iqontrol.0	2020-12-19 15:05:23.703	debug	(7165) created: Popup.BUTTON_CLICKED
                                        iqontrol.0	2020-12-19 15:05:23.699	debug	(7165) created: Popup.ButtonCloses
                                        iqontrol.0	2020-12-19 15:05:23.695	debug	(7165) created: Popup.ButtonDestinationStates
                                        iqontrol.0	2020-12-19 15:05:23.690	debug	(7165) created: Popup.ButtonValues
                                        iqontrol.0	2020-12-19 15:05:23.686	debug	(7165) created: Popup.ButtonNames
                                        iqontrol.0	2020-12-19 15:05:23.682	debug	(7165) created: Popup.POPUP_CLICKED
                                        iqontrol.0	2020-12-19 15:05:23.677	debug	(7165) created: Popup.ClickedDestinationState
                                        iqontrol.0	2020-12-19 15:05:23.673	debug	(7165) created: Popup.ClickedValue
                                        iqontrol.0	2020-12-19 15:05:23.668	debug	(7165) created: Popup.Duration
                                        iqontrol.0	2020-12-19 15:05:23.662	debug	(7165) created: Popup.CLEAR
                                        iqontrol.0	2020-12-19 15:05:23.657	debug	(7165) created: Popup.Message
                                        iqontrol.0	2020-12-19 15:05:23.623	info	(7165) Creating Popup States...
                                        iqontrol.0	2020-12-19 15:05:23.593	info	(7165) starting. Version 1.5.0 in /opt/iobroker/node_modules/iobroker.iqontrol, node: v12.20.0, js-controller: 3.1.6
                                        iqontrol.0	2020-12-19 15:05:23.580	info	(7165) Plugin sentry Sentry Plugin disabled for this process because sending of statistic data is disabled for the system
                                        iqontrol.0	2020-12-19 15:05:23.575	debug	(7165) Plugin sentry Initialize Plugin (enabled=true)
                                        host.ioBrokerPi	2020-12-19 15:05:22.429	info	instance system.adapter.iqontrol.0 started with pid 7165
                                        host.ioBrokerPi	2020-12-19 14:05:19.919	info	instance system.adapter.iqontrol.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                                        iqontrol.0	2020-12-19 14:05:19.405	info	(7149) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                        

                                        Es ist node v12.20.0 wie auf meinem System wo iQontrol funktioniert.
                                        Woran könnte der Fehler noch liegen? 😕

                                        Hi,

                                        ich glaube das liegt daran, dass nach dem ersten Start die Demo-Konfiguration nicht gespeichert wurde. Das ist von mir leider nicht gut dokumentiert gewesen. Lade mal bitte die aktuelle Github-Version, da habe ich das so verbessert, dass jetzt man eine Meldung bekommt, wenn keine Konfiguration besteht und gefragt wird, ob man die Demo-View laden möchte. Und dann kommt auch der Hinweis, bitte jetzt zu speichern.
                                        Hilft das?

                                        LG

                                        H 1 Antwort Letzte Antwort
                                        0
                                        • s.bormannS s.bormann

                                          @Hc-Yami sagte in Test Adapter iQontrol 1.5.x:

                                          Guten Tag,
                                          irgendwie komme ich nicht weiter.
                                          Ein Kollege hat einen Raspberry Pi 3. Auf diesem ist ioBroker installiert.
                                          iQontrol zeigt nur folgendes Bild:

                                          3228e3e9-dbce-4be7-ab6d-5f1f5cd86f1c-grafik.png

                                          Daraufhin hatte ich ihm gesagt "arschlecken, wir wollen sowieso auf RPi 4 wechseln".
                                          Gesagt getan. Raspberry Pi 4 gekauft, komplett neu mit ioBroker aufgesetzt. Gleiches Fenster. Das Ding ist also komplett neu aufgesetzt, leider funktioniert auch hier iQontrol nicht. 😞

                                          web.0:
                                          9d075a1c-04a3-4ca0-8bf8-39f8fe17e1c1-grafik.png

                                          iqontrol.0	2020-12-19 15:05:23.740	debug	(7165) DeviceObject Popup.Message ist still in use - not deleting.
                                          iqontrol.0	2020-12-19 15:05:23.739	debug	(7165) DeviceObject Popup.CLEAR ist still in use - not deleting.
                                          iqontrol.0	2020-12-19 15:05:23.739	debug	(7165) DeviceObject Popup.Duration ist still in use - not deleting.
                                          iqontrol.0	2020-12-19 15:05:23.739	debug	(7165) DeviceObject Popup.ClickedValue ist still in use - not deleting.
                                          iqontrol.0	2020-12-19 15:05:23.738	debug	(7165) DeviceObject Popup.ClickedDestinationState ist still in use - not deleting.
                                          iqontrol.0	2020-12-19 15:05:23.728	debug	(7165) DeviceObject Popup.POPUP_CLICKED ist still in use - not deleting.
                                          iqontrol.0	2020-12-19 15:05:23.728	debug	(7165) DeviceObject Popup.ButtonNames ist still in use - not deleting.
                                          iqontrol.0	2020-12-19 15:05:23.727	debug	(7165) DeviceObject Popup.ButtonValues ist still in use - not deleting.
                                          iqontrol.0	2020-12-19 15:05:23.727	debug	(7165) DeviceObject Popup.ButtonDestinationStates ist still in use - not deleting.
                                          iqontrol.0	2020-12-19 15:05:23.727	debug	(7165) DeviceObject Popup.ButtonCloses ist still in use - not deleting.
                                          iqontrol.0	2020-12-19 15:05:23.726	debug	(7165) DeviceObject Popup.BUTTON_CLICKED ist still in use - not deleting.
                                          iqontrol.0	2020-12-19 15:05:23.726	debug	(7165) Adapter Object IDs: 11 (iqontrol.0.Popup.BUTTON_CLICKED,iqontrol.0.Popup.ButtonCloses,iqontrol.0.Popup.ButtonDestinationStates,iqontrol.0.Popup.ButtonValues,iqontrol.0.Popup.ButtonNames,iqontro
                                          iqontrol.0	2020-12-19 15:05:23.725	debug	(7165) Got Adapter Objects
                                          iqontrol.0	2020-12-19 15:05:23.719	info	(7165) state iqontrol.0.info.connection changed: true (ack = true)
                                          iqontrol.0	2020-12-19 15:05:23.707	info	(7165) iQontrol ready.
                                          iqontrol.0	2020-12-19 15:05:23.705	info	(7165) Deleting unused Objects...
                                          iqontrol.0	2020-12-19 15:05:23.704	info	(7165) Creating Widget States...
                                          iqontrol.0	2020-12-19 15:05:23.703	debug	(7165) created: Popup.BUTTON_CLICKED
                                          iqontrol.0	2020-12-19 15:05:23.699	debug	(7165) created: Popup.ButtonCloses
                                          iqontrol.0	2020-12-19 15:05:23.695	debug	(7165) created: Popup.ButtonDestinationStates
                                          iqontrol.0	2020-12-19 15:05:23.690	debug	(7165) created: Popup.ButtonValues
                                          iqontrol.0	2020-12-19 15:05:23.686	debug	(7165) created: Popup.ButtonNames
                                          iqontrol.0	2020-12-19 15:05:23.682	debug	(7165) created: Popup.POPUP_CLICKED
                                          iqontrol.0	2020-12-19 15:05:23.677	debug	(7165) created: Popup.ClickedDestinationState
                                          iqontrol.0	2020-12-19 15:05:23.673	debug	(7165) created: Popup.ClickedValue
                                          iqontrol.0	2020-12-19 15:05:23.668	debug	(7165) created: Popup.Duration
                                          iqontrol.0	2020-12-19 15:05:23.662	debug	(7165) created: Popup.CLEAR
                                          iqontrol.0	2020-12-19 15:05:23.657	debug	(7165) created: Popup.Message
                                          iqontrol.0	2020-12-19 15:05:23.623	info	(7165) Creating Popup States...
                                          iqontrol.0	2020-12-19 15:05:23.593	info	(7165) starting. Version 1.5.0 in /opt/iobroker/node_modules/iobroker.iqontrol, node: v12.20.0, js-controller: 3.1.6
                                          iqontrol.0	2020-12-19 15:05:23.580	info	(7165) Plugin sentry Sentry Plugin disabled for this process because sending of statistic data is disabled for the system
                                          iqontrol.0	2020-12-19 15:05:23.575	debug	(7165) Plugin sentry Initialize Plugin (enabled=true)
                                          host.ioBrokerPi	2020-12-19 15:05:22.429	info	instance system.adapter.iqontrol.0 started with pid 7165
                                          host.ioBrokerPi	2020-12-19 14:05:19.919	info	instance system.adapter.iqontrol.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                                          iqontrol.0	2020-12-19 14:05:19.405	info	(7149) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                          

                                          Es ist node v12.20.0 wie auf meinem System wo iQontrol funktioniert.
                                          Woran könnte der Fehler noch liegen? 😕

                                          Hi,

                                          ich glaube das liegt daran, dass nach dem ersten Start die Demo-Konfiguration nicht gespeichert wurde. Das ist von mir leider nicht gut dokumentiert gewesen. Lade mal bitte die aktuelle Github-Version, da habe ich das so verbessert, dass jetzt man eine Meldung bekommt, wenn keine Konfiguration besteht und gefragt wird, ob man die Demo-View laden möchte. Und dann kommt auch der Hinweis, bitte jetzt zu speichern.
                                          Hilft das?

                                          LG

                                          H Offline
                                          H Offline
                                          Hc-Yami
                                          schrieb am zuletzt editiert von Hc-Yami
                                          #4080

                                          @s-bormann dem ist tatsächlich so. Hatte zwar geprüft was in den Ansichten so ist und auch deine Demo gesehen aber natürlich nichts bearbeitet und gespeichert.
                                          Jetzt läufts rund!
                                          Danke. 😄

                                          Ich habe tatsächlich eine weitere Verständnisfrage.
                                          Ich habe meine Velux Rolladen wie folgt eingestellt:
                                          1bb9f808-130f-4be3-bf44-ca450ae5d206-grafik.png

                                          408a0117-1eb5-4e54-aa61-67d10396766b-grafik.png

                                          Ist der Rolladen geöffnet und ich drücke auf das Symbol des Rolladen, wird dieser geschlossen.. Wenn der Rolladen geschlossen ist und ich den Knopf drücke wird dieser jedoch nicht geöffnet.

                                          Bei den Shelly Rolladen funktioniert alles problemlos. Was kann ich dagegen tun?

                                          Grüße 🙂

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


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          589

                                          Online

                                          32.4k

                                          Benutzer

                                          81.4k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Anmelden

                                          • Du hast noch kein Konto? Registrieren

                                          • Anmelden oder registrieren, um zu suchen
                                          • Erster Beitrag
                                            Letzter Beitrag
                                          0
                                          • Aktuell
                                          • Tags
                                          • Ungelesen 0
                                          • Kategorien
                                          • Unreplied
                                          • Beliebt
                                          • GitHub
                                          • Docu
                                          • Hilfe