Skip to content
  • Home
  • Recent
  • Tags
  • 0 Unread 0
  • Categories
  • Unreplied
  • Popular
  • 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

  • Default (No Skin)
  • No Skin
Collapse
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Visualisierung
  4. Support Adapter Energiefluss-erweitert v0.7.7

NEWS

  • Monatsrückblick Januar/Februar 2026 ist online!
    BluefoxB
    Bluefox
    16
    1
    282

  • Jahresrückblick 2025 – unser neuer Blogbeitrag ist online! ✨
    BluefoxB
    Bluefox
    17
    1
    4.7k

  • Neuer Blogbeitrag: Monatsrückblick - Dezember 2025 🎄
    BluefoxB
    Bluefox
    13
    1
    1.3k

Support Adapter Energiefluss-erweitert v0.7.7

Scheduled Pinned Locked Moved Visualisierung
vis
4.5k Posts 203 Posters 5.9m Views 175 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • DannyauxxD Dannyauxx

    Hallo,

    gibt es schon eine Möglichkeit ganze Instanzen zu kopieren? So könnte man eine Instanz.1 erstellen und zum basteln benutzen, ohne die Instanz.0 zu gefährden oder zu "zerstören".

    Vielen Dank für den Adapter, ist echt MEGA.
    Danny

    HomoranH Do not disturb
    HomoranH Do not disturb
    Homoran
    Global Moderator Administrators
    wrote on last edited by
    #1321

    @dannyauxx sagte in Test Adapter Energiefluss-erweitert v0.0.x GitHub/Latest:

    gibt es schon eine Möglichkeit ganze Instanzen zu kopieren? So könnte man eine Instanz.1 erstellen und zum basteln benutzen, ohne die Instanz.0 zu gefährden oder zu "zerstören".

    schon immer!
    hab ich auch gemacht.

    neue Instanz anlegen und Inhalte der Datenpunkte ( oder nur der Datenpunkt configuration) kopieren

    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 im Header. Danke!
    der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

    1 Reply Last reply
    1
    • SKBS SKB

      @christian-kohlöffel der Schatten in blau müsste ja bei 1 angezeigt werden.

      Zur Not kannst Du wechseln - heißt:
      Schwelle auf 1 stellen, dann die Farbe für 1 definieren und die Klasse transparent bei Wert unter Schwelle positiv einstellen.
      Das sollte gehen.

      Christian KohlöffelC Offline
      Christian KohlöffelC Offline
      Christian Kohlöffel
      wrote on last edited by
      #1322

      @skb sagte in Test Adapter Energiefluss-erweitert v0.0.x GitHub/Latest:

      @christian-kohlöffel der Schatten in blau müsste ja bei 1 angezeigt werden.

      Zur Not kannst Du wechseln - heißt:
      Schwelle auf 1 stellen, dann die Farbe für 1 definieren und die Klasse transparent bei Wert unter Schwelle positiv einstellen.
      Das sollte gehen.

      Habe beides versucht. Es scheint so als ob das Kommando fill nicht das richtig ist: Symbol blinkt blau aber die Farbe wird nicht verändert, siehe hier:

      dfdc1228-2a83-4d7d-9d76-596e13782b97-image.png

      .blue-pulse {
      fill: rgba(0,0,0,0.5);
      animation: blue-pulse-ani 3s linear infinite;
      }
      
      @keyframes blue-pulse-ani  {
        50% {filter: drop-shadow(0px 0px 4px #2B95F3) drop-shadow(0px 0px 4px #2B95F3) drop-shadow(0px 0px 4px #2B95F3); }
        0%,100% {filter: drop-shadow(0px 0px 4px #2B95F3); }
      }
      
      
      
      Christian KohlöffelC 1 Reply Last reply
      0
      • Christian KohlöffelC Christian Kohlöffel

        @skb sagte in Test Adapter Energiefluss-erweitert v0.0.x GitHub/Latest:

        @christian-kohlöffel der Schatten in blau müsste ja bei 1 angezeigt werden.

        Zur Not kannst Du wechseln - heißt:
        Schwelle auf 1 stellen, dann die Farbe für 1 definieren und die Klasse transparent bei Wert unter Schwelle positiv einstellen.
        Das sollte gehen.

        Habe beides versucht. Es scheint so als ob das Kommando fill nicht das richtig ist: Symbol blinkt blau aber die Farbe wird nicht verändert, siehe hier:

        dfdc1228-2a83-4d7d-9d76-596e13782b97-image.png

        .blue-pulse {
        fill: rgba(0,0,0,0.5);
        animation: blue-pulse-ani 3s linear infinite;
        }
        
        @keyframes blue-pulse-ani  {
          50% {filter: drop-shadow(0px 0px 4px #2B95F3) drop-shadow(0px 0px 4px #2B95F3) drop-shadow(0px 0px 4px #2B95F3); }
          0%,100% {filter: drop-shadow(0px 0px 4px #2B95F3); }
        }
        
        
        
        Christian KohlöffelC Offline
        Christian KohlöffelC Offline
        Christian Kohlöffel
        wrote on last edited by
        #1323

        @christian-kohlöffel

        Ich habe nun ein akzeptables Ergebnis indem ich als Standard auf transparent weiß setze und dann das Kommando stroke statt fill:

        6329714b-9383-4e35-b971-074ad9cc39a0-image.png

        .blue-pulse {
        stroke: rgb(242,14,64);
        animation: blue-pulse-ani 3s linear infinite;
        }
        
        @keyframes blue-pulse-ani  {
          50% {filter: drop-shadow(0px 0px 4px #2B95F3) drop-shadow(0px 0px 4px #2B95F3) drop-shadow(0px 0px 4px #2B95F3); }
          0%,100% {filter: drop-shadow(0px 0px 4px #2B95F3); }
        }
        
        
        1 Reply Last reply
        0
        • F Offline
          F Offline
          Fichte
          wrote on last edited by
          #1324

          Hallo zusammen

          Ist wahrscheinlich ne Blöde Frage, aber gibt es eine Copy Funktion wo ich Viereck, Datasource, Text und icon kopieren kann und wieder einfüge?
          Wenn ich zbs. 4 gleiche Objekte haben möchte währe es am schnellsten Copy/Paste.

          Lg Fichte

          ArmilarA 1 Reply Last reply
          0
          • F Fichte

            Hallo zusammen

            Ist wahrscheinlich ne Blöde Frage, aber gibt es eine Copy Funktion wo ich Viereck, Datasource, Text und icon kopieren kann und wieder einfüge?
            Wenn ich zbs. 4 gleiche Objekte haben möchte währe es am schnellsten Copy/Paste.

            Lg Fichte

            ArmilarA Offline
            ArmilarA Offline
            Armilar
            Most Active Forum Testing
            wrote on last edited by
            #1325

            @fichte

            b5495b50-8161-4fbc-8e53-ff9a0e8e7820-image.png

            Installationsanleitung, Tipps, Alias-Definitionen, FAQ für das Sonoff NSPanel mit lovelace UI unter ioBroker
            https://github.com/joBr99/nspanel-lovelace-ui/wiki

            Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

            F 1 Reply Last reply
            0
            • ArmilarA Armilar

              @fichte

              b5495b50-8161-4fbc-8e53-ff9a0e8e7820-image.png

              F Offline
              F Offline
              Fichte
              wrote on last edited by
              #1326

              @armilar Vielen Dank Aber ich hatte bis eben diese Option nicht, ich musste die Repo noch mal neu Installieren :face_with_rolling_eyes:

              HomoranH 1 Reply Last reply
              0
              • F Fichte

                @armilar Vielen Dank Aber ich hatte bis eben diese Option nicht, ich musste die Repo noch mal neu Installieren :face_with_rolling_eyes:

                HomoranH Do not disturb
                HomoranH Do not disturb
                Homoran
                Global Moderator Administrators
                wrote on last edited by
                #1327

                @fichte sagte in Test Adapter Energiefluss-erweitert v0.0.x GitHub/Latest:

                Aber ich hatte bis eben diese Option nicht

                deshalb sollte man immer die gesamte Basis im Auge haben, und die Versionen benennen.

                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 im Header. Danke!
                der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                F 1 Reply Last reply
                0
                • HomoranH Homoran

                  @fichte sagte in Test Adapter Energiefluss-erweitert v0.0.x GitHub/Latest:

                  Aber ich hatte bis eben diese Option nicht

                  deshalb sollte man immer die gesamte Basis im Auge haben, und die Versionen benennen.

                  F Offline
                  F Offline
                  Fichte
                  wrote on last edited by
                  #1328

                  @homoran Aber das man mehrere Objekte Löschen kann geht noch nicht?

                  1 Reply Last reply
                  0
                  • SKBS Offline
                    SKBS Offline
                    SKB
                    Developer Most Active
                    wrote on last edited by
                    #1329

                    Hallo Zusammen,
                    mit neuer Energie aus dem Urlaub gibt es heute eine neue Version 0.0.2-alpha.16.

                    Folgendes ist neu bzw. behoben:

                    • FIX: Der Adapter stürzte manchmal ab, weil auf ungültige IDs zugegriffen wurde
                    • Hinzugefügt: Möglichkeit, Werte zu anderen Werten zu addieren
                    • Hinzugefügt: Animationen und Werte direkt nach dem Start anzeigen, anstatt zu warten, bis sich der erste Wert ändert
                    • Hinzugefügt: Adapterabhängigkeiten und Stabilität
                    • Hinzugefügt: Neue Übersetzungen für neue Funktionen

                    Viel Spaß damit!

                    ... wer nicht mit der Zeit geht, geht mit der Zeit ...

                    Aktuelle Entwicklung: Energiefluss - erweitert (https://forum.iobroker.net/topic/64734)

                    ArmilarA 1 Reply Last reply
                    3
                    • SKBS SKB

                      Hallo Zusammen,
                      mit neuer Energie aus dem Urlaub gibt es heute eine neue Version 0.0.2-alpha.16.

                      Folgendes ist neu bzw. behoben:

                      • FIX: Der Adapter stürzte manchmal ab, weil auf ungültige IDs zugegriffen wurde
                      • Hinzugefügt: Möglichkeit, Werte zu anderen Werten zu addieren
                      • Hinzugefügt: Animationen und Werte direkt nach dem Start anzeigen, anstatt zu warten, bis sich der erste Wert ändert
                      • Hinzugefügt: Adapterabhängigkeiten und Stabilität
                      • Hinzugefügt: Neue Übersetzungen für neue Funktionen

                      Viel Spaß damit!

                      ArmilarA Offline
                      ArmilarA Offline
                      Armilar
                      Most Active Forum Testing
                      wrote on last edited by Armilar
                      #1330

                      @skb

                      Gibt es neue Einstellungen zu berücksichtigen?

                      In der Konfiguration sind die ID's jetzt keine Werte mehr

                      dbb006b7-3fe4-4843-be69-7c57616b81da-image.png

                      In der Live-Ansicht ist es so:

                      efccce39-c6ec-40e5-9881-1e166fcf78ab-image.png

                      Keine Werte und keine Animation

                      EDIT: doch alles okay - der Adapter war nach dem Update abgestüzt... :blush:

                      Installationsanleitung, Tipps, Alias-Definitionen, FAQ für das Sonoff NSPanel mit lovelace UI unter ioBroker
                      https://github.com/joBr99/nspanel-lovelace-ui/wiki

                      Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                      SKBS arteckA 2 Replies Last reply
                      1
                      • ArmilarA Armilar

                        @skb

                        Gibt es neue Einstellungen zu berücksichtigen?

                        In der Konfiguration sind die ID's jetzt keine Werte mehr

                        dbb006b7-3fe4-4843-be69-7c57616b81da-image.png

                        In der Live-Ansicht ist es so:

                        efccce39-c6ec-40e5-9881-1e166fcf78ab-image.png

                        Keine Werte und keine Animation

                        EDIT: doch alles okay - der Adapter war nach dem Update abgestüzt... :blush:

                        SKBS Offline
                        SKBS Offline
                        SKB
                        Developer Most Active
                        wrote on last edited by
                        #1331

                        @armilar Ich bekam gerade schon einen Schock :D

                        Wie ist der Adapter abgestürzt? Kannst Du das Log noch posten?

                        ... wer nicht mit der Zeit geht, geht mit der Zeit ...

                        Aktuelle Entwicklung: Energiefluss - erweitert (https://forum.iobroker.net/topic/64734)

                        WalW 1 Reply Last reply
                        0
                        • SKBS SKB

                          @armilar Ich bekam gerade schon einen Schock :D

                          Wie ist der Adapter abgestürzt? Kannst Du das Log noch posten?

                          WalW Offline
                          WalW Offline
                          Wal
                          Developer
                          wrote on last edited by
                          #1332

                          @skb ,

                          host.iobroker
                          2023-09-01 10:00:49.385	info	Restart adapter system.adapter.energiefluss-erweitert.0 because enabled
                          host.iobroker
                          2023-09-01 10:00:49.385	error	instance system.adapter.energiefluss-erweitert.0 terminated with code 6 (UNCAUGHT_EXCEPTION)
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.859	warn	Terminated (UNCAUGHT_EXCEPTION): Without reason
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.859	info	terminating
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.858	info	Cleared interval for relative values!
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.857	error	Cannot read properties of undefined (reading 'length')
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.857	error	TypeError: Cannot read properties of undefined (reading 'length') at EnergieflussErweitert.refreshData (/opt/iobroker/node_modules/iobroker.energiefluss-erweitert/main.js:633:26) at EnergieflussErweitert.getConfig (/opt/iobroker/node_modules/iobroker.energiefluss-erweitert/main.js:1168:9)
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.856	error	unhandled promise rejection: Cannot read properties of undefined (reading 'length')
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.856	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.856	error	Cannot read properties of undefined (reading 'length')
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.856	error	TypeError: Cannot read properties of undefined (reading 'length') at EnergieflussErweitert.refreshData (/opt/iobroker/node_modules/iobroker.energiefluss-erweitert/main.js:633:26) at EnergieflussErweitert.getConfig (/opt/iobroker/node_modules/iobroker.energiefluss-erweitert/main.js:1168:9)
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.856	error	unhandled promise rejection: Cannot read properties of undefined (reading 'length')
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.856	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.856	error	Cannot read properties of undefined (reading 'length')
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.856	error	TypeError: Cannot read properties of undefined (reading 'length') at EnergieflussErweitert.refreshData (/opt/iobroker/node_modules/iobroker.energiefluss-erweitert/main.js:633:26) at EnergieflussErweitert.getConfig (/opt/iobroker/node_modules/iobroker.energiefluss-erweitert/main.js:1168:9)
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.856	error	unhandled promise rejection: Cannot read properties of undefined (reading 'length')
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.856	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.855	error	Cannot read properties of undefined (reading 'length')
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.855	error	TypeError: Cannot read properties of undefined (reading 'length') at EnergieflussErweitert.refreshData (/opt/iobroker/node_modules/iobroker.energiefluss-erweitert/main.js:633:26) at EnergieflussErweitert.getConfig (/opt/iobroker/node_modules/iobroker.energiefluss-erweitert/main.js:1168:9)
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.855	error	unhandled promise rejection: Cannot read properties of undefined (reading 'length')
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.855	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.854	error	Cannot read properties of undefined (reading 'length')
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.854	error	TypeError: Cannot read properties of undefined (reading 'length') at EnergieflussErweitert.refreshData (/opt/iobroker/node_modules/iobroker.energiefluss-erweitert/main.js:633:26) at EnergieflussErweitert.getConfig (/opt/iobroker/node_modules/iobroker.energiefluss-erweitert/main.js:1168:9)
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.854	error	unhandled promise rejection: Cannot read properties of undefined (reading 'length')
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.854	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.853	error	Cannot read properties of undefined (reading 'length')
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.853	error	TypeError: Cannot read properties of undefined (reading 'length') at EnergieflussErweitert.refreshData (/opt/iobroker/node_modules/iobroker.energiefluss-erweitert/main.js:633:26) at EnergieflussErweitert.getConfig (/opt/iobroker/node_modules/iobroker.energiefluss-erweitert/main.js:1168:9)
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.853	error	unhandled promise rejection: Cannot read properties of undefined (reading 'length')
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.853	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.852	info	Requesting the following states: energiefluss-erweitert.0.configuration,sonoff.0.Haus.Stromzähler.MT175_P,0_userdata.0.Stromverbrauch_aktuell,sonoff.0.Haus.Balkonkraftwerk.ENERGY_Power,sonoff.0.Test.Steckdose3.ENERGY_Power,sonoff.0.Test.Steckdose.ENERGY_Power,sonoff.0.Test.Steckdose2.ENERGY_Power
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.852	info	Configuration loaded!
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.793	info	Adapter started. Loading config!
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:48.770	info	starting. Version 0.0.2-alpha.16 (non-npm: SKB-CGN/ioBroker.energiefluss-erweitert#b7d0fd6df1e7181a917b26c4e162aa1fe8c54078) in /opt/iobroker/node_modules/iobroker.energiefluss-erweitert, node: v18.17.1, js-controller: 5.0.12
                          host.iobroker
                          2023-09-01 10:00:48.229	info	instance system.adapter.energiefluss-erweitert.0 started with pid 103371
                          host.iobroker
                          2023-09-01 10:00:18.154	info	Restart adapter system.adapter.energiefluss-erweitert.0 because enabled
                          host.iobroker
                          2023-09-01 10:00:18.154	error	instance system.adapter.energiefluss-erweitert.0 terminated with code 6 (UNCAUGHT_EXCEPTION)
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:18.129	info	terminating
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:17.627	warn	Terminated (UNCAUGHT_EXCEPTION): Without reason
                          
                          energiefluss-erweitert.0
                          2023-09-01 10:00:17.627	info	terminating
                          

                          Gruß
                          Walter

                          DoorIO-Adapter
                          wioBrowser-Adapter und wioBrowser

                          1 Reply Last reply
                          0
                          • WalW Offline
                            WalW Offline
                            Wal
                            Developer
                            wrote on last edited by
                            #1333

                            Im Gegensatz zu @armilar bekomme ich das Update nicht mehr gestartet.

                            Gruß
                            Walter

                            DoorIO-Adapter
                            wioBrowser-Adapter und wioBrowser

                            SKBS 1 Reply Last reply
                            0
                            • WalW Wal

                              Im Gegensatz zu @armilar bekomme ich das Update nicht mehr gestartet.

                              SKBS Offline
                              SKBS Offline
                              SKB
                              Developer Most Active
                              wrote on last edited by
                              #1334

                              @wal Kein Problem. Schaue ich mir direkt an. Melde mich gleich zurück!

                              ... wer nicht mit der Zeit geht, geht mit der Zeit ...

                              Aktuelle Entwicklung: Energiefluss - erweitert (https://forum.iobroker.net/topic/64734)

                              WalW 1 Reply Last reply
                              0
                              • ArmilarA Armilar

                                @skb

                                Gibt es neue Einstellungen zu berücksichtigen?

                                In der Konfiguration sind die ID's jetzt keine Werte mehr

                                dbb006b7-3fe4-4843-be69-7c57616b81da-image.png

                                In der Live-Ansicht ist es so:

                                efccce39-c6ec-40e5-9881-1e166fcf78ab-image.png

                                Keine Werte und keine Animation

                                EDIT: doch alles okay - der Adapter war nach dem Update abgestüzt... :blush:

                                arteckA Offline
                                arteckA Offline
                                arteck
                                Developer Most Active
                                wrote on last edited by
                                #1335

                                @armilar bei mir ist alles wie immer
                                1dcf1537-831b-485b-9347-3213f407e482-grafik.png

                                zigbee hab ich, zwave auch, nuc's genauso und HA auch

                                ArmilarA 1 Reply Last reply
                                0
                                • SKBS SKB

                                  @wal Kein Problem. Schaue ich mir direkt an. Melde mich gleich zurück!

                                  WalW Offline
                                  WalW Offline
                                  Wal
                                  Developer
                                  wrote on last edited by Wal
                                  #1336

                                  @skb ,
                                  bin zurück auf die Version vom 22.08.2023 "be6549f" der startet ohne Fehler.

                                  Edit: Info >> bin auf latest mit allem.

                                  So wie ich das sehe wurden seit dem nur die Dependabot Updates eingespielt.

                                  Gruß
                                  Walter

                                  DoorIO-Adapter
                                  wioBrowser-Adapter und wioBrowser

                                  WalW 1 Reply Last reply
                                  0
                                  • arteckA arteck

                                    @armilar bei mir ist alles wie immer
                                    1dcf1537-831b-485b-9347-3213f407e482-grafik.png

                                    ArmilarA Offline
                                    ArmilarA Offline
                                    Armilar
                                    Most Active Forum Testing
                                    wrote on last edited by Armilar
                                    #1337

                                    @arteck

                                    bei mir ebenfalls alles wieder okay. Konnte die Adapter-Instanz einfach neu starten, dann war alles wieder normal.

                                    Installationsanleitung, Tipps, Alias-Definitionen, FAQ für das Sonoff NSPanel mit lovelace UI unter ioBroker
                                    https://github.com/joBr99/nspanel-lovelace-ui/wiki

                                    Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                                    1 Reply Last reply
                                    0
                                    • WalW Wal

                                      @skb ,
                                      bin zurück auf die Version vom 22.08.2023 "be6549f" der startet ohne Fehler.

                                      Edit: Info >> bin auf latest mit allem.

                                      So wie ich das sehe wurden seit dem nur die Dependabot Updates eingespielt.

                                      WalW Offline
                                      WalW Offline
                                      Wal
                                      Developer
                                      wrote on last edited by
                                      #1338

                                      @wal sagte in Test Adapter Energiefluss-erweitert v0.0.x GitHub/Latest:

                                      So wie ich das sehe wurden seit dem nur die Dependabot Updates eingespielt.

                                      Alles zurück im "d7ddbb8" wurde mehr als die Readme geändert.

                                      Gruß
                                      Walter

                                      DoorIO-Adapter
                                      wioBrowser-Adapter und wioBrowser

                                      SKBS 1 Reply Last reply
                                      1
                                      • WalW Wal

                                        @wal sagte in Test Adapter Energiefluss-erweitert v0.0.x GitHub/Latest:

                                        So wie ich das sehe wurden seit dem nur die Dependabot Updates eingespielt.

                                        Alles zurück im "d7ddbb8" wurde mehr als die Readme geändert.

                                        SKBS Offline
                                        SKBS Offline
                                        SKB
                                        Developer Most Active
                                        wrote on last edited by
                                        #1339

                                        @wal Korrekt. Changelog steht ja oben ;)

                                        ... wer nicht mit der Zeit geht, geht mit der Zeit ...

                                        Aktuelle Entwicklung: Energiefluss - erweitert (https://forum.iobroker.net/topic/64734)

                                        WalW 1 Reply Last reply
                                        0
                                        • SKBS SKB

                                          @wal Korrekt. Changelog steht ja oben ;)

                                          WalW Offline
                                          WalW Offline
                                          Wal
                                          Developer
                                          wrote on last edited by
                                          #1340

                                          @skb ,
                                          habe den Adapter deinstalliert und die Alpha 16 installiert.
                                          Der Adapter startet ohne Probleme, danach ein Backup eingespielt und er stürtzt ab.

                                          {
                                              "basic": {
                                                  "enable_grid": true,
                                                  "enable_animation": false,
                                                  "enable_area_catch": true,
                                                  "enable_config_icon": true,
                                                  "enable_last_id": false,
                                                  "enable_icon_proxy": false,
                                                  "height": 540,
                                                  "width": 600,
                                                  "styles": "",
                                                  "font": {
                                                      "family": "\"Arial\", sans-serif",
                                                      "size": "20",
                                                      "color": "",
                                                      "fill": "",
                                                      "align": "middle"
                                                  },
                                                  "rect": {
                                                      "height": 100,
                                                      "width": 100,
                                                      "corners": 10
                                                  },
                                                  "circle": {
                                                      "radius": 50
                                                  },
                                                  "elm": {
                                                      "stroke_width": 5,
                                                      "color": "",
                                                      "fill": "",
                                                      "pos_x": 50,
                                                      "pos_y": 50
                                                  },
                                                  "icon": {
                                                      "height": 24,
                                                      "width": 24,
                                                      "color": ""
                                                  }
                                              },
                                              "calculation": {
                                                  "battery": {
                                                      "dod": 0,
                                                      "capacity": 0,
                                                      "percent": -1,
                                                      "charge": -1,
                                                      "charge_prop": false,
                                                      "charge_kw": false,
                                                      "discharge": -1,
                                                      "discharge_prop": false,
                                                      "discharge_kw": false
                                                  },
                                                  "consumption": {
                                                      "production": [
                                                          -1
                                                      ],
                                                      "production_kw": false,
                                                      "gridFeed": -1,
                                                      "gridFeed_kw": false,
                                                      "gridFeed_prop": false,
                                                      "gridConsume": -1,
                                                      "gridConsume_kw": false,
                                                      "gridConsume_prop": false,
                                                      "batteryCharge": -1,
                                                      "batteryCharge_kw": false,
                                                      "batteryCharge_prop": false,
                                                      "batteryDischarge": -1,
                                                      "batteryDischarge_kw": false,
                                                      "batteryDischarge_prop": false
                                                  }
                                              },
                                              "animation": {
                                                  "stroke": "#ffce4a",
                                                  "stroke_dasharray": "10 17 10 17 10  72",
                                                  "stroke_width": "6",
                                                  "animation_duration": "2000",
                                                  "stroke_linecap": "round",
                                                  "animation_timing_function": "linear"
                                              },
                                              "animation_configuration": {
                                                  "dots": "3",
                                                  "distance": "17",
                                                  "length": "10"
                                              },
                                              "line": {
                                                  "stroke_width": "8",
                                                  "stroke": "#000000"
                                              },
                                              "elements": {
                                                  "2": {
                                                      "position": 0,
                                                      "type": "text",
                                                      "subType": "datasource",
                                                      "id": 2,
                                                      "pos_x": 49,
                                                      "pos_y": 41,
                                                      "color": "none",
                                                      "fill": "rgb(195, 255, 81)",
                                                      "font_family": "Arial, sans-serif",
                                                      "font_size": 18,
                                                      "align": "middle",
                                                      "text": "ID 2",
                                                      "unit": "kW",
                                                      "source": 2,
                                                      "source_option": -1,
                                                      "source_display": "value",
                                                      "shadow": "",
                                                      "threshold": 0,
                                                      "calculate_kw": true,
                                                      "convert": false,
                                                      "decimal_places": 2,
                                                      "action": "none",
                                                      "subtract": [
                                                          -1
                                                      ],
                                                      "frame": "_overlay"
                                                  },
                                                  "5": {
                                                      "position": 0,
                                                      "type": "rect",
                                                      "id": 5,
                                                      "rx": 10,
                                                      "height": 100,
                                                      "width": 100,
                                                      "pos_x": 1,
                                                      "pos_y": 1,
                                                      "fill": "none",
                                                      "color": "rgb(195, 255, 81)",
                                                      "stroke": 2,
                                                      "shadow": "rgba(0,0,0,0.7)",
                                                      "frame": "_overlay",
                                                      "fill_value": null,
                                                      "fill_type": "percent",
                                                      "fill_direction": 90,
                                                      "fill_max": null,
                                                      "border_value": null,
                                                      "border_type": -1,
                                                      "border_direction": "cw",
                                                      "border_style": "round",
                                                      "border_max": null,
                                                      "border_reverse_value": null,
                                                      "border_reverse": false,
                                                      "border_start": 180,
                                                      "source": 2,
                                                      "threshold": 0
                                                  },
                                                  "6": {
                                                      "position": 0,
                                                      "type": "icon",
                                                      "id": "6",
                                                      "icon": "mdi:solar-panel",
                                                      "width": 24,
                                                      "height": 24,
                                                      "color": "rgb(195, 255, 81)",
                                                      "pos_x": "39",
                                                      "pos_y": "5",
                                                      "shadow": "",
                                                      "source": -1,
                                                      "threshold": 0,
                                                      "frame": "_overlay",
                                                      "action": "none"
                                                  },
                                                  "7": {
                                                      "position": 1,
                                                      "type": "rect",
                                                      "id": 7,
                                                      "rx": 10,
                                                      "height": 100,
                                                      "width": 100,
                                                      "pos_x": 221,
                                                      "pos_y": 221,
                                                      "fill": "none",
                                                      "color": "rgb(0, 209, 255)",
                                                      "stroke": 2,
                                                      "shadow": "rgba(0,0,0,0.7)",
                                                      "frame": "_overlay",
                                                      "fill_value": null,
                                                      "fill_type": "percent",
                                                      "fill_direction": 90,
                                                      "fill_max": null,
                                                      "border_value": null,
                                                      "border_type": -1,
                                                      "border_direction": "cw",
                                                      "border_style": "round",
                                                      "border_max": null,
                                                      "border_reverse_value": null,
                                                      "border_reverse": false,
                                                      "border_start": 180,
                                                      "source": 1,
                                                      "threshold": 0
                                                  },
                                                  "9": {
                                                      "position": 1,
                                                      "type": "text",
                                                      "subType": "datasource",
                                                      "id": 9,
                                                      "pos_x": 271,
                                                      "pos_y": 263,
                                                      "color": "none",
                                                      "fill": "rgb(0, 209, 255)",
                                                      "font_family": "Arial, sans-serif",
                                                      "font_size": 18,
                                                      "align": "middle",
                                                      "text": "ID 9",
                                                      "unit": "kW",
                                                      "source": 1,
                                                      "source_option": -1,
                                                      "source_display": "value",
                                                      "shadow": "",
                                                      "threshold": 0,
                                                      "calculate_kw": true,
                                                      "convert": false,
                                                      "decimal_places": 2,
                                                      "action": "none",
                                                      "subtract": [
                                                          -1
                                                      ],
                                                      "frame": "_overlay"
                                                  },
                                                  "10": {
                                                      "position": 2,
                                                      "type": "text",
                                                      "id": 10,
                                                      "pos_x": 51,
                                                      "pos_y": 74,
                                                      "color": "none",
                                                      "fill": "rgb(195, 255, 81)",
                                                      "font_family": "Arial, sans-serif",
                                                      "font_size": 14,
                                                      "align": "middle",
                                                      "text": "Produktion",
                                                      "shadow": "",
                                                      "frame": "_overlay"
                                                  },
                                                  "11": {
                                                      "position": 3,
                                                      "type": "text",
                                                      "id": 11,
                                                      "pos_x": 271,
                                                      "pos_y": 297,
                                                      "color": "none",
                                                      "fill": "rgb(0, 209, 255)",
                                                      "font_family": "Arial, sans-serif",
                                                      "font_size": 14,
                                                      "align": "middle",
                                                      "text": "Gesamt",
                                                      "shadow": "",
                                                      "frame": "_overlay"
                                                  },
                                                  "12": {
                                                      "position": 1,
                                                      "type": "icon",
                                                      "id": "12",
                                                      "icon": "mdi:house-city",
                                                      "width": 24,
                                                      "height": 24,
                                                      "color": "rgb(0, 209, 255)",
                                                      "pos_x": "259",
                                                      "pos_y": "227",
                                                      "shadow": "",
                                                      "source": -1,
                                                      "threshold": 0,
                                                      "frame": "_overlay",
                                                      "action": "none"
                                                  },
                                                  "14": {
                                                      "position": 2,
                                                      "type": "rect",
                                                      "id": 14,
                                                      "rx": 10,
                                                      "height": 100,
                                                      "width": 100,
                                                      "pos_x": 1,
                                                      "pos_y": 301,
                                                      "fill": "none",
                                                      "color": "rgb(255, 0, 0)",
                                                      "stroke": 2,
                                                      "shadow": "rgba(0,0,0,0.7)",
                                                      "frame": "_overlay",
                                                      "fill_value": null,
                                                      "fill_type": "percent",
                                                      "fill_direction": 90,
                                                      "fill_max": null,
                                                      "border_value": null,
                                                      "border_type": -1,
                                                      "border_direction": "cw",
                                                      "border_style": "round",
                                                      "border_max": null,
                                                      "border_reverse_value": null,
                                                      "border_reverse": false,
                                                      "border_start": 180,
                                                      "source": 0,
                                                      "threshold": 0
                                                  },
                                                  "19": {
                                                      "position": 4,
                                                      "type": "text",
                                                      "subType": "datasource",
                                                      "id": 19,
                                                      "pos_x": 50,
                                                      "pos_y": 343,
                                                      "color": "none",
                                                      "fill": "rgb(255, 0, 0)",
                                                      "font_family": "Arial, sans-serif",
                                                      "font_size": 18,
                                                      "align": "middle",
                                                      "text": "ID 19",
                                                      "unit": "kW",
                                                      "source": 0,
                                                      "source_option": -1,
                                                      "source_display": "value",
                                                      "shadow": "",
                                                      "threshold": 0,
                                                      "calculate_kw": true,
                                                      "convert": true,
                                                      "decimal_places": 2,
                                                      "action": "none",
                                                      "subtract": [
                                                          -1
                                                      ],
                                                      "frame": "_overlay"
                                                  },
                                                  "20": {
                                                      "position": 2,
                                                      "type": "icon",
                                                      "id": "20",
                                                      "icon": "mdi:electricity-from-grid",
                                                      "width": 24,
                                                      "height": 24,
                                                      "color": "rgb(255, 0, 0)",
                                                      "pos_x": "38",
                                                      "pos_y": "307",
                                                      "shadow": "",
                                                      "source": -1,
                                                      "threshold": 0,
                                                      "frame": "_overlay",
                                                      "action": "none"
                                                  },
                                                  "21": {
                                                      "position": 5,
                                                      "type": "text",
                                                      "id": 21,
                                                      "pos_x": 50,
                                                      "pos_y": 377,
                                                      "color": "none",
                                                      "fill": "rgb(255, 0, 0)",
                                                      "font_family": "Arial, sans-serif",
                                                      "font_size": 14,
                                                      "align": "middle",
                                                      "text": "Netz",
                                                      "shadow": "",
                                                      "frame": "_overlay"
                                                  },
                                                  "22": {
                                                      "position": 3,
                                                      "type": "rect",
                                                      "id": 22,
                                                      "rx": 10,
                                                      "height": 100,
                                                      "width": 100,
                                                      "pos_x": 121,
                                                      "pos_y": 1,
                                                      "fill": "none",
                                                      "color": "rgb(255, 206, 74)",
                                                      "stroke": 2,
                                                      "shadow": "rgba(0,0,0,0.7)",
                                                      "frame": "_overlay",
                                                      "fill_value": null,
                                                      "fill_type": "percent",
                                                      "fill_direction": 90,
                                                      "fill_max": null,
                                                      "border_value": null,
                                                      "border_type": -1,
                                                      "border_direction": "cw",
                                                      "border_style": "round",
                                                      "border_max": null,
                                                      "border_reverse_value": null,
                                                      "border_reverse": false,
                                                      "border_start": 180,
                                                      "source": -1,
                                                      "threshold": 0
                                                  },
                                                  "24": {
                                                      "position": 6,
                                                      "type": "text",
                                                      "id": 24,
                                                      "pos_x": 171,
                                                      "pos_y": 77,
                                                      "color": "none",
                                                      "fill": "rgb(255, 206, 74)",
                                                      "font_family": "Arial, sans-serif",
                                                      "font_size": 14,
                                                      "align": "middle",
                                                      "text": "Proxmox",
                                                      "shadow": "",
                                                      "frame": "_overlay"
                                                  },
                                                  "26": {
                                                      "position": 7,
                                                      "type": "text",
                                                      "subType": "datasource",
                                                      "id": 26,
                                                      "pos_x": 171,
                                                      "pos_y": 43,
                                                      "color": "none",
                                                      "fill": "rgb(255, 206, 74)",
                                                      "font_family": "Arial, sans-serif",
                                                      "font_size": 18,
                                                      "align": "middle",
                                                      "text": "ID 26",
                                                      "unit": "W",
                                                      "source": 3,
                                                      "source_option": -1,
                                                      "source_display": "value",
                                                      "shadow": "",
                                                      "threshold": 0,
                                                      "calculate_kw": false,
                                                      "convert": false,
                                                      "decimal_places": 0,
                                                      "action": "none",
                                                      "subtract": [
                                                          -1
                                                      ],
                                                      "frame": "_overlay"
                                                  },
                                                  "27": {
                                                      "position": 4,
                                                      "type": "rect",
                                                      "id": 27,
                                                      "rx": 10,
                                                      "height": 100,
                                                      "width": 100,
                                                      "pos_x": 241,
                                                      "pos_y": 1,
                                                      "fill": "none",
                                                      "color": "rgb(255, 206, 74)",
                                                      "stroke": 2,
                                                      "shadow": "rgba(0,0,0,0.7)",
                                                      "frame": "_overlay",
                                                      "fill_value": null,
                                                      "fill_type": "percent",
                                                      "fill_direction": 90,
                                                      "fill_max": null,
                                                      "border_value": null,
                                                      "border_type": -1,
                                                      "border_direction": "cw",
                                                      "border_style": "round",
                                                      "border_max": null,
                                                      "border_reverse_value": null,
                                                      "border_reverse": false,
                                                      "border_start": 180,
                                                      "source": -1,
                                                      "threshold": 0
                                                  },
                                                  "28": {
                                                      "position": 8,
                                                      "type": "text",
                                                      "id": 28,
                                                      "pos_x": 291,
                                                      "pos_y": 77,
                                                      "color": "none",
                                                      "fill": "rgb(255, 206, 74)",
                                                      "font_family": "Arial, sans-serif",
                                                      "font_size": 14,
                                                      "align": "middle",
                                                      "text": "Tiefkühltruhe",
                                                      "shadow": "",
                                                      "frame": "_overlay"
                                                  },
                                                  "29": {
                                                      "position": 9,
                                                      "type": "text",
                                                      "subType": "datasource",
                                                      "id": 29,
                                                      "pos_x": 291,
                                                      "pos_y": 43,
                                                      "color": "none",
                                                      "fill": "rgb(255, 206, 74)",
                                                      "font_family": "Arial, sans-serif",
                                                      "font_size": 18,
                                                      "align": "middle",
                                                      "text": "ID 29",
                                                      "unit": "W",
                                                      "source": 4,
                                                      "source_option": -1,
                                                      "source_display": "value",
                                                      "shadow": "",
                                                      "threshold": 0,
                                                      "calculate_kw": false,
                                                      "convert": false,
                                                      "decimal_places": 0,
                                                      "action": "none",
                                                      "subtract": [
                                                          -1
                                                      ],
                                                      "frame": "_overlay"
                                                  },
                                                  "31": {
                                                      "position": 5,
                                                      "type": "rect",
                                                      "id": 31,
                                                      "rx": 10,
                                                      "height": 100,
                                                      "width": 100,
                                                      "pos_x": 363,
                                                      "pos_y": 1,
                                                      "fill": "none",
                                                      "color": "rgb(255, 206, 74)",
                                                      "stroke": 2,
                                                      "shadow": "rgba(0,0,0,0.7)",
                                                      "frame": "_overlay",
                                                      "fill_value": null,
                                                      "fill_type": "percent",
                                                      "fill_direction": 90,
                                                      "fill_max": null,
                                                      "border_value": null,
                                                      "border_type": -1,
                                                      "border_direction": "cw",
                                                      "border_style": "round",
                                                      "border_max": null,
                                                      "border_reverse_value": null,
                                                      "border_reverse": false,
                                                      "border_start": 180,
                                                      "source": -1,
                                                      "threshold": 0
                                                  },
                                                  "32": {
                                                      "position": 10,
                                                      "type": "text",
                                                      "id": 32,
                                                      "pos_x": 413,
                                                      "pos_y": 77,
                                                      "color": "none",
                                                      "fill": "rgb(255, 206, 74)",
                                                      "font_family": "Arial, sans-serif",
                                                      "font_size": 14,
                                                      "align": "middle",
                                                      "text": "Fernseher",
                                                      "shadow": "",
                                                      "frame": "_overlay"
                                                  },
                                                  "33": {
                                                      "position": 11,
                                                      "type": "text",
                                                      "subType": "datasource",
                                                      "id": 33,
                                                      "pos_x": 413,
                                                      "pos_y": 43,
                                                      "color": "none",
                                                      "fill": "rgb(255, 206, 74)",
                                                      "font_family": "Arial, sans-serif",
                                                      "font_size": 18,
                                                      "align": "middle",
                                                      "text": "ID 33",
                                                      "unit": "W",
                                                      "source": 5,
                                                      "source_option": -1,
                                                      "source_display": "value",
                                                      "shadow": "",
                                                      "threshold": 0,
                                                      "calculate_kw": false,
                                                      "convert": false,
                                                      "decimal_places": 0,
                                                      "action": "none",
                                                      "subtract": [
                                                          -1
                                                      ],
                                                      "frame": "_overlay"
                                                  },
                                                  "35": {
                                                      "position": 3,
                                                      "type": "icon",
                                                      "id": "35",
                                                      "icon": "mdi:house-city",
                                                      "width": 24,
                                                      "height": 24,
                                                      "color": "rgb(255, 206, 74)",
                                                      "pos_x": "158",
                                                      "pos_y": "6",
                                                      "shadow": "",
                                                      "source": -1,
                                                      "threshold": 0,
                                                      "frame": "_overlay",
                                                      "action": "none"
                                                  },
                                                  "36": {
                                                      "position": 4,
                                                      "type": "icon",
                                                      "id": "36",
                                                      "icon": "mdi:house-city",
                                                      "width": 24,
                                                      "height": 24,
                                                      "color": "rgb(255, 206, 74)",
                                                      "pos_x": "278",
                                                      "pos_y": "7",
                                                      "shadow": "",
                                                      "source": -1,
                                                      "threshold": 0,
                                                      "frame": "_overlay",
                                                      "action": "none"
                                                  },
                                                  "37": {
                                                      "position": 5,
                                                      "type": "icon",
                                                      "id": "37",
                                                      "icon": "mdi:house-city",
                                                      "width": 24,
                                                      "height": 24,
                                                      "color": "rgb(255, 206, 74)",
                                                      "pos_x": "401",
                                                      "pos_y": "6",
                                                      "shadow": "",
                                                      "source": -1,
                                                      "threshold": 0,
                                                      "frame": "_overlay",
                                                      "action": "none"
                                                  }
                                              },
                                              "defs": {
                                                  "path_5_7": {
                                                      "type": "def",
                                                      "id": "path_5_7",
                                                      "d": "M31 102  V 131.8   V 236 A 15 15 0 0 0 46 251  H 220",
                                                      "startSlot": "bottom_left",
                                                      "endSlot": "left_top"
                                                  },
                                                  "path_7_22": {
                                                      "type": "def",
                                                      "id": "path_7_22",
                                                      "d": "M251 220  V 196.4 A 15 15 0 0 0 236 181.4  H 166 A 15 15 0 0 1 151 166.4   V 102",
                                                      "startSlot": "top_left",
                                                      "endSlot": "bottom_left"
                                                  },
                                                  "path_7_27": {
                                                      "type": "def",
                                                      "id": "path_7_27",
                                                      "d": "M271 220  V 102",
                                                      "startSlot": "top",
                                                      "endSlot": "bottom_left"
                                                  },
                                                  "path_7_31": {
                                                      "type": "def",
                                                      "id": "path_7_31",
                                                      "d": "M291 220  V 196.4 A 15 15 0 0 1 306 181.4  H 378 A 15 15 0 0 0 393 166.4  V 102",
                                                      "startSlot": "top_right",
                                                      "endSlot": "bottom_left"
                                                  },
                                                  "path_14_7": {
                                                      "type": "def",
                                                      "id": "path_14_7",
                                                      "d": "M71 300  V 294.2   V 285 A 14 14 0 0 1 85 271  H 220",
                                                      "startSlot": "top_right",
                                                      "endSlot": "left"
                                                  }
                                              },
                                              "lines": {
                                                  "line_path_5_7": {
                                                      "type": "line",
                                                      "id": "line_path_5_7",
                                                      "href": "#path_5_7",
                                                      "color": "rgb(0, 0, 0)",
                                                      "shadow": ""
                                                  },
                                                  "line_path_7_22": {
                                                      "type": "line",
                                                      "id": "line_path_7_22",
                                                      "href": "#path_7_22",
                                                      "color": "rgb(0, 0, 0)",
                                                      "shadow": ""
                                                  },
                                                  "line_path_7_27": {
                                                      "type": "line",
                                                      "id": "line_path_7_27",
                                                      "href": "#path_7_27",
                                                      "color": "rgb(0, 0, 0)",
                                                      "shadow": ""
                                                  },
                                                  "line_path_7_31": {
                                                      "type": "line",
                                                      "id": "line_path_7_31",
                                                      "href": "#path_7_31",
                                                      "color": "rgb(0, 0, 0)",
                                                      "shadow": ""
                                                  },
                                                  "line_path_14_7": {
                                                      "type": "line",
                                                      "id": "line_path_14_7",
                                                      "href": "#path_14_7",
                                                      "color": "rgb(0, 0, 0)",
                                                      "shadow": ""
                                                  }
                                              },
                                              "animations": {
                                                  "anim_path_5_7": {
                                                      "type": "animation",
                                                      "id": "anim_path_5_7",
                                                      "href": "#path_5_7",
                                                      "color": "rgb(195, 255, 81)",
                                                      "source": 2,
                                                      "threshold": 0,
                                                      "animation_properties": "positive",
                                                      "animation_option": false,
                                                      "dots": 0,
                                                      "duration": 0,
                                                      "power": 0,
                                                      "animation_type": -1
                                                  },
                                                  "anim_path_7_22": {
                                                      "type": "animation",
                                                      "id": "anim_path_7_22",
                                                      "href": "#path_7_22",
                                                      "color": "rgb(255, 206, 74)",
                                                      "source": 3,
                                                      "threshold": 0,
                                                      "animation_properties": "positive",
                                                      "animation_option": false,
                                                      "dots": 0,
                                                      "duration": 0,
                                                      "power": 0,
                                                      "animation_type": -1
                                                  },
                                                  "anim_path_7_27": {
                                                      "type": "animation",
                                                      "id": "anim_path_7_27",
                                                      "href": "#path_7_27",
                                                      "color": "rgb(255, 206, 74)",
                                                      "source": 4,
                                                      "threshold": 0,
                                                      "animation_properties": "positive",
                                                      "animation_option": false,
                                                      "dots": 0,
                                                      "duration": 0,
                                                      "power": 0,
                                                      "animation_type": -1
                                                  },
                                                  "anim_path_7_31": {
                                                      "type": "animation",
                                                      "id": "anim_path_7_31",
                                                      "href": "#path_7_31",
                                                      "color": "rgb(255, 206, 74)",
                                                      "source": 5,
                                                      "threshold": 0,
                                                      "animation_properties": "positive",
                                                      "animation_option": false,
                                                      "dots": 0,
                                                      "duration": 0,
                                                      "power": 0,
                                                      "animation_type": -1
                                                  },
                                                  "anim_path_14_7": {
                                                      "type": "animation",
                                                      "id": "anim_path_14_7",
                                                      "href": "#path_14_7",
                                                      "color": "rgb(255, 15, 67)",
                                                      "source": 0,
                                                      "threshold": 0,
                                                      "animation_properties": "positive",
                                                      "animation_option": false,
                                                      "dots": 0,
                                                      "duration": 0,
                                                      "power": 0,
                                                      "animation_type": -1
                                                  }
                                              },
                                              "datasources": {
                                                  "0": {
                                                      "source": "sonoff.0.Haus.Stromzähler.MT175_P",
                                                      "alias": "Netzverbrauch"
                                                  },
                                                  "1": {
                                                      "source": "0_userdata.0.Stromverbrauch_aktuell",
                                                      "alias": "Gesamtverbrauch"
                                                  },
                                                  "2": {
                                                      "source": "sonoff.0.Haus.Balkonkraftwerk.ENERGY_Power",
                                                      "alias": "Balkonkraftwerk"
                                                  },
                                                  "3": {
                                                      "source": "sonoff.0.Test.Steckdose3.ENERGY_Power",
                                                      "alias": "Proxmox"
                                                  },
                                                  "4": {
                                                      "source": "sonoff.0.Test.Steckdose.ENERGY_Power",
                                                      "alias": "Tiefkühltruhe"
                                                  },
                                                  "5": {
                                                      "source": "sonoff.0.Test.Steckdose2.ENERGY_Power",
                                                      "alias": "Fernseher"
                                                  }
                                              }
                                          }
                                          

                                          Gruß
                                          Walter

                                          DoorIO-Adapter
                                          wioBrowser-Adapter und wioBrowser

                                          SKBS 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          551

                                          Online

                                          32.7k

                                          Users

                                          82.5k

                                          Topics

                                          1.3m

                                          Posts
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Home
                                          • Recent
                                          • Tags
                                          • Unread 0
                                          • Categories
                                          • Unreplied
                                          • Popular
                                          • GitHub
                                          • Docu
                                          • Hilfe