Skip to content
  • Home
  • 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

Community Forum

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

NEWS

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

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

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

Support Adapter Energiefluss-erweitert v0.7.7

Geplant Angeheftet Gesperrt Verschoben Visualisierung
vis
4.5k Beiträge 196 Kommentatoren 5.8m Aufrufe 166 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.
  • Bernd1967B Bernd1967

    @skb
    Super, läuft gut
    Linien werden nicht mit dupliziert ?

    SKBS Offline
    SKBS Offline
    SKB
    Developer Most Active
    schrieb am zuletzt editiert von
    #767

    @bernd1967 Wieso möchtest Du Linien duplizieren?

    Man weiss ja nicht, wo das neue Element hingeht.

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

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

    Bernd1967B 2 Antworten Letzte Antwort
    0
    • SKBS SKB

      @bernd1967 Wieso möchtest Du Linien duplizieren?

      Man weiss ja nicht, wo das neue Element hingeht.

      Bernd1967B Offline
      Bernd1967B Offline
      Bernd1967
      schrieb am zuletzt editiert von
      #768

      @skb
      Ich wurde nur stutzig das die Linie fehlte, hätte auch ein Bug sein können.

      SKBS 1 Antwort Letzte Antwort
      0
      • SKBS SKB

        @bernd1967 Wieso möchtest Du Linien duplizieren?

        Man weiss ja nicht, wo das neue Element hingeht.

        Bernd1967B Offline
        Bernd1967B Offline
        Bernd1967
        schrieb am zuletzt editiert von
        #769

        @skb
        Hintergrundfarbe kann per css nicht mehr verändert werden ?

        Bernd1967B 1 Antwort Letzte Antwort
        0
        • Bernd1967B Bernd1967

          @skb
          Hintergrundfarbe kann per css nicht mehr verändert werden ?

          Bernd1967B Offline
          Bernd1967B Offline
          Bernd1967
          schrieb am zuletzt editiert von
          #770

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

          @skb
          Hintergrundfarbe kann per css nicht mehr verändert werden ?

          Okay, habs herausgefunden:
          :root {
          --background-color: #000000 !important;
          }

          SKBS 1 Antwort Letzte Antwort
          0
          • Bernd1967B Bernd1967

            @skb
            Ich wurde nur stutzig das die Linie fehlte, hätte auch ein Bug sein können.

            SKBS Offline
            SKBS Offline
            SKB
            Developer Most Active
            schrieb am zuletzt editiert von
            #771

            @bernd1967 Bei einem Element, was 5 oder mehr Linien hat, möchte man die Linien eher nicht haben, denke ich.

            Daher werden nur Elemente ohne Linien kopiert.

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

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

            1 Antwort Letzte Antwort
            0
            • Bernd1967B Bernd1967

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

              @skb
              Hintergrundfarbe kann per css nicht mehr verändert werden ?

              Okay, habs herausgefunden:
              :root {
              --background-color: #000000 !important;
              }

              SKBS Offline
              SKBS Offline
              SKB
              Developer Most Active
              schrieb am zuletzt editiert von SKB
              #772

              @bernd1967 Hintergrundfarben lassen sich wie folgt anpassen:

              /* kompetter Hintergrund der Seite */
              html,
              body {
                  background-color: #FF0000;
              }
              
              /* Nur die Grafik im Display-mode */
              #svg_display {
                  background-color: #FF0000;
              }
              
              /* Nur die Grafik im Editor mode */
              #svg_config {
                  background-color: #FF0000;
              }
              

              Die Root Werte sollte man nicht nutzen, da die alles überschreiben. Hier kann man allerdings Variablen anlegen, um Farben erneut zu verwenden:

              :root {
                      --background-color: #538ea3;
              }
              
              /* Default HTML & Body */
              html,
              body {
                  background-color: var(--background-color);
              }
              

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

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

              Bernd1967B 1 Antwort Letzte Antwort
              0
              • SKBS SKB

                @bernd1967 Hintergrundfarben lassen sich wie folgt anpassen:

                /* kompetter Hintergrund der Seite */
                html,
                body {
                    background-color: #FF0000;
                }
                
                /* Nur die Grafik im Display-mode */
                #svg_display {
                    background-color: #FF0000;
                }
                
                /* Nur die Grafik im Editor mode */
                #svg_config {
                    background-color: #FF0000;
                }
                

                Die Root Werte sollte man nicht nutzen, da die alles überschreiben. Hier kann man allerdings Variablen anlegen, um Farben erneut zu verwenden:

                :root {
                        --background-color: #538ea3;
                }
                
                /* Default HTML & Body */
                html,
                body {
                    background-color: var(--background-color);
                }
                
                Bernd1967B Offline
                Bernd1967B Offline
                Bernd1967
                schrieb am zuletzt editiert von Bernd1967
                #773

                @SKB
                Die Hintergrund Einstellung mit (html,body) funktionierte bei mir nicht.
                Jetzt beim erneuten Versuch schon, merkwürdig....

                Könnte man bei der Füllung noch eine wave svg Animation reinbringen ?

                1 Antwort Letzte Antwort
                0
                • SKBS SKB

                  @homoran , @l1berty Na, dann bauen wir doch eine Füllung, die alles kann.

                  von links nach rechts,
                  von rechts nach links,
                  von unten nach oben,
                  von oben nach unten

                  ;)

                  H Offline
                  H Offline
                  Happyuser20
                  schrieb am zuletzt editiert von
                  #774

                  @skb Jetzt war ich ein wenig zu spät dran mit dem füllen.

                  Könnte man nur den Rand des Kreises als Füllungsanzeige nutzen, und je nachdem ob bezogen oder eingespeist wird, die Füllung im Uhrzeiger -oder Gegenuhrzeigersinn mache?

                  So z.B.
                  2023-07-05 14_19_27-vis und 1 weitere Seite - Persönlich – Microsoft​ Edge.png

                  Habe das in der Visu jetzt mit ein -und ausblenden gelöst und die Kreise über die Energiefluss-Kreise (Noch die alte Version) gelegt.

                  Könnte man das umsetzen?

                  Gruß
                  HappyUser20

                  HomoranH SKBS 2 Antworten Letzte Antwort
                  0
                  • H Happyuser20

                    @skb Jetzt war ich ein wenig zu spät dran mit dem füllen.

                    Könnte man nur den Rand des Kreises als Füllungsanzeige nutzen, und je nachdem ob bezogen oder eingespeist wird, die Füllung im Uhrzeiger -oder Gegenuhrzeigersinn mache?

                    So z.B.
                    2023-07-05 14_19_27-vis und 1 weitere Seite - Persönlich – Microsoft​ Edge.png

                    Habe das in der Visu jetzt mit ein -und ausblenden gelöst und die Kreise über die Energiefluss-Kreise (Noch die alte Version) gelegt.

                    Könnte man das umsetzen?

                    Gruß
                    HappyUser20

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

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

                    die Füllung im Uhrzeiger -oder Gegenuhrzeigersinn mache?

                    also doch :joy:

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

                    @skb fehlen würde dann noch im kreis, links rum und rechts rum... rofl.gif

                    kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

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

                    der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                    1 Antwort Letzte Antwort
                    1
                    • H Happyuser20

                      @skb Jetzt war ich ein wenig zu spät dran mit dem füllen.

                      Könnte man nur den Rand des Kreises als Füllungsanzeige nutzen, und je nachdem ob bezogen oder eingespeist wird, die Füllung im Uhrzeiger -oder Gegenuhrzeigersinn mache?

                      So z.B.
                      2023-07-05 14_19_27-vis und 1 weitere Seite - Persönlich – Microsoft​ Edge.png

                      Habe das in der Visu jetzt mit ein -und ausblenden gelöst und die Kreise über die Energiefluss-Kreise (Noch die alte Version) gelegt.

                      Könnte man das umsetzen?

                      Gruß
                      HappyUser20

                      SKBS Offline
                      SKBS Offline
                      SKB
                      Developer Most Active
                      schrieb am zuletzt editiert von
                      #776

                      @happyuser20 Das ist eine prima Idee :) Danke für den Tipp.

                      Ich habe hier einmal ein Beispiel. Man könnte dann die Hintergrundfarbe des Kreises angeben und die der Umrandung.

                      Ich denke, man sollte auch Startpunkte angeben können. Dauert nur etwas, bis ich das fertig habe.

                      2023-07-05 17_31_45-Energiefluss - erweitert Configuration.png

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

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

                      H 1 Antwort Letzte Antwort
                      1
                      • A Offline
                        A Offline
                        andi2055
                        schrieb am zuletzt editiert von
                        #777

                        Toller Adapter!
                        Spiele gerade etwas damit rum. Irgendwann kann ich keine Elemente mehr einfügen wie Kreis oder Rechteck.
                        Bestehendes Duplizieren funktioniert.

                        Im Log sind die aber anscheinend mit drin.
                        Ein Bug?
                        Gibt es die Möglichkeit die Konfig zu exporieren und importieren?

                        7a950e96-40e1-4e9e-90c7-9f66b058e385-grafik.png

                        {
                            "basic": {
                                "enable_grid": true,
                                "enable_animation": false,
                                "enable_area_catch": true,
                                "enable_config_icon": true,
                                "enable_last_id": false,
                                "height": 540,
                                "width": 530,
                                "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": null,
                                    "charge": null,
                                    "charge_prop": false,
                                    "charge_kw": false,
                                    "discharge": null,
                                    "discharge_prop": false,
                                    "discharge_kw": 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": {
                                    "type": "text",
                                    "subType": "datasource",
                                    "id": 2,
                                    "pos_x": 84,
                                    "pos_y": 59,
                                    "color": "none",
                                    "fill": "rgb(255, 206, 74)",
                                    "font_family": "Arial, sans-serif",
                                    "font_size": 18,
                                    "degree": 0,
                                    "align": "middle",
                                    "text": "ID 2",
                                    "unit": "W",
                                    "append": "",
                                    "prepend": "",
                                    "source": "0",
                                    "source_option": "-1",
                                    "source_display": "value",
                                    "shadow": "",
                                    "threshold": 0,
                                    "calculate_kw": false,
                                    "convert": false,
                                    "decimal_places": 0,
                                    "subtract": [
                                        -1
                                    ],
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                },
                                "5": {
                                    "type": "rect",
                                    "id": 5,
                                    "rx": 10,
                                    "height": 100,
                                    "width": 100,
                                    "pos_x": 35,
                                    "pos_y": 18,
                                    "fill": "none",
                                    "color": "rgb(255, 206, 74)",
                                    "stroke": 2,
                                    "shadow": "rgba(0,0,0,0.7)",
                                    "frame": "_overlay",
                                    "url": "",
                                    "fill_value": null,
                                    "fill_type": "percent",
                                    "fill_direction": "90",
                                    "fill_max": null,
                                    "source": -1,
                                    "threshold": 0,
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                },
                                "6": {
                                    "type": "icon",
                                    "id": "6",
                                    "icon": "material-symbols:solar-power",
                                    "width": 24,
                                    "height": 24,
                                    "color": "rgba(0, 0, 0, 0.7)",
                                    "pos_x": "73",
                                    "pos_y": "22",
                                    "shadow": "",
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": "",
                                    "source": -1,
                                    "threshold": 0
                                },
                                "7": {
                                    "type": "rect",
                                    "id": 7,
                                    "rx": 10,
                                    "height": 100,
                                    "width": 100,
                                    "pos_x": 171,
                                    "pos_y": 176,
                                    "fill": "none",
                                    "color": "rgb(0, 181, 221)",
                                    "stroke": 2,
                                    "shadow": "rgba(0,0,0,0.7)",
                                    "frame": "_overlay",
                                    "url": "",
                                    "fill_value": null,
                                    "fill_type": "percent",
                                    "fill_direction": 90,
                                    "fill_max": null,
                                    "source": -1,
                                    "threshold": 0,
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                },
                                "9": {
                                    "type": "text",
                                    "subType": "datasource",
                                    "id": 9,
                                    "pos_x": 221,
                                    "pos_y": 218,
                                    "color": "none",
                                    "fill": "rgb(0, 181, 221)",
                                    "font_family": "Arial, sans-serif",
                                    "font_size": 18,
                                    "degree": 0,
                                    "align": "middle",
                                    "text": "ID 9",
                                    "unit": "kW",
                                    "append": "",
                                    "prepend": "",
                                    "source": -1,
                                    "source_option": -1,
                                    "source_display": "value",
                                    "shadow": "",
                                    "threshold": 0,
                                    "calculate_kw": true,
                                    "convert": false,
                                    "decimal_places": 2,
                                    "subtract": [
                                        -1
                                    ],
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                },
                                "10": {
                                    "type": "text",
                                    "id": 10,
                                    "pos_x": 87,
                                    "pos_y": 90,
                                    "color": "none",
                                    "fill": "rgba(0, 0, 0, 0.7)",
                                    "font_family": "Arial, sans-serif",
                                    "font_size": 14,
                                    "degree": 0,
                                    "align": "middle",
                                    "text": "Produktion",
                                    "shadow": "",
                                    "css_general": ""
                                },
                                "11": {
                                    "type": "text",
                                    "id": 11,
                                    "pos_x": 221,
                                    "pos_y": 252,
                                    "color": "none",
                                    "fill": "rgba(0, 0, 0, 0.7)",
                                    "font_family": "Arial, sans-serif",
                                    "font_size": 14,
                                    "degree": 0,
                                    "align": "middle",
                                    "text": "Verbrauch",
                                    "shadow": "",
                                    "css_general": ""
                                },
                                "12": {
                                    "type": "icon",
                                    "id": "12",
                                    "icon": "mdi:house-city",
                                    "width": 24,
                                    "height": 24,
                                    "color": "rgba(0, 0, 0, 0.7)",
                                    "pos_x": "209",
                                    "pos_y": "182",
                                    "shadow": "",
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": "",
                                    "source": 1,
                                    "threshold": 0
                                },
                                "14": {
                                    "type": "rect",
                                    "id": 14,
                                    "rx": 10,
                                    "height": 100,
                                    "width": 100,
                                    "pos_x": 35,
                                    "pos_y": 342,
                                    "fill": "none",
                                    "color": "rgba(97, 104, 122, 0.7)",
                                    "stroke": 2,
                                    "shadow": "rgba(0,0,0,0.7)",
                                    "frame": "_overlay",
                                    "url": "",
                                    "fill_value": null,
                                    "fill_type": "percent",
                                    "fill_direction": "90",
                                    "fill_max": null,
                                    "source": -1,
                                    "threshold": 0,
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                },
                                "19": {
                                    "type": "text",
                                    "subType": "datasource",
                                    "id": 19,
                                    "pos_x": 85,
                                    "pos_y": 384,
                                    "color": "none",
                                    "fill": "rgb(97, 104, 122)",
                                    "font_family": "Arial, sans-serif",
                                    "font_size": 18,
                                    "degree": 0,
                                    "align": "middle",
                                    "text": "ID 19",
                                    "unit": "kW",
                                    "append": "",
                                    "prepend": "",
                                    "source": "1",
                                    "source_option": "-1",
                                    "source_display": "value",
                                    "shadow": "",
                                    "threshold": 0,
                                    "calculate_kw": false,
                                    "convert": false,
                                    "decimal_places": 0,
                                    "subtract": [
                                        -1
                                    ],
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                },
                                "20": {
                                    "type": "icon",
                                    "id": "20",
                                    "icon": "mdi:electricity-from-grid",
                                    "width": 24,
                                    "height": 24,
                                    "color": "rgba(0, 0, 0, 0.7)",
                                    "pos_x": "73",
                                    "pos_y": "348",
                                    "shadow": "",
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": "",
                                    "source": -1,
                                    "threshold": 0
                                },
                                "21": {
                                    "type": "text",
                                    "id": 21,
                                    "pos_x": 85,
                                    "pos_y": 418,
                                    "color": "none",
                                    "fill": "rgba(0, 0, 0, 0.7)",
                                    "font_family": "Arial, sans-serif",
                                    "font_size": 14,
                                    "degree": 0,
                                    "align": "middle",
                                    "text": "Netz",
                                    "shadow": "",
                                    "css_general": ""
                                },
                                "22": {
                                    "type": "rect",
                                    "id": 22,
                                    "rx": 10,
                                    "height": 100,
                                    "width": 100,
                                    "pos_x": 354,
                                    "pos_y": 255,
                                    "fill": "url(\"#gradient_22\")",
                                    "color": "rgb(197, 144, 46)",
                                    "stroke": 2,
                                    "shadow": "rgba(0,0,0,0.7)",
                                    "frame": "_overlay",
                                    "url": "",
                                    "fill_value": null,
                                    "fill_type": "percent",
                                    "fill_direction": 90,
                                    "fill_max": null,
                                    "source": 2,
                                    "threshold": 0,
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                },
                                "23": {
                                    "type": "icon",
                                    "id": "23",
                                    "icon": "material-symbols:heat-pump-outline",
                                    "width": 24,
                                    "height": 24,
                                    "color": "rgba(0, 0, 0, 0.7)",
                                    "pos_x": "392",
                                    "pos_y": "261",
                                    "shadow": "",
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": "",
                                    "source": -1,
                                    "threshold": 0
                                },
                                "24": {
                                    "type": "text",
                                    "id": 24,
                                    "pos_x": 404,
                                    "pos_y": 331,
                                    "color": "none",
                                    "fill": "rgba(0, 0, 0, 0.7)",
                                    "font_family": "Arial, sans-serif",
                                    "font_size": 14,
                                    "degree": 0,
                                    "align": "middle",
                                    "text": "LWP",
                                    "shadow": "",
                                    "css_general": ""
                                },
                                "26": {
                                    "type": "text",
                                    "subType": "datasource",
                                    "id": 26,
                                    "pos_x": 405,
                                    "pos_y": 297,
                                    "color": "none",
                                    "fill": "rgb(197, 144, 46)",
                                    "font_family": "Arial, sans-serif",
                                    "font_size": 18,
                                    "degree": 0,
                                    "align": "middle",
                                    "text": "ID 26",
                                    "unit": "kW",
                                    "append": "",
                                    "prepend": "",
                                    "source": 2,
                                    "source_option": -1,
                                    "source_display": "value",
                                    "shadow": "",
                                    "threshold": 0,
                                    "calculate_kw": false,
                                    "convert": false,
                                    "decimal_places": 0,
                                    "subtract": [
                                        -1
                                    ],
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                },
                                "28": {
                                    "type": "rect",
                                    "id": 28,
                                    "rx": 10,
                                    "height": 100,
                                    "width": 100,
                                    "pos_x": 351,
                                    "pos_y": 98,
                                    "fill": "none",
                                    "color": "rgb(37, 214, 254)",
                                    "stroke": 5,
                                    "shadow": "",
                                    "frame": "_overlay",
                                    "url": "",
                                    "fill_value": null,
                                    "fill_type": -1,
                                    "fill_direction": 90,
                                    "fill_max": null,
                                    "source": 1,
                                    "threshold": 0,
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                },
                                "29": {
                                    "type": "icon",
                                    "id": "29",
                                    "icon": "mdi:house",
                                    "width": 24,
                                    "height": 24,
                                    "color": "rgb(0, 0, 0)",
                                    "pos_x": "387",
                                    "pos_y": "100",
                                    "shadow": "",
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": "",
                                    "source": -1,
                                    "threshold": 0
                                },
                                "30": {
                                    "type": "text",
                                    "id": 30,
                                    "pos_x": 374,
                                    "pos_y": 178,
                                    "color": "none",
                                    "fill": "rgb(142, 224, 227)",
                                    "font_family": "Arial, sans-serif",
                                    "font_size": 20,
                                    "degree": 0,
                                    "align": "start",
                                    "text": "Haus",
                                    "shadow": "",
                                    "css_general": ""
                                },
                                "31": {
                                    "type": "text",
                                    "subType": "datasource",
                                    "id": 31,
                                    "pos_x": 5031,
                                    "pos_y": 5021,
                                    "color": "none",
                                    "fill": "rgb(78, 130, 215)",
                                    "font_family": "Arial, sans-serif",
                                    "font_size": 20,
                                    "degree": 0,
                                    "align": "start",
                                    "text": "ID 31",
                                    "unit": "kW",
                                    "append": "",
                                    "prepend": "",
                                    "source": -1,
                                    "source_option": -1,
                                    "source_display": "value",
                                    "shadow": "",
                                    "threshold": 0,
                                    "calculate_kw": false,
                                    "convert": false,
                                    "decimal_places": 0,
                                    "subtract": [
                                        -1
                                    ],
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                },
                                "32": {
                                    "type": "text",
                                    "id": 32,
                                    "pos_x": 503,
                                    "pos_y": 5045,
                                    "color": "none",
                                    "fill": "rgb(119, 111, 110)",
                                    "font_family": "Arial, sans-serif",
                                    "font_size": 20,
                                    "degree": 0,
                                    "align": "start",
                                    "text": "Text",
                                    "shadow": "",
                                    "css_general": ""
                                },
                                "33": {
                                    "type": "text",
                                    "subType": "datasource",
                                    "id": 33,
                                    "pos_x": 400,
                                    "pos_y": 147,
                                    "color": "none",
                                    "fill": "rgb(0, 181, 221)",
                                    "font_family": "Arial, sans-serif",
                                    "font_size": 18,
                                    "degree": 0,
                                    "align": "middle",
                                    "text": "ID 33",
                                    "unit": "W",
                                    "append": "",
                                    "prepend": "",
                                    "source": "1",
                                    "source_option": "-1",
                                    "source_display": "value",
                                    "shadow": "",
                                    "threshold": 0,
                                    "calculate_kw": false,
                                    "convert": false,
                                    "decimal_places": 0,
                                    "subtract": [
                                        -1
                                    ],
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                },
                                "34": {
                                    "type": "circle",
                                    "id": 34,
                                    "radius": 50,
                                    "pos_x": 5024,
                                    "pos_y": 500,
                                    "fill": "none",
                                    "color": "rgb(68, 172, 252)",
                                    "stroke": 5,
                                    "shadow": "",
                                    "frame": "_overlay",
                                    "url": "",
                                    "fill_value": null,
                                    "fill_type": -1,
                                    "fill_direction": 90,
                                    "fill_max": null,
                                    "source": -1,
                                    "threshold": 0,
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                },
                                "35": {
                                    "type": "rect",
                                    "id": 35,
                                    "rx": 10,
                                    "height": 100,
                                    "width": 100,
                                    "pos_x": 5023,
                                    "pos_y": 5012,
                                    "fill": "none",
                                    "color": "rgb(40, 176, 44)",
                                    "stroke": 5,
                                    "shadow": "",
                                    "frame": "_overlay",
                                    "url": "",
                                    "fill_value": null,
                                    "fill_type": -1,
                                    "fill_direction": 90,
                                    "fill_max": null,
                                    "source": -1,
                                    "threshold": 0,
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                },
                                "36": {
                                    "type": "rect",
                                    "id": 36,
                                    "rx": 10,
                                    "height": 100,
                                    "width": 100,
                                    "pos_x": 509,
                                    "pos_y": 5027,
                                    "fill": "none",
                                    "color": "rgb(186, 78, 128)",
                                    "stroke": 5,
                                    "shadow": "",
                                    "frame": "_overlay",
                                    "url": "",
                                    "fill_value": null,
                                    "fill_type": -1,
                                    "fill_direction": 90,
                                    "fill_max": null,
                                    "source": -1,
                                    "threshold": 0,
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                }
                            },
                            "defs": {
                                "path_5_7": {
                                    "type": "def",
                                    "id": "path_5_7",
                                    "d": "M105 119  V 130.2 A 15 15 0 0 0 120 145.2  H 186 A 15 15 0 0 1 201 160.2  V 175",
                                    "startSlot": "bottom_right",
                                    "endSlot": "top_left"
                                },
                                "path_14_7": {
                                    "type": "def",
                                    "id": "path_14_7",
                                    "d": "M105 341  V 328.2 A 15 15 0 0 1 120 313.2  H 186 A 15 15 0 0 0 201 298.2  V 277",
                                    "startSlot": "top_right",
                                    "endSlot": "bottom_left"
                                },
                                "path_5_14": {
                                    "type": "def",
                                    "id": "path_5_14",
                                    "d": "M85 119  V 341",
                                    "startSlot": "bottom",
                                    "endSlot": "top"
                                },
                                "path_7_28": {
                                    "type": "def",
                                    "id": "path_7_28",
                                    "d": "M272 206  H 287.2 A 15 15 0 0 0 302.2 191  V 163 A 15 15 0 0 1 317.2 148  H 348.5",
                                    "startSlot": "right_top",
                                    "endSlot": "left"
                                },
                                "path_7_22": {
                                    "type": "def",
                                    "id": "path_7_22",
                                    "d": "M272 246  H 288.2 A 15 15 0 0 1 303.2 261  V 290 A 15 15 0 0 0 318.2 305  H 353",
                                    "startSlot": "right_bottom",
                                    "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_14_7": {
                                    "type": "line",
                                    "id": "line_path_14_7",
                                    "href": "#path_14_7",
                                    "color": "rgb(0, 0, 0)",
                                    "shadow": ""
                                },
                                "line_path_5_14": {
                                    "type": "line",
                                    "id": "line_path_5_14",
                                    "href": "#path_5_14",
                                    "color": "rgb(0, 0, 0)",
                                    "shadow": ""
                                },
                                "line_path_7_28": {
                                    "type": "line",
                                    "id": "line_path_7_28",
                                    "href": "#path_7_28",
                                    "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": ""
                                }
                            },
                            "animations": {
                                "anim_path_5_7": {
                                    "type": "animation",
                                    "id": "anim_path_5_7",
                                    "href": "#path_5_7",
                                    "color": "rgb(255, 206, 74)",
                                    "source": -1,
                                    "threshold": 0,
                                    "animation_properties": "positive",
                                    "animation_option": false,
                                    "dots": 0,
                                    "duration": 0,
                                    "power": 0,
                                    "animation_type": -1,
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                },
                                "anim_path_14_7": {
                                    "type": "animation",
                                    "id": "anim_path_14_7",
                                    "href": "#path_14_7",
                                    "color": "rgb(255, 206, 74)",
                                    "source": -1,
                                    "threshold": 10,
                                    "animation_properties": "negative",
                                    "animation_option": false,
                                    "dots": 0,
                                    "duration": 0,
                                    "power": 0,
                                    "animation_type": -1,
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                },
                                "anim_path_5_14": {
                                    "type": "animation",
                                    "id": "anim_path_5_14",
                                    "href": "#path_5_14",
                                    "color": "rgb(255, 206, 74)",
                                    "source": -1,
                                    "threshold": 0,
                                    "animation_properties": "positive",
                                    "animation_option": false,
                                    "dots": 0,
                                    "duration": 0,
                                    "power": 0,
                                    "animation_type": -1,
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                },
                                "anim_path_7_28": {
                                    "type": "animation",
                                    "id": "anim_path_7_28",
                                    "href": "#path_7_28",
                                    "color": "rgb(255, 206, 74)",
                                    "source": -1,
                                    "threshold": 0,
                                    "animation_properties": "positive",
                                    "animation_option": false,
                                    "dots": 0,
                                    "duration": 0,
                                    "power": 0,
                                    "animation_type": -1,
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                },
                                "anim_path_7_22": {
                                    "type": "animation",
                                    "id": "anim_path_7_22",
                                    "href": "#path_7_22",
                                    "color": "rgb(255, 206, 74)",
                                    "source": -1,
                                    "threshold": 0,
                                    "animation_properties": "positive",
                                    "animation_option": false,
                                    "dots": 0,
                                    "duration": 0,
                                    "power": 0,
                                    "animation_type": -1,
                                    "css_general": "",
                                    "css_active_positive": "",
                                    "css_inactive_positive": "",
                                    "css_active_negative": "",
                                    "css_inactive_negative": ""
                                }
                            },
                            "datasources": {
                                "0": {
                                    "source": "alias.0.PV.30775_Measurement_GridMs_TotW",
                                    "alias": "PV_Power"
                                },
                                "1": {
                                    "source": "linkeddevices.0.KG.Stromzähler.Haus_Power_curr",
                                    "alias": "Haus_Power"
                                },
                                "2": {
                                    "source": "linkeddevices.0.KG.Stromzähler.LWP_Power_curr",
                                    "alias": "LWP_Power"
                                }
                            }
                        }
                        
                        HomoranH SKBS 2 Antworten Letzte Antwort
                        0
                        • A andi2055

                          Toller Adapter!
                          Spiele gerade etwas damit rum. Irgendwann kann ich keine Elemente mehr einfügen wie Kreis oder Rechteck.
                          Bestehendes Duplizieren funktioniert.

                          Im Log sind die aber anscheinend mit drin.
                          Ein Bug?
                          Gibt es die Möglichkeit die Konfig zu exporieren und importieren?

                          7a950e96-40e1-4e9e-90c7-9f66b058e385-grafik.png

                          {
                              "basic": {
                                  "enable_grid": true,
                                  "enable_animation": false,
                                  "enable_area_catch": true,
                                  "enable_config_icon": true,
                                  "enable_last_id": false,
                                  "height": 540,
                                  "width": 530,
                                  "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": null,
                                      "charge": null,
                                      "charge_prop": false,
                                      "charge_kw": false,
                                      "discharge": null,
                                      "discharge_prop": false,
                                      "discharge_kw": 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": {
                                      "type": "text",
                                      "subType": "datasource",
                                      "id": 2,
                                      "pos_x": 84,
                                      "pos_y": 59,
                                      "color": "none",
                                      "fill": "rgb(255, 206, 74)",
                                      "font_family": "Arial, sans-serif",
                                      "font_size": 18,
                                      "degree": 0,
                                      "align": "middle",
                                      "text": "ID 2",
                                      "unit": "W",
                                      "append": "",
                                      "prepend": "",
                                      "source": "0",
                                      "source_option": "-1",
                                      "source_display": "value",
                                      "shadow": "",
                                      "threshold": 0,
                                      "calculate_kw": false,
                                      "convert": false,
                                      "decimal_places": 0,
                                      "subtract": [
                                          -1
                                      ],
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  },
                                  "5": {
                                      "type": "rect",
                                      "id": 5,
                                      "rx": 10,
                                      "height": 100,
                                      "width": 100,
                                      "pos_x": 35,
                                      "pos_y": 18,
                                      "fill": "none",
                                      "color": "rgb(255, 206, 74)",
                                      "stroke": 2,
                                      "shadow": "rgba(0,0,0,0.7)",
                                      "frame": "_overlay",
                                      "url": "",
                                      "fill_value": null,
                                      "fill_type": "percent",
                                      "fill_direction": "90",
                                      "fill_max": null,
                                      "source": -1,
                                      "threshold": 0,
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  },
                                  "6": {
                                      "type": "icon",
                                      "id": "6",
                                      "icon": "material-symbols:solar-power",
                                      "width": 24,
                                      "height": 24,
                                      "color": "rgba(0, 0, 0, 0.7)",
                                      "pos_x": "73",
                                      "pos_y": "22",
                                      "shadow": "",
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": "",
                                      "source": -1,
                                      "threshold": 0
                                  },
                                  "7": {
                                      "type": "rect",
                                      "id": 7,
                                      "rx": 10,
                                      "height": 100,
                                      "width": 100,
                                      "pos_x": 171,
                                      "pos_y": 176,
                                      "fill": "none",
                                      "color": "rgb(0, 181, 221)",
                                      "stroke": 2,
                                      "shadow": "rgba(0,0,0,0.7)",
                                      "frame": "_overlay",
                                      "url": "",
                                      "fill_value": null,
                                      "fill_type": "percent",
                                      "fill_direction": 90,
                                      "fill_max": null,
                                      "source": -1,
                                      "threshold": 0,
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  },
                                  "9": {
                                      "type": "text",
                                      "subType": "datasource",
                                      "id": 9,
                                      "pos_x": 221,
                                      "pos_y": 218,
                                      "color": "none",
                                      "fill": "rgb(0, 181, 221)",
                                      "font_family": "Arial, sans-serif",
                                      "font_size": 18,
                                      "degree": 0,
                                      "align": "middle",
                                      "text": "ID 9",
                                      "unit": "kW",
                                      "append": "",
                                      "prepend": "",
                                      "source": -1,
                                      "source_option": -1,
                                      "source_display": "value",
                                      "shadow": "",
                                      "threshold": 0,
                                      "calculate_kw": true,
                                      "convert": false,
                                      "decimal_places": 2,
                                      "subtract": [
                                          -1
                                      ],
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  },
                                  "10": {
                                      "type": "text",
                                      "id": 10,
                                      "pos_x": 87,
                                      "pos_y": 90,
                                      "color": "none",
                                      "fill": "rgba(0, 0, 0, 0.7)",
                                      "font_family": "Arial, sans-serif",
                                      "font_size": 14,
                                      "degree": 0,
                                      "align": "middle",
                                      "text": "Produktion",
                                      "shadow": "",
                                      "css_general": ""
                                  },
                                  "11": {
                                      "type": "text",
                                      "id": 11,
                                      "pos_x": 221,
                                      "pos_y": 252,
                                      "color": "none",
                                      "fill": "rgba(0, 0, 0, 0.7)",
                                      "font_family": "Arial, sans-serif",
                                      "font_size": 14,
                                      "degree": 0,
                                      "align": "middle",
                                      "text": "Verbrauch",
                                      "shadow": "",
                                      "css_general": ""
                                  },
                                  "12": {
                                      "type": "icon",
                                      "id": "12",
                                      "icon": "mdi:house-city",
                                      "width": 24,
                                      "height": 24,
                                      "color": "rgba(0, 0, 0, 0.7)",
                                      "pos_x": "209",
                                      "pos_y": "182",
                                      "shadow": "",
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": "",
                                      "source": 1,
                                      "threshold": 0
                                  },
                                  "14": {
                                      "type": "rect",
                                      "id": 14,
                                      "rx": 10,
                                      "height": 100,
                                      "width": 100,
                                      "pos_x": 35,
                                      "pos_y": 342,
                                      "fill": "none",
                                      "color": "rgba(97, 104, 122, 0.7)",
                                      "stroke": 2,
                                      "shadow": "rgba(0,0,0,0.7)",
                                      "frame": "_overlay",
                                      "url": "",
                                      "fill_value": null,
                                      "fill_type": "percent",
                                      "fill_direction": "90",
                                      "fill_max": null,
                                      "source": -1,
                                      "threshold": 0,
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  },
                                  "19": {
                                      "type": "text",
                                      "subType": "datasource",
                                      "id": 19,
                                      "pos_x": 85,
                                      "pos_y": 384,
                                      "color": "none",
                                      "fill": "rgb(97, 104, 122)",
                                      "font_family": "Arial, sans-serif",
                                      "font_size": 18,
                                      "degree": 0,
                                      "align": "middle",
                                      "text": "ID 19",
                                      "unit": "kW",
                                      "append": "",
                                      "prepend": "",
                                      "source": "1",
                                      "source_option": "-1",
                                      "source_display": "value",
                                      "shadow": "",
                                      "threshold": 0,
                                      "calculate_kw": false,
                                      "convert": false,
                                      "decimal_places": 0,
                                      "subtract": [
                                          -1
                                      ],
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  },
                                  "20": {
                                      "type": "icon",
                                      "id": "20",
                                      "icon": "mdi:electricity-from-grid",
                                      "width": 24,
                                      "height": 24,
                                      "color": "rgba(0, 0, 0, 0.7)",
                                      "pos_x": "73",
                                      "pos_y": "348",
                                      "shadow": "",
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": "",
                                      "source": -1,
                                      "threshold": 0
                                  },
                                  "21": {
                                      "type": "text",
                                      "id": 21,
                                      "pos_x": 85,
                                      "pos_y": 418,
                                      "color": "none",
                                      "fill": "rgba(0, 0, 0, 0.7)",
                                      "font_family": "Arial, sans-serif",
                                      "font_size": 14,
                                      "degree": 0,
                                      "align": "middle",
                                      "text": "Netz",
                                      "shadow": "",
                                      "css_general": ""
                                  },
                                  "22": {
                                      "type": "rect",
                                      "id": 22,
                                      "rx": 10,
                                      "height": 100,
                                      "width": 100,
                                      "pos_x": 354,
                                      "pos_y": 255,
                                      "fill": "url(\"#gradient_22\")",
                                      "color": "rgb(197, 144, 46)",
                                      "stroke": 2,
                                      "shadow": "rgba(0,0,0,0.7)",
                                      "frame": "_overlay",
                                      "url": "",
                                      "fill_value": null,
                                      "fill_type": "percent",
                                      "fill_direction": 90,
                                      "fill_max": null,
                                      "source": 2,
                                      "threshold": 0,
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  },
                                  "23": {
                                      "type": "icon",
                                      "id": "23",
                                      "icon": "material-symbols:heat-pump-outline",
                                      "width": 24,
                                      "height": 24,
                                      "color": "rgba(0, 0, 0, 0.7)",
                                      "pos_x": "392",
                                      "pos_y": "261",
                                      "shadow": "",
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": "",
                                      "source": -1,
                                      "threshold": 0
                                  },
                                  "24": {
                                      "type": "text",
                                      "id": 24,
                                      "pos_x": 404,
                                      "pos_y": 331,
                                      "color": "none",
                                      "fill": "rgba(0, 0, 0, 0.7)",
                                      "font_family": "Arial, sans-serif",
                                      "font_size": 14,
                                      "degree": 0,
                                      "align": "middle",
                                      "text": "LWP",
                                      "shadow": "",
                                      "css_general": ""
                                  },
                                  "26": {
                                      "type": "text",
                                      "subType": "datasource",
                                      "id": 26,
                                      "pos_x": 405,
                                      "pos_y": 297,
                                      "color": "none",
                                      "fill": "rgb(197, 144, 46)",
                                      "font_family": "Arial, sans-serif",
                                      "font_size": 18,
                                      "degree": 0,
                                      "align": "middle",
                                      "text": "ID 26",
                                      "unit": "kW",
                                      "append": "",
                                      "prepend": "",
                                      "source": 2,
                                      "source_option": -1,
                                      "source_display": "value",
                                      "shadow": "",
                                      "threshold": 0,
                                      "calculate_kw": false,
                                      "convert": false,
                                      "decimal_places": 0,
                                      "subtract": [
                                          -1
                                      ],
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  },
                                  "28": {
                                      "type": "rect",
                                      "id": 28,
                                      "rx": 10,
                                      "height": 100,
                                      "width": 100,
                                      "pos_x": 351,
                                      "pos_y": 98,
                                      "fill": "none",
                                      "color": "rgb(37, 214, 254)",
                                      "stroke": 5,
                                      "shadow": "",
                                      "frame": "_overlay",
                                      "url": "",
                                      "fill_value": null,
                                      "fill_type": -1,
                                      "fill_direction": 90,
                                      "fill_max": null,
                                      "source": 1,
                                      "threshold": 0,
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  },
                                  "29": {
                                      "type": "icon",
                                      "id": "29",
                                      "icon": "mdi:house",
                                      "width": 24,
                                      "height": 24,
                                      "color": "rgb(0, 0, 0)",
                                      "pos_x": "387",
                                      "pos_y": "100",
                                      "shadow": "",
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": "",
                                      "source": -1,
                                      "threshold": 0
                                  },
                                  "30": {
                                      "type": "text",
                                      "id": 30,
                                      "pos_x": 374,
                                      "pos_y": 178,
                                      "color": "none",
                                      "fill": "rgb(142, 224, 227)",
                                      "font_family": "Arial, sans-serif",
                                      "font_size": 20,
                                      "degree": 0,
                                      "align": "start",
                                      "text": "Haus",
                                      "shadow": "",
                                      "css_general": ""
                                  },
                                  "31": {
                                      "type": "text",
                                      "subType": "datasource",
                                      "id": 31,
                                      "pos_x": 5031,
                                      "pos_y": 5021,
                                      "color": "none",
                                      "fill": "rgb(78, 130, 215)",
                                      "font_family": "Arial, sans-serif",
                                      "font_size": 20,
                                      "degree": 0,
                                      "align": "start",
                                      "text": "ID 31",
                                      "unit": "kW",
                                      "append": "",
                                      "prepend": "",
                                      "source": -1,
                                      "source_option": -1,
                                      "source_display": "value",
                                      "shadow": "",
                                      "threshold": 0,
                                      "calculate_kw": false,
                                      "convert": false,
                                      "decimal_places": 0,
                                      "subtract": [
                                          -1
                                      ],
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  },
                                  "32": {
                                      "type": "text",
                                      "id": 32,
                                      "pos_x": 503,
                                      "pos_y": 5045,
                                      "color": "none",
                                      "fill": "rgb(119, 111, 110)",
                                      "font_family": "Arial, sans-serif",
                                      "font_size": 20,
                                      "degree": 0,
                                      "align": "start",
                                      "text": "Text",
                                      "shadow": "",
                                      "css_general": ""
                                  },
                                  "33": {
                                      "type": "text",
                                      "subType": "datasource",
                                      "id": 33,
                                      "pos_x": 400,
                                      "pos_y": 147,
                                      "color": "none",
                                      "fill": "rgb(0, 181, 221)",
                                      "font_family": "Arial, sans-serif",
                                      "font_size": 18,
                                      "degree": 0,
                                      "align": "middle",
                                      "text": "ID 33",
                                      "unit": "W",
                                      "append": "",
                                      "prepend": "",
                                      "source": "1",
                                      "source_option": "-1",
                                      "source_display": "value",
                                      "shadow": "",
                                      "threshold": 0,
                                      "calculate_kw": false,
                                      "convert": false,
                                      "decimal_places": 0,
                                      "subtract": [
                                          -1
                                      ],
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  },
                                  "34": {
                                      "type": "circle",
                                      "id": 34,
                                      "radius": 50,
                                      "pos_x": 5024,
                                      "pos_y": 500,
                                      "fill": "none",
                                      "color": "rgb(68, 172, 252)",
                                      "stroke": 5,
                                      "shadow": "",
                                      "frame": "_overlay",
                                      "url": "",
                                      "fill_value": null,
                                      "fill_type": -1,
                                      "fill_direction": 90,
                                      "fill_max": null,
                                      "source": -1,
                                      "threshold": 0,
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  },
                                  "35": {
                                      "type": "rect",
                                      "id": 35,
                                      "rx": 10,
                                      "height": 100,
                                      "width": 100,
                                      "pos_x": 5023,
                                      "pos_y": 5012,
                                      "fill": "none",
                                      "color": "rgb(40, 176, 44)",
                                      "stroke": 5,
                                      "shadow": "",
                                      "frame": "_overlay",
                                      "url": "",
                                      "fill_value": null,
                                      "fill_type": -1,
                                      "fill_direction": 90,
                                      "fill_max": null,
                                      "source": -1,
                                      "threshold": 0,
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  },
                                  "36": {
                                      "type": "rect",
                                      "id": 36,
                                      "rx": 10,
                                      "height": 100,
                                      "width": 100,
                                      "pos_x": 509,
                                      "pos_y": 5027,
                                      "fill": "none",
                                      "color": "rgb(186, 78, 128)",
                                      "stroke": 5,
                                      "shadow": "",
                                      "frame": "_overlay",
                                      "url": "",
                                      "fill_value": null,
                                      "fill_type": -1,
                                      "fill_direction": 90,
                                      "fill_max": null,
                                      "source": -1,
                                      "threshold": 0,
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  }
                              },
                              "defs": {
                                  "path_5_7": {
                                      "type": "def",
                                      "id": "path_5_7",
                                      "d": "M105 119  V 130.2 A 15 15 0 0 0 120 145.2  H 186 A 15 15 0 0 1 201 160.2  V 175",
                                      "startSlot": "bottom_right",
                                      "endSlot": "top_left"
                                  },
                                  "path_14_7": {
                                      "type": "def",
                                      "id": "path_14_7",
                                      "d": "M105 341  V 328.2 A 15 15 0 0 1 120 313.2  H 186 A 15 15 0 0 0 201 298.2  V 277",
                                      "startSlot": "top_right",
                                      "endSlot": "bottom_left"
                                  },
                                  "path_5_14": {
                                      "type": "def",
                                      "id": "path_5_14",
                                      "d": "M85 119  V 341",
                                      "startSlot": "bottom",
                                      "endSlot": "top"
                                  },
                                  "path_7_28": {
                                      "type": "def",
                                      "id": "path_7_28",
                                      "d": "M272 206  H 287.2 A 15 15 0 0 0 302.2 191  V 163 A 15 15 0 0 1 317.2 148  H 348.5",
                                      "startSlot": "right_top",
                                      "endSlot": "left"
                                  },
                                  "path_7_22": {
                                      "type": "def",
                                      "id": "path_7_22",
                                      "d": "M272 246  H 288.2 A 15 15 0 0 1 303.2 261  V 290 A 15 15 0 0 0 318.2 305  H 353",
                                      "startSlot": "right_bottom",
                                      "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_14_7": {
                                      "type": "line",
                                      "id": "line_path_14_7",
                                      "href": "#path_14_7",
                                      "color": "rgb(0, 0, 0)",
                                      "shadow": ""
                                  },
                                  "line_path_5_14": {
                                      "type": "line",
                                      "id": "line_path_5_14",
                                      "href": "#path_5_14",
                                      "color": "rgb(0, 0, 0)",
                                      "shadow": ""
                                  },
                                  "line_path_7_28": {
                                      "type": "line",
                                      "id": "line_path_7_28",
                                      "href": "#path_7_28",
                                      "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": ""
                                  }
                              },
                              "animations": {
                                  "anim_path_5_7": {
                                      "type": "animation",
                                      "id": "anim_path_5_7",
                                      "href": "#path_5_7",
                                      "color": "rgb(255, 206, 74)",
                                      "source": -1,
                                      "threshold": 0,
                                      "animation_properties": "positive",
                                      "animation_option": false,
                                      "dots": 0,
                                      "duration": 0,
                                      "power": 0,
                                      "animation_type": -1,
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  },
                                  "anim_path_14_7": {
                                      "type": "animation",
                                      "id": "anim_path_14_7",
                                      "href": "#path_14_7",
                                      "color": "rgb(255, 206, 74)",
                                      "source": -1,
                                      "threshold": 10,
                                      "animation_properties": "negative",
                                      "animation_option": false,
                                      "dots": 0,
                                      "duration": 0,
                                      "power": 0,
                                      "animation_type": -1,
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  },
                                  "anim_path_5_14": {
                                      "type": "animation",
                                      "id": "anim_path_5_14",
                                      "href": "#path_5_14",
                                      "color": "rgb(255, 206, 74)",
                                      "source": -1,
                                      "threshold": 0,
                                      "animation_properties": "positive",
                                      "animation_option": false,
                                      "dots": 0,
                                      "duration": 0,
                                      "power": 0,
                                      "animation_type": -1,
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  },
                                  "anim_path_7_28": {
                                      "type": "animation",
                                      "id": "anim_path_7_28",
                                      "href": "#path_7_28",
                                      "color": "rgb(255, 206, 74)",
                                      "source": -1,
                                      "threshold": 0,
                                      "animation_properties": "positive",
                                      "animation_option": false,
                                      "dots": 0,
                                      "duration": 0,
                                      "power": 0,
                                      "animation_type": -1,
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  },
                                  "anim_path_7_22": {
                                      "type": "animation",
                                      "id": "anim_path_7_22",
                                      "href": "#path_7_22",
                                      "color": "rgb(255, 206, 74)",
                                      "source": -1,
                                      "threshold": 0,
                                      "animation_properties": "positive",
                                      "animation_option": false,
                                      "dots": 0,
                                      "duration": 0,
                                      "power": 0,
                                      "animation_type": -1,
                                      "css_general": "",
                                      "css_active_positive": "",
                                      "css_inactive_positive": "",
                                      "css_active_negative": "",
                                      "css_inactive_negative": ""
                                  }
                              },
                              "datasources": {
                                  "0": {
                                      "source": "alias.0.PV.30775_Measurement_GridMs_TotW",
                                      "alias": "PV_Power"
                                  },
                                  "1": {
                                      "source": "linkeddevices.0.KG.Stromzähler.Haus_Power_curr",
                                      "alias": "Haus_Power"
                                  },
                                  "2": {
                                      "source": "linkeddevices.0.KG.Stromzähler.LWP_Power_curr",
                                      "alias": "LWP_Power"
                                  }
                              }
                          }
                          
                          HomoranH Nicht stören
                          HomoranH Nicht stören
                          Homoran
                          Global Moderator Administrators
                          schrieb am zuletzt editiert von Homoran
                          #778

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

                          Gibt es die Möglichkeit die Konfig zu exporieren und importieren?

                          ja!
                          unter objekten in den Datenpunkten
                          Screenshot_20230705-224550_Firefox.jpg

                          kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

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

                          der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                          1 Antwort Letzte Antwort
                          1
                          • A andi2055

                            Toller Adapter!
                            Spiele gerade etwas damit rum. Irgendwann kann ich keine Elemente mehr einfügen wie Kreis oder Rechteck.
                            Bestehendes Duplizieren funktioniert.

                            Im Log sind die aber anscheinend mit drin.
                            Ein Bug?
                            Gibt es die Möglichkeit die Konfig zu exporieren und importieren?

                            7a950e96-40e1-4e9e-90c7-9f66b058e385-grafik.png

                            {
                                "basic": {
                                    "enable_grid": true,
                                    "enable_animation": false,
                                    "enable_area_catch": true,
                                    "enable_config_icon": true,
                                    "enable_last_id": false,
                                    "height": 540,
                                    "width": 530,
                                    "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": null,
                                        "charge": null,
                                        "charge_prop": false,
                                        "charge_kw": false,
                                        "discharge": null,
                                        "discharge_prop": false,
                                        "discharge_kw": 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": {
                                        "type": "text",
                                        "subType": "datasource",
                                        "id": 2,
                                        "pos_x": 84,
                                        "pos_y": 59,
                                        "color": "none",
                                        "fill": "rgb(255, 206, 74)",
                                        "font_family": "Arial, sans-serif",
                                        "font_size": 18,
                                        "degree": 0,
                                        "align": "middle",
                                        "text": "ID 2",
                                        "unit": "W",
                                        "append": "",
                                        "prepend": "",
                                        "source": "0",
                                        "source_option": "-1",
                                        "source_display": "value",
                                        "shadow": "",
                                        "threshold": 0,
                                        "calculate_kw": false,
                                        "convert": false,
                                        "decimal_places": 0,
                                        "subtract": [
                                            -1
                                        ],
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    },
                                    "5": {
                                        "type": "rect",
                                        "id": 5,
                                        "rx": 10,
                                        "height": 100,
                                        "width": 100,
                                        "pos_x": 35,
                                        "pos_y": 18,
                                        "fill": "none",
                                        "color": "rgb(255, 206, 74)",
                                        "stroke": 2,
                                        "shadow": "rgba(0,0,0,0.7)",
                                        "frame": "_overlay",
                                        "url": "",
                                        "fill_value": null,
                                        "fill_type": "percent",
                                        "fill_direction": "90",
                                        "fill_max": null,
                                        "source": -1,
                                        "threshold": 0,
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    },
                                    "6": {
                                        "type": "icon",
                                        "id": "6",
                                        "icon": "material-symbols:solar-power",
                                        "width": 24,
                                        "height": 24,
                                        "color": "rgba(0, 0, 0, 0.7)",
                                        "pos_x": "73",
                                        "pos_y": "22",
                                        "shadow": "",
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": "",
                                        "source": -1,
                                        "threshold": 0
                                    },
                                    "7": {
                                        "type": "rect",
                                        "id": 7,
                                        "rx": 10,
                                        "height": 100,
                                        "width": 100,
                                        "pos_x": 171,
                                        "pos_y": 176,
                                        "fill": "none",
                                        "color": "rgb(0, 181, 221)",
                                        "stroke": 2,
                                        "shadow": "rgba(0,0,0,0.7)",
                                        "frame": "_overlay",
                                        "url": "",
                                        "fill_value": null,
                                        "fill_type": "percent",
                                        "fill_direction": 90,
                                        "fill_max": null,
                                        "source": -1,
                                        "threshold": 0,
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    },
                                    "9": {
                                        "type": "text",
                                        "subType": "datasource",
                                        "id": 9,
                                        "pos_x": 221,
                                        "pos_y": 218,
                                        "color": "none",
                                        "fill": "rgb(0, 181, 221)",
                                        "font_family": "Arial, sans-serif",
                                        "font_size": 18,
                                        "degree": 0,
                                        "align": "middle",
                                        "text": "ID 9",
                                        "unit": "kW",
                                        "append": "",
                                        "prepend": "",
                                        "source": -1,
                                        "source_option": -1,
                                        "source_display": "value",
                                        "shadow": "",
                                        "threshold": 0,
                                        "calculate_kw": true,
                                        "convert": false,
                                        "decimal_places": 2,
                                        "subtract": [
                                            -1
                                        ],
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    },
                                    "10": {
                                        "type": "text",
                                        "id": 10,
                                        "pos_x": 87,
                                        "pos_y": 90,
                                        "color": "none",
                                        "fill": "rgba(0, 0, 0, 0.7)",
                                        "font_family": "Arial, sans-serif",
                                        "font_size": 14,
                                        "degree": 0,
                                        "align": "middle",
                                        "text": "Produktion",
                                        "shadow": "",
                                        "css_general": ""
                                    },
                                    "11": {
                                        "type": "text",
                                        "id": 11,
                                        "pos_x": 221,
                                        "pos_y": 252,
                                        "color": "none",
                                        "fill": "rgba(0, 0, 0, 0.7)",
                                        "font_family": "Arial, sans-serif",
                                        "font_size": 14,
                                        "degree": 0,
                                        "align": "middle",
                                        "text": "Verbrauch",
                                        "shadow": "",
                                        "css_general": ""
                                    },
                                    "12": {
                                        "type": "icon",
                                        "id": "12",
                                        "icon": "mdi:house-city",
                                        "width": 24,
                                        "height": 24,
                                        "color": "rgba(0, 0, 0, 0.7)",
                                        "pos_x": "209",
                                        "pos_y": "182",
                                        "shadow": "",
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": "",
                                        "source": 1,
                                        "threshold": 0
                                    },
                                    "14": {
                                        "type": "rect",
                                        "id": 14,
                                        "rx": 10,
                                        "height": 100,
                                        "width": 100,
                                        "pos_x": 35,
                                        "pos_y": 342,
                                        "fill": "none",
                                        "color": "rgba(97, 104, 122, 0.7)",
                                        "stroke": 2,
                                        "shadow": "rgba(0,0,0,0.7)",
                                        "frame": "_overlay",
                                        "url": "",
                                        "fill_value": null,
                                        "fill_type": "percent",
                                        "fill_direction": "90",
                                        "fill_max": null,
                                        "source": -1,
                                        "threshold": 0,
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    },
                                    "19": {
                                        "type": "text",
                                        "subType": "datasource",
                                        "id": 19,
                                        "pos_x": 85,
                                        "pos_y": 384,
                                        "color": "none",
                                        "fill": "rgb(97, 104, 122)",
                                        "font_family": "Arial, sans-serif",
                                        "font_size": 18,
                                        "degree": 0,
                                        "align": "middle",
                                        "text": "ID 19",
                                        "unit": "kW",
                                        "append": "",
                                        "prepend": "",
                                        "source": "1",
                                        "source_option": "-1",
                                        "source_display": "value",
                                        "shadow": "",
                                        "threshold": 0,
                                        "calculate_kw": false,
                                        "convert": false,
                                        "decimal_places": 0,
                                        "subtract": [
                                            -1
                                        ],
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    },
                                    "20": {
                                        "type": "icon",
                                        "id": "20",
                                        "icon": "mdi:electricity-from-grid",
                                        "width": 24,
                                        "height": 24,
                                        "color": "rgba(0, 0, 0, 0.7)",
                                        "pos_x": "73",
                                        "pos_y": "348",
                                        "shadow": "",
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": "",
                                        "source": -1,
                                        "threshold": 0
                                    },
                                    "21": {
                                        "type": "text",
                                        "id": 21,
                                        "pos_x": 85,
                                        "pos_y": 418,
                                        "color": "none",
                                        "fill": "rgba(0, 0, 0, 0.7)",
                                        "font_family": "Arial, sans-serif",
                                        "font_size": 14,
                                        "degree": 0,
                                        "align": "middle",
                                        "text": "Netz",
                                        "shadow": "",
                                        "css_general": ""
                                    },
                                    "22": {
                                        "type": "rect",
                                        "id": 22,
                                        "rx": 10,
                                        "height": 100,
                                        "width": 100,
                                        "pos_x": 354,
                                        "pos_y": 255,
                                        "fill": "url(\"#gradient_22\")",
                                        "color": "rgb(197, 144, 46)",
                                        "stroke": 2,
                                        "shadow": "rgba(0,0,0,0.7)",
                                        "frame": "_overlay",
                                        "url": "",
                                        "fill_value": null,
                                        "fill_type": "percent",
                                        "fill_direction": 90,
                                        "fill_max": null,
                                        "source": 2,
                                        "threshold": 0,
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    },
                                    "23": {
                                        "type": "icon",
                                        "id": "23",
                                        "icon": "material-symbols:heat-pump-outline",
                                        "width": 24,
                                        "height": 24,
                                        "color": "rgba(0, 0, 0, 0.7)",
                                        "pos_x": "392",
                                        "pos_y": "261",
                                        "shadow": "",
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": "",
                                        "source": -1,
                                        "threshold": 0
                                    },
                                    "24": {
                                        "type": "text",
                                        "id": 24,
                                        "pos_x": 404,
                                        "pos_y": 331,
                                        "color": "none",
                                        "fill": "rgba(0, 0, 0, 0.7)",
                                        "font_family": "Arial, sans-serif",
                                        "font_size": 14,
                                        "degree": 0,
                                        "align": "middle",
                                        "text": "LWP",
                                        "shadow": "",
                                        "css_general": ""
                                    },
                                    "26": {
                                        "type": "text",
                                        "subType": "datasource",
                                        "id": 26,
                                        "pos_x": 405,
                                        "pos_y": 297,
                                        "color": "none",
                                        "fill": "rgb(197, 144, 46)",
                                        "font_family": "Arial, sans-serif",
                                        "font_size": 18,
                                        "degree": 0,
                                        "align": "middle",
                                        "text": "ID 26",
                                        "unit": "kW",
                                        "append": "",
                                        "prepend": "",
                                        "source": 2,
                                        "source_option": -1,
                                        "source_display": "value",
                                        "shadow": "",
                                        "threshold": 0,
                                        "calculate_kw": false,
                                        "convert": false,
                                        "decimal_places": 0,
                                        "subtract": [
                                            -1
                                        ],
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    },
                                    "28": {
                                        "type": "rect",
                                        "id": 28,
                                        "rx": 10,
                                        "height": 100,
                                        "width": 100,
                                        "pos_x": 351,
                                        "pos_y": 98,
                                        "fill": "none",
                                        "color": "rgb(37, 214, 254)",
                                        "stroke": 5,
                                        "shadow": "",
                                        "frame": "_overlay",
                                        "url": "",
                                        "fill_value": null,
                                        "fill_type": -1,
                                        "fill_direction": 90,
                                        "fill_max": null,
                                        "source": 1,
                                        "threshold": 0,
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    },
                                    "29": {
                                        "type": "icon",
                                        "id": "29",
                                        "icon": "mdi:house",
                                        "width": 24,
                                        "height": 24,
                                        "color": "rgb(0, 0, 0)",
                                        "pos_x": "387",
                                        "pos_y": "100",
                                        "shadow": "",
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": "",
                                        "source": -1,
                                        "threshold": 0
                                    },
                                    "30": {
                                        "type": "text",
                                        "id": 30,
                                        "pos_x": 374,
                                        "pos_y": 178,
                                        "color": "none",
                                        "fill": "rgb(142, 224, 227)",
                                        "font_family": "Arial, sans-serif",
                                        "font_size": 20,
                                        "degree": 0,
                                        "align": "start",
                                        "text": "Haus",
                                        "shadow": "",
                                        "css_general": ""
                                    },
                                    "31": {
                                        "type": "text",
                                        "subType": "datasource",
                                        "id": 31,
                                        "pos_x": 5031,
                                        "pos_y": 5021,
                                        "color": "none",
                                        "fill": "rgb(78, 130, 215)",
                                        "font_family": "Arial, sans-serif",
                                        "font_size": 20,
                                        "degree": 0,
                                        "align": "start",
                                        "text": "ID 31",
                                        "unit": "kW",
                                        "append": "",
                                        "prepend": "",
                                        "source": -1,
                                        "source_option": -1,
                                        "source_display": "value",
                                        "shadow": "",
                                        "threshold": 0,
                                        "calculate_kw": false,
                                        "convert": false,
                                        "decimal_places": 0,
                                        "subtract": [
                                            -1
                                        ],
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    },
                                    "32": {
                                        "type": "text",
                                        "id": 32,
                                        "pos_x": 503,
                                        "pos_y": 5045,
                                        "color": "none",
                                        "fill": "rgb(119, 111, 110)",
                                        "font_family": "Arial, sans-serif",
                                        "font_size": 20,
                                        "degree": 0,
                                        "align": "start",
                                        "text": "Text",
                                        "shadow": "",
                                        "css_general": ""
                                    },
                                    "33": {
                                        "type": "text",
                                        "subType": "datasource",
                                        "id": 33,
                                        "pos_x": 400,
                                        "pos_y": 147,
                                        "color": "none",
                                        "fill": "rgb(0, 181, 221)",
                                        "font_family": "Arial, sans-serif",
                                        "font_size": 18,
                                        "degree": 0,
                                        "align": "middle",
                                        "text": "ID 33",
                                        "unit": "W",
                                        "append": "",
                                        "prepend": "",
                                        "source": "1",
                                        "source_option": "-1",
                                        "source_display": "value",
                                        "shadow": "",
                                        "threshold": 0,
                                        "calculate_kw": false,
                                        "convert": false,
                                        "decimal_places": 0,
                                        "subtract": [
                                            -1
                                        ],
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    },
                                    "34": {
                                        "type": "circle",
                                        "id": 34,
                                        "radius": 50,
                                        "pos_x": 5024,
                                        "pos_y": 500,
                                        "fill": "none",
                                        "color": "rgb(68, 172, 252)",
                                        "stroke": 5,
                                        "shadow": "",
                                        "frame": "_overlay",
                                        "url": "",
                                        "fill_value": null,
                                        "fill_type": -1,
                                        "fill_direction": 90,
                                        "fill_max": null,
                                        "source": -1,
                                        "threshold": 0,
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    },
                                    "35": {
                                        "type": "rect",
                                        "id": 35,
                                        "rx": 10,
                                        "height": 100,
                                        "width": 100,
                                        "pos_x": 5023,
                                        "pos_y": 5012,
                                        "fill": "none",
                                        "color": "rgb(40, 176, 44)",
                                        "stroke": 5,
                                        "shadow": "",
                                        "frame": "_overlay",
                                        "url": "",
                                        "fill_value": null,
                                        "fill_type": -1,
                                        "fill_direction": 90,
                                        "fill_max": null,
                                        "source": -1,
                                        "threshold": 0,
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    },
                                    "36": {
                                        "type": "rect",
                                        "id": 36,
                                        "rx": 10,
                                        "height": 100,
                                        "width": 100,
                                        "pos_x": 509,
                                        "pos_y": 5027,
                                        "fill": "none",
                                        "color": "rgb(186, 78, 128)",
                                        "stroke": 5,
                                        "shadow": "",
                                        "frame": "_overlay",
                                        "url": "",
                                        "fill_value": null,
                                        "fill_type": -1,
                                        "fill_direction": 90,
                                        "fill_max": null,
                                        "source": -1,
                                        "threshold": 0,
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    }
                                },
                                "defs": {
                                    "path_5_7": {
                                        "type": "def",
                                        "id": "path_5_7",
                                        "d": "M105 119  V 130.2 A 15 15 0 0 0 120 145.2  H 186 A 15 15 0 0 1 201 160.2  V 175",
                                        "startSlot": "bottom_right",
                                        "endSlot": "top_left"
                                    },
                                    "path_14_7": {
                                        "type": "def",
                                        "id": "path_14_7",
                                        "d": "M105 341  V 328.2 A 15 15 0 0 1 120 313.2  H 186 A 15 15 0 0 0 201 298.2  V 277",
                                        "startSlot": "top_right",
                                        "endSlot": "bottom_left"
                                    },
                                    "path_5_14": {
                                        "type": "def",
                                        "id": "path_5_14",
                                        "d": "M85 119  V 341",
                                        "startSlot": "bottom",
                                        "endSlot": "top"
                                    },
                                    "path_7_28": {
                                        "type": "def",
                                        "id": "path_7_28",
                                        "d": "M272 206  H 287.2 A 15 15 0 0 0 302.2 191  V 163 A 15 15 0 0 1 317.2 148  H 348.5",
                                        "startSlot": "right_top",
                                        "endSlot": "left"
                                    },
                                    "path_7_22": {
                                        "type": "def",
                                        "id": "path_7_22",
                                        "d": "M272 246  H 288.2 A 15 15 0 0 1 303.2 261  V 290 A 15 15 0 0 0 318.2 305  H 353",
                                        "startSlot": "right_bottom",
                                        "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_14_7": {
                                        "type": "line",
                                        "id": "line_path_14_7",
                                        "href": "#path_14_7",
                                        "color": "rgb(0, 0, 0)",
                                        "shadow": ""
                                    },
                                    "line_path_5_14": {
                                        "type": "line",
                                        "id": "line_path_5_14",
                                        "href": "#path_5_14",
                                        "color": "rgb(0, 0, 0)",
                                        "shadow": ""
                                    },
                                    "line_path_7_28": {
                                        "type": "line",
                                        "id": "line_path_7_28",
                                        "href": "#path_7_28",
                                        "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": ""
                                    }
                                },
                                "animations": {
                                    "anim_path_5_7": {
                                        "type": "animation",
                                        "id": "anim_path_5_7",
                                        "href": "#path_5_7",
                                        "color": "rgb(255, 206, 74)",
                                        "source": -1,
                                        "threshold": 0,
                                        "animation_properties": "positive",
                                        "animation_option": false,
                                        "dots": 0,
                                        "duration": 0,
                                        "power": 0,
                                        "animation_type": -1,
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    },
                                    "anim_path_14_7": {
                                        "type": "animation",
                                        "id": "anim_path_14_7",
                                        "href": "#path_14_7",
                                        "color": "rgb(255, 206, 74)",
                                        "source": -1,
                                        "threshold": 10,
                                        "animation_properties": "negative",
                                        "animation_option": false,
                                        "dots": 0,
                                        "duration": 0,
                                        "power": 0,
                                        "animation_type": -1,
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    },
                                    "anim_path_5_14": {
                                        "type": "animation",
                                        "id": "anim_path_5_14",
                                        "href": "#path_5_14",
                                        "color": "rgb(255, 206, 74)",
                                        "source": -1,
                                        "threshold": 0,
                                        "animation_properties": "positive",
                                        "animation_option": false,
                                        "dots": 0,
                                        "duration": 0,
                                        "power": 0,
                                        "animation_type": -1,
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    },
                                    "anim_path_7_28": {
                                        "type": "animation",
                                        "id": "anim_path_7_28",
                                        "href": "#path_7_28",
                                        "color": "rgb(255, 206, 74)",
                                        "source": -1,
                                        "threshold": 0,
                                        "animation_properties": "positive",
                                        "animation_option": false,
                                        "dots": 0,
                                        "duration": 0,
                                        "power": 0,
                                        "animation_type": -1,
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    },
                                    "anim_path_7_22": {
                                        "type": "animation",
                                        "id": "anim_path_7_22",
                                        "href": "#path_7_22",
                                        "color": "rgb(255, 206, 74)",
                                        "source": -1,
                                        "threshold": 0,
                                        "animation_properties": "positive",
                                        "animation_option": false,
                                        "dots": 0,
                                        "duration": 0,
                                        "power": 0,
                                        "animation_type": -1,
                                        "css_general": "",
                                        "css_active_positive": "",
                                        "css_inactive_positive": "",
                                        "css_active_negative": "",
                                        "css_inactive_negative": ""
                                    }
                                },
                                "datasources": {
                                    "0": {
                                        "source": "alias.0.PV.30775_Measurement_GridMs_TotW",
                                        "alias": "PV_Power"
                                    },
                                    "1": {
                                        "source": "linkeddevices.0.KG.Stromzähler.Haus_Power_curr",
                                        "alias": "Haus_Power"
                                    },
                                    "2": {
                                        "source": "linkeddevices.0.KG.Stromzähler.LWP_Power_curr",
                                        "alias": "LWP_Power"
                                    }
                                }
                            }
                            
                            SKBS Offline
                            SKBS Offline
                            SKB
                            Developer Most Active
                            schrieb am zuletzt editiert von
                            #779

                            @andi2055 Du hast in den Basis Einstellungen die Farbe entweder entfernt oder nicht gespeichert.

                            Daher sind die Elemente ohne Farbe.

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

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

                            A 1 Antwort Letzte Antwort
                            0
                            • SKBS SKB

                              @happyuser20 Das ist eine prima Idee :) Danke für den Tipp.

                              Ich habe hier einmal ein Beispiel. Man könnte dann die Hintergrundfarbe des Kreises angeben und die der Umrandung.

                              Ich denke, man sollte auch Startpunkte angeben können. Dauert nur etwas, bis ich das fertig habe.

                              2023-07-05 17_31_45-Energiefluss - erweitert Configuration.png

                              H Offline
                              H Offline
                              Happyuser20
                              schrieb am zuletzt editiert von
                              #780

                              @skb Wenn das noch kommt, ist der Adapter für Perfekt :+1: :grinning:

                              SKBS 2 Antworten Letzte Antwort
                              0
                              • H Happyuser20

                                @skb Wenn das noch kommt, ist der Adapter für Perfekt :+1: :grinning:

                                SKBS Offline
                                SKBS Offline
                                SKB
                                Developer Most Active
                                schrieb am zuletzt editiert von
                                #781

                                @happyuser20 freut mich, wenn du dies so siehst ;)

                                Es kommen doch immer neue Ideen dazu.

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

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

                                1 Antwort Letzte Antwort
                                0
                                • SKBS SKB

                                  @andi2055 Du hast in den Basis Einstellungen die Farbe entweder entfernt oder nicht gespeichert.

                                  Daher sind die Elemente ohne Farbe.

                                  A Offline
                                  A Offline
                                  andi2055
                                  schrieb am zuletzt editiert von
                                  #782

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

                                  @andi2055 Du hast in den Basis Einstellungen die Farbe entweder entfernt oder nicht gespeichert.

                                  Daher sind die Elemente ohne Farbe.

                                  Bewusst habe ich da unter Settings nichts manuell geändert. Die Farbe muss da irgendwann durch eine andere Aktion entfernt worden sein... Ich habe auch neue Instanzen erzeugt, um von Anfang an zu starten und das ist mir mehrfach passiert.

                                  Nun habe ich eine Farbe manuell eingefügt, gespeichert und neu aufgerufen.
                                  Trotzdem erscheinen keine neuen Elemente...?

                                  78e0edf0-2853-40c8-8607-8446d02823d5-grafik.png

                                  Muss ich noch etwas tun? Danke dir!

                                  SKBS 1 Antwort Letzte Antwort
                                  0
                                  • A andi2055

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

                                    @andi2055 Du hast in den Basis Einstellungen die Farbe entweder entfernt oder nicht gespeichert.

                                    Daher sind die Elemente ohne Farbe.

                                    Bewusst habe ich da unter Settings nichts manuell geändert. Die Farbe muss da irgendwann durch eine andere Aktion entfernt worden sein... Ich habe auch neue Instanzen erzeugt, um von Anfang an zu starten und das ist mir mehrfach passiert.

                                    Nun habe ich eine Farbe manuell eingefügt, gespeichert und neu aufgerufen.
                                    Trotzdem erscheinen keine neuen Elemente...?

                                    78e0edf0-2853-40c8-8607-8446d02823d5-grafik.png

                                    Muss ich noch etwas tun? Danke dir!

                                    SKBS Offline
                                    SKBS Offline
                                    SKB
                                    Developer Most Active
                                    schrieb am zuletzt editiert von
                                    #783

                                    @andi2055 Gespeichert hast Du die Dinge aber, ja?

                                    Erscheinen bei F12 Fehler im Browser?

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

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

                                    A 1 Antwort Letzte Antwort
                                    0
                                    • SKBS SKB

                                      @andi2055 Gespeichert hast Du die Dinge aber, ja?

                                      Erscheinen bei F12 Fehler im Browser?

                                      A Offline
                                      A Offline
                                      andi2055
                                      schrieb am zuletzt editiert von
                                      #784

                                      @skb
                                      Fehler gerade entdeckt. Die Position ist außerhalb des Bereiches...

                                      f90a125d-2ae5-48b6-b1e9-7a717f4abe5d-grafik.png

                                      Muss ich was tun oder ein Bug?

                                      SKBS 2 Antworten Letzte Antwort
                                      0
                                      • A andi2055

                                        @skb
                                        Fehler gerade entdeckt. Die Position ist außerhalb des Bereiches...

                                        f90a125d-2ae5-48b6-b1e9-7a717f4abe5d-grafik.png

                                        Muss ich was tun oder ein Bug?

                                        SKBS Offline
                                        SKBS Offline
                                        SKB
                                        Developer Most Active
                                        schrieb am zuletzt editiert von SKB
                                        #785

                                        @andi2055 Was mich hier wundert, warum es bei den Anderen geht und bei dir nicht - bei mir geht es ja auch.

                                        Edit: Kommando zurück - ich konnte den Fehler nachstellen. Gib' mir ein paar Minuten, dann habe ich es behoben.

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

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

                                        1 Antwort Letzte Antwort
                                        0
                                        • A andi2055

                                          @skb
                                          Fehler gerade entdeckt. Die Position ist außerhalb des Bereiches...

                                          f90a125d-2ae5-48b6-b1e9-7a717f4abe5d-grafik.png

                                          Muss ich was tun oder ein Bug?

                                          SKBS Offline
                                          SKBS Offline
                                          SKB
                                          Developer Most Active
                                          schrieb am zuletzt editiert von
                                          #786

                                          @andi2055 Fehler ist behoben. Kannst einfach nochmal von Github drüber installieren.

                                          Am Besten lädst Du dann die Daten aus dem Datenpunkt

                                          energiefluss-erweiter.<Instance>.configuration
                                          

                                          einmal in einen Editor und suchst nach "pos_x" und "pos_y" und passt dort in etwa die Koordinaten an, das sie passen und legst es dann wieder in den Datenpunkt zurück.

                                          Sorry für den blöden Fehler.

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

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

                                          A 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

                                          830

                                          Online

                                          32.4k

                                          Benutzer

                                          81.5k

                                          Themen

                                          1.3m

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

                                          • Du hast noch kein Konto? Registrieren

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