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

  1. ioBroker Community Home
  2. Deutsch
  3. Praktische Anwendungen (Showcase)
  4. [Linux Shell-Skript] WLAN-Wetterstation

NEWS

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

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

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

[Linux Shell-Skript] WLAN-Wetterstation

Geplant Angeheftet Gesperrt Verschoben Praktische Anwendungen (Showcase)
linuxshell-scriptwetterstationwlan-wetterstation
5.7k Beiträge 152 Kommentatoren 3.8m Aufrufe 134 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.
  • SBorgS SBorg

    @Petersilie sagte in [Linux Shell-Skript] WLAN-Wetterstation:

    Das Skript selbst funktioniert auch und liest die Daten meiner DNT Weatherscreen PRO ein und übergibt diese nach ioBroker.

    Danke für die Rückmeldung, auch bzgl. des neuen Stationstypes :)

    P Offline
    P Offline
    Petersilie
    schrieb am zuletzt editiert von
    #1956

    @SBorg sagte in [Linux Shell-Skript] WLAN-Wetterstation:

    @Petersilie sagte in [Linux Shell-Skript] WLAN-Wetterstation:

    Das Skript selbst funktioniert auch und liest die Daten meiner DNT Weatherscreen PRO ein und übergibt diese nach ioBroker.

    Danke für die Rückmeldung, auch bzgl. des neuen Stationstypes :)

    Gerne. Die Anzeige in Grafana funktioniert jetzt auch. Die Typen im influxdb Adapter für die Wetterdaten waren durcheinander und die meisten Daten als String übermittelt. Da funktionierten die Queries nicht mehr.

    1 Antwort Letzte Antwort
    0
    • C Offline
      C Offline
      christian90
      schrieb am zuletzt editiert von
      #1957

      Hallo und erstmal Danke für dieses tolle Projekt.

      Ich bin seit ein paar Tagen am testen mit einer froggit hp1000se pro und zusätzlich einen DP100. Als Protokoll ist Ecowitt ausgewählt.

      Nach einer kleinen Änderung funktioniert nun auch der Zusatzsensor DP100.
      Ich habe in der Zeile 204 von wetterstation.sh

           if [[ ${MESSWERTERAWIN[$i]} =~ ^soilmoisture1[1-8]= ]]
      auf 
           if [[ ${MESSWERTERAWIN[$i]} =~ ^soilmoisture[1-8]= ]]
      

      geändert.

      Und in Zeile 188 von wettersation.sub

               if [[ "${MESSWERTE[$i]}" =~ ^soilmoisture[1-8] ]]; then IOBOUT="${IOBOUT}&${PRE_DP}.DP100.${MESSWERTE[$i]:12:1}.Batterie=${MESSWERTE[$(($i+1))]}"; fiin
      
      auf
      
               if [[ "${MESSWERTE[$i]}" =~ ^soilmoisture[1-8] ]]; then IOBOUT="${IOBOUT}&${PRE_DP}.DP100.${MESSWERTE[$i]:12:1}.Bodenfeuchtigkeit=${MESSWERTE[$(($i+1))]}"; fi
      

      geändert.

      Vielleicht ist dieses ja noch ein kleiner Fehler im Code.

      DATA von Wetterstation:

      PASSKEY=xxxx&stationtype=EasyWeatherV1.4.6&dateutc=2021-01-04+20:28:43&tempinf=42.3&humidityin=74&baromrelin=29.988&baromabsin=29.988&tempf=34.3&humidity=96&winddir=8&winddir_avg10m=18&windspeedmph=1.8&windspdmph_avg10m=1.8&windgustmph=3.4&maxdailygust=9.2&rainratein=0.000&eventrainin=0.000&hourlyrainin=0.000&dailyrainin=0.189&weeklyrainin=0.331&monthlyrainin=0.339&yearlyrainin=0.339&solarradiation=0.00&uv=0&soilmoisture1=23&wh65batt=0&wh25batt=0&soilbatt1=1.5&freq=868M&model=HP1000SE-PRO_Pro_V1.6.7
      
      a200A 1 Antwort Letzte Antwort
      1
      • C christian90

        Hallo und erstmal Danke für dieses tolle Projekt.

        Ich bin seit ein paar Tagen am testen mit einer froggit hp1000se pro und zusätzlich einen DP100. Als Protokoll ist Ecowitt ausgewählt.

        Nach einer kleinen Änderung funktioniert nun auch der Zusatzsensor DP100.
        Ich habe in der Zeile 204 von wetterstation.sh

             if [[ ${MESSWERTERAWIN[$i]} =~ ^soilmoisture1[1-8]= ]]
        auf 
             if [[ ${MESSWERTERAWIN[$i]} =~ ^soilmoisture[1-8]= ]]
        

        geändert.

        Und in Zeile 188 von wettersation.sub

                 if [[ "${MESSWERTE[$i]}" =~ ^soilmoisture[1-8] ]]; then IOBOUT="${IOBOUT}&${PRE_DP}.DP100.${MESSWERTE[$i]:12:1}.Batterie=${MESSWERTE[$(($i+1))]}"; fiin
        
        auf
        
                 if [[ "${MESSWERTE[$i]}" =~ ^soilmoisture[1-8] ]]; then IOBOUT="${IOBOUT}&${PRE_DP}.DP100.${MESSWERTE[$i]:12:1}.Bodenfeuchtigkeit=${MESSWERTE[$(($i+1))]}"; fi
        

        geändert.

        Vielleicht ist dieses ja noch ein kleiner Fehler im Code.

        DATA von Wetterstation:

        PASSKEY=xxxx&stationtype=EasyWeatherV1.4.6&dateutc=2021-01-04+20:28:43&tempinf=42.3&humidityin=74&baromrelin=29.988&baromabsin=29.988&tempf=34.3&humidity=96&winddir=8&winddir_avg10m=18&windspeedmph=1.8&windspdmph_avg10m=1.8&windgustmph=3.4&maxdailygust=9.2&rainratein=0.000&eventrainin=0.000&hourlyrainin=0.000&dailyrainin=0.189&weeklyrainin=0.331&monthlyrainin=0.339&yearlyrainin=0.339&solarradiation=0.00&uv=0&soilmoisture1=23&wh65batt=0&wh25batt=0&soilbatt1=1.5&freq=868M&model=HP1000SE-PRO_Pro_V1.6.7
        
        a200A Offline
        a200A Offline
        a200
        schrieb am zuletzt editiert von
        #1958

        @christian90 sagte in [Linux Shell-Skript] WLAN-Wetterstation:

        soilmoisture

        Vielen Dank. Das habe ich verbrochen. natürlich muss die 1 bei soilmoisture1 weg und . Es sind blöde cut&paste Fehler. Da ich aber keinen DP100 Sensor habe, konnte ich es auch nicht testen. Wir werden diese Korrekturen in die nächste Version übernehmen.

        IoBroker auf QNAP TS-451, Raspi und NUC

        1 Antwort Letzte Antwort
        1
        • NashraN Nashra

          @SBorg sagte in [Linux Shell-Skript] WLAN-Wetterstation:

          @Nashra sagte in [Linux Shell-Skript] WLAN-Wetterstation:

          Und das war es jetzt? Hat nur die .conf geändert :-)
          updateskript.PNG

          Kannst du bitte mal probieren ob er da bei dir dann den "Haken" anzeigt? Komischerweise zeigt er bei dir den Unicode an...
          Direkt 1:1 per C&P:

           echo -e '✓'
          

          Wird angezeigt

          SBorgS Offline
          SBorgS Offline
          SBorg
          Forum Testing Most Active
          schrieb am zuletzt editiert von
          #1959

          @Nashra sagte in [Linux Shell-Skript] WLAN-Wetterstation:

          Wird angezeigt

          Danke, dann ändere ich es für die nächste Version :)

          @Petersilie sagte in [Linux Shell-Skript] WLAN-Wetterstation:

          ...und die meisten Daten als String übermittelt.

          Passiert leider bei "Automatisch" öfters. Ich habe mir angewöhnt es auf Number bzw. String zu stellen.

          @christian90 sagte in [Linux Shell-Skript] WLAN-Wetterstation:

          Nach einer kleinen Änderung funktioniert nun auch der Zusatzsensor DP100.

          So will ich das ab jetzt immer haben. Fehler finden und gleich den passenden Fix mitliefern... :grin: :innocent: :sunglasses: :+1:

          LG SBorg ( SBorg auf GitHub)
          Projekte: Lebensmittelwarnung.de | WLAN-Wetterstation | PimpMyStation

          1 Antwort Letzte Antwort
          2
          • SBorgS SBorg

            @sonystar sagte in [Linux Shell-Skript] WLAN-Wetterstation:

            @SBorg

            Eine Frage: Kann ich die Datenpunkte für aktuelle Monats-/Jahresdurchschnittstemperatur manuell anpassen? Wird dann mit dem neuen Wert weitergerechnet?

            Ja und ja. Wie mir @Latzi gedanklich auf die Sprünge mit der Gewichtung half, wird dies berücksichtigt. Heute (04.01.) hätten wir einen Monatsdurchschnitt vom 01.01. und 02.01. und einen Tagesdurchschnitt vom 03.01. Somit bekommt der Monatsdurchschnitt eine Gewichtung von 66.6% (er zählt also mehr, da er auch den Durchschnitt von zwei Tagen darstellt), der Tagesdurchschnitt dann die restlichen 33.3%

            In Formel: (Monatsdurchschnitt * (aktueller Tag -1) + Tagesdurchschnitt) / aktueller Tag
            Beispiel: 1° / 1° / 7° = Durchschnitt 3° [(1°+1°+7°) / 3]

            Dann wäre nun der bisherige Monatsdurchschnitt für den 1. und 2. Tag =1° [(1°+1°) / 2]
            und dann lt. Formel: (1° * (2) + 7°) / 3 = 3°

            ...und mein bisheriger Fehler ohne die Gewichtung (die 1° für den 1. und 2. Tag stimmt da noch, der Fehler summiert sich dann erst ab dem 3. Tag usw. auf): (1° + 7°) / 2 = 4°

            S Offline
            S Offline
            sonystar
            schrieb am zuletzt editiert von
            #1960

            @SBorg Dankeschön. Hab den Wert nun händisch angepasst.

            1 Antwort Letzte Antwort
            0
            • SBorgS SBorg

              Massiver Rundumschlag :grin: :

              Neue Version des Wetterstation-Statistik-Addons auf GitHub V0.1.7

              • ~Fix für fehlerhafte/fehlende Speicherung Jahreswerte + Trockenperiode

              Wie immer zu finden im GitHub (wetterstation-statistik.js)

              Neues Release des WLAN-Shellskriptes auf GitHub V2.0.0

              • + Unterstützung des Gateways und Zusatzsensoren (@a200)
              • + Protokoll (wunderground oder ecowitt) wählbar

              Wie immer zu finden im GitHub

              Neues Beta-Release des WLAN-Shellskriptes auf GitHub V2.1.0

              • + zusätzliches Protokoll "9" für userspezifische Abfrage
              • ~ Fix Reset kumulierte Regenmenge zum Jahresanfang

              Wie immer zu finden im GitHub

              SBorgS Offline
              SBorgS Offline
              SBorg
              Forum Testing Most Active
              schrieb am zuletzt editiert von
              #1961

              Neue Version des Wetterstation-Statistik-Addons auf GitHub V0.1.8

              • +max. Windböe für Gestern und Jahres-/Rekordwerte

              Wie immer zu finden im GitHub (wetterstation-statistik.js)

              LG SBorg ( SBorg auf GitHub)
              Projekte: Lebensmittelwarnung.de | WLAN-Wetterstation | PimpMyStation

              S SBorgS 2 Antworten Letzte Antwort
              4
              • SBorgS SBorg

                Neue Version des Wetterstation-Statistik-Addons auf GitHub V0.1.8

                • +max. Windböe für Gestern und Jahres-/Rekordwerte

                Wie immer zu finden im GitHub (wetterstation-statistik.js)

                S Offline
                S Offline
                sonystar
                schrieb am zuletzt editiert von
                #1962

                @SBorg Dankeschön!

                Langsam nimmt meine Visu auch Formen an :blush:

                VISU_Wetterstation.png

                NegaleinN 1 Antwort Letzte Antwort
                2
                • S sonystar

                  @SBorg Dankeschön!

                  Langsam nimmt meine Visu auch Formen an :blush:

                  VISU_Wetterstation.png

                  NegaleinN Offline
                  NegaleinN Offline
                  Negalein
                  Global Moderator
                  schrieb am zuletzt editiert von
                  #1963

                  @sonystar sagte in [Linux Shell-Skript] WLAN-Wetterstation:

                  Langsam nimmt meine Visu auch Formen an

                  schaut gut aus!

                  Würdest du den mittleren und rechten unteren Teil als Json exportieren?
                  Oder falls einzeln nicht geht, das ganze Dashboard.

                  Würde gern Teile davon übernehmen.

                  ° Node.js: 20.17.0 NPM: 10.8.2
                  ° Proxmox, Ubuntu 22.04.3 LTS
                  ° Fixer ---> iob fix

                  S 1 Antwort Letzte Antwort
                  0
                  • NegaleinN Negalein

                    @sonystar sagte in [Linux Shell-Skript] WLAN-Wetterstation:

                    Langsam nimmt meine Visu auch Formen an

                    schaut gut aus!

                    Würdest du den mittleren und rechten unteren Teil als Json exportieren?
                    Oder falls einzeln nicht geht, das ganze Dashboard.

                    Würde gern Teile davon übernehmen.

                    S Offline
                    S Offline
                    sonystar
                    schrieb am zuletzt editiert von
                    #1964

                    @Negalein

                    Danke!

                    Wenn du mir sagst wie das geht mach ich das gerne.
                    Rechts unten sind allerdings Datenpunkte aus dem Sourceanalytix-Adapter.

                    NegaleinN 1 Antwort Letzte Antwort
                    0
                    • S sonystar

                      @Negalein

                      Danke!

                      Wenn du mir sagst wie das geht mach ich das gerne.
                      Rechts unten sind allerdings Datenpunkte aus dem Sourceanalytix-Adapter.

                      NegaleinN Offline
                      NegaleinN Offline
                      Negalein
                      Global Moderator
                      schrieb am zuletzt editiert von
                      #1965

                      @sonystar sagte in [Linux Shell-Skript] WLAN-Wetterstation:

                      Wenn du mir sagst wie das geht mach ich das gerne.

                      Danke

                      log.gif

                      Rechts unten sind allerdings Datenpunkte aus dem Sourceanalytix-Adapter.

                      kein Problem. Damit logge ich auch.

                      ° Node.js: 20.17.0 NPM: 10.8.2
                      ° Proxmox, Ubuntu 22.04.3 LTS
                      ° Fixer ---> iob fix

                      S 1 Antwort Letzte Antwort
                      0
                      • NegaleinN Negalein

                        @sonystar sagte in [Linux Shell-Skript] WLAN-Wetterstation:

                        Wenn du mir sagst wie das geht mach ich das gerne.

                        Danke

                        log.gif

                        Rechts unten sind allerdings Datenpunkte aus dem Sourceanalytix-Adapter.

                        kein Problem. Damit logge ich auch.

                        S Offline
                        S Offline
                        sonystar
                        schrieb am zuletzt editiert von
                        #1966

                        @Negalein
                        Hier (hoffentlich) das JSON für das Diagramm unten rechts.

                        {
                          "fieldConfig": {
                            "defaults": {
                              "custom": {},
                              "unit": "lengthmm",
                              "decimals": 1,
                              "thresholds": {
                                "mode": "absolute",
                                "steps": [
                                  {
                                    "color": "dark-blue",
                                    "value": null
                                  }
                                ]
                              },
                              "mappings": []
                            },
                            "overrides": []
                          },
                          "gridPos": {
                            "h": 8,
                            "w": 12,
                            "x": 0,
                            "y": 0
                          },
                          "id": 23763571993,
                          "options": {
                            "reduceOptions": {
                              "values": false,
                              "calcs": [
                                "max"
                              ],
                              "fields": ""
                            },
                            "orientation": "horizontal",
                            "displayMode": "basic",
                            "showUnfilled": true
                          },
                          "pluginVersion": "7.3.4",
                          "targets": [
                            {
                              "alias": "Januar",
                              "groupBy": [
                                {
                                  "params": [
                                    "$__interval"
                                  ],
                                  "type": "time"
                                },
                                {
                                  "params": [
                                    "null"
                                  ],
                                  "type": "fill"
                                }
                              ],
                              "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.01_January",
                              "orderByTime": "ASC",
                              "policy": "default",
                              "refId": "A",
                              "resultFormat": "time_series",
                              "select": [
                                [
                                  {
                                    "params": [
                                      "value"
                                    ],
                                    "type": "field"
                                  },
                                  {
                                    "params": [],
                                    "type": "max"
                                  }
                                ]
                              ],
                              "tags": []
                            },
                            {
                              "alias": "Februar",
                              "groupBy": [
                                {
                                  "params": [
                                    "$__interval"
                                  ],
                                  "type": "time"
                                },
                                {
                                  "params": [
                                    "null"
                                  ],
                                  "type": "fill"
                                }
                              ],
                              "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.02_February",
                              "orderByTime": "ASC",
                              "policy": "default",
                              "refId": "B",
                              "resultFormat": "time_series",
                              "select": [
                                [
                                  {
                                    "params": [
                                      "value"
                                    ],
                                    "type": "field"
                                  },
                                  {
                                    "params": [],
                                    "type": "max"
                                  }
                                ]
                              ],
                              "tags": []
                            },
                            {
                              "alias": "März",
                              "groupBy": [
                                {
                                  "params": [
                                    "$__interval"
                                  ],
                                  "type": "time"
                                },
                                {
                                  "params": [
                                    "null"
                                  ],
                                  "type": "fill"
                                }
                              ],
                              "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.03_March",
                              "orderByTime": "ASC",
                              "policy": "default",
                              "refId": "C",
                              "resultFormat": "time_series",
                              "select": [
                                [
                                  {
                                    "params": [
                                      "value"
                                    ],
                                    "type": "field"
                                  },
                                  {
                                    "params": [],
                                    "type": "max"
                                  }
                                ]
                              ],
                              "tags": []
                            },
                            {
                              "alias": "April",
                              "groupBy": [
                                {
                                  "params": [
                                    "$__interval"
                                  ],
                                  "type": "time"
                                },
                                {
                                  "params": [
                                    "null"
                                  ],
                                  "type": "fill"
                                }
                              ],
                              "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.04_April",
                              "orderByTime": "ASC",
                              "policy": "default",
                              "refId": "D",
                              "resultFormat": "time_series",
                              "select": [
                                [
                                  {
                                    "params": [
                                      "value"
                                    ],
                                    "type": "field"
                                  },
                                  {
                                    "params": [],
                                    "type": "max"
                                  }
                                ]
                              ],
                              "tags": []
                            },
                            {
                              "alias": "Mai",
                              "groupBy": [
                                {
                                  "params": [
                                    "$__interval"
                                  ],
                                  "type": "time"
                                },
                                {
                                  "params": [
                                    "null"
                                  ],
                                  "type": "fill"
                                }
                              ],
                              "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.05_May",
                              "orderByTime": "ASC",
                              "policy": "default",
                              "refId": "E",
                              "resultFormat": "time_series",
                              "select": [
                                [
                                  {
                                    "params": [
                                      "value"
                                    ],
                                    "type": "field"
                                  },
                                  {
                                    "params": [],
                                    "type": "max"
                                  }
                                ]
                              ],
                              "tags": []
                            },
                            {
                              "alias": "Juni",
                              "groupBy": [
                                {
                                  "params": [
                                    "$__interval"
                                  ],
                                  "type": "time"
                                },
                                {
                                  "params": [
                                    "null"
                                  ],
                                  "type": "fill"
                                }
                              ],
                              "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.06_June",
                              "orderByTime": "ASC",
                              "policy": "default",
                              "refId": "F",
                              "resultFormat": "time_series",
                              "select": [
                                [
                                  {
                                    "params": [
                                      "value"
                                    ],
                                    "type": "field"
                                  },
                                  {
                                    "params": [],
                                    "type": "max"
                                  }
                                ]
                              ],
                              "tags": []
                            },
                            {
                              "alias": "Juli",
                              "groupBy": [
                                {
                                  "params": [
                                    "$__interval"
                                  ],
                                  "type": "time"
                                },
                                {
                                  "params": [
                                    "null"
                                  ],
                                  "type": "fill"
                                }
                              ],
                              "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2020.consumed.months.07_July",
                              "orderByTime": "ASC",
                              "policy": "default",
                              "refId": "G",
                              "resultFormat": "time_series",
                              "select": [
                                [
                                  {
                                    "params": [
                                      "value"
                                    ],
                                    "type": "field"
                                  },
                                  {
                                    "params": [],
                                    "type": "mean"
                                  }
                                ]
                              ],
                              "tags": []
                            },
                            {
                              "alias": "August",
                              "groupBy": [
                                {
                                  "params": [
                                    "$__interval"
                                  ],
                                  "type": "time"
                                },
                                {
                                  "params": [
                                    "null"
                                  ],
                                  "type": "fill"
                                }
                              ],
                              "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.08_August",
                              "orderByTime": "ASC",
                              "policy": "default",
                              "refId": "H",
                              "resultFormat": "time_series",
                              "select": [
                                [
                                  {
                                    "params": [
                                      "value"
                                    ],
                                    "type": "field"
                                  },
                                  {
                                    "params": [],
                                    "type": "max"
                                  }
                                ]
                              ],
                              "tags": []
                            },
                            {
                              "alias": "September",
                              "groupBy": [
                                {
                                  "params": [
                                    "$__interval"
                                  ],
                                  "type": "time"
                                },
                                {
                                  "params": [
                                    "null"
                                  ],
                                  "type": "fill"
                                }
                              ],
                              "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.09_September",
                              "orderByTime": "ASC",
                              "policy": "default",
                              "refId": "I",
                              "resultFormat": "time_series",
                              "select": [
                                [
                                  {
                                    "params": [
                                      "value"
                                    ],
                                    "type": "field"
                                  },
                                  {
                                    "params": [],
                                    "type": "max"
                                  }
                                ]
                              ],
                              "tags": []
                            },
                            {
                              "alias": "Oktober",
                              "groupBy": [
                                {
                                  "params": [
                                    "$__interval"
                                  ],
                                  "type": "time"
                                },
                                {
                                  "params": [
                                    "null"
                                  ],
                                  "type": "fill"
                                }
                              ],
                              "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.10_October",
                              "orderByTime": "ASC",
                              "policy": "default",
                              "refId": "J",
                              "resultFormat": "time_series",
                              "select": [
                                [
                                  {
                                    "params": [
                                      "value"
                                    ],
                                    "type": "field"
                                  },
                                  {
                                    "params": [],
                                    "type": "max"
                                  }
                                ]
                              ],
                              "tags": []
                            },
                            {
                              "alias": "November",
                              "groupBy": [
                                {
                                  "params": [
                                    "$__interval"
                                  ],
                                  "type": "time"
                                },
                                {
                                  "params": [
                                    "null"
                                  ],
                                  "type": "fill"
                                }
                              ],
                              "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.11_November",
                              "orderByTime": "ASC",
                              "policy": "default",
                              "refId": "K",
                              "resultFormat": "time_series",
                              "select": [
                                [
                                  {
                                    "params": [
                                      "value"
                                    ],
                                    "type": "field"
                                  },
                                  {
                                    "params": [],
                                    "type": "max"
                                  }
                                ]
                              ],
                              "tags": []
                            },
                            {
                              "alias": "Dezember",
                              "groupBy": [
                                {
                                  "params": [
                                    "$__interval"
                                  ],
                                  "type": "time"
                                },
                                {
                                  "params": [
                                    "null"
                                  ],
                                  "type": "fill"
                                }
                              ],
                              "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.12_December",
                              "orderByTime": "ASC",
                              "policy": "default",
                              "refId": "L",
                              "resultFormat": "time_series",
                              "select": [
                                [
                                  {
                                    "params": [
                                      "value"
                                    ],
                                    "type": "field"
                                  },
                                  {
                                    "params": [],
                                    "type": "max"
                                  }
                                ]
                              ],
                              "tags": []
                            }
                          ],
                          "timeFrom": null,
                          "timeShift": null,
                          "title": "Niederschlagsmenge 2021",
                          "type": "bargauge",
                          "datasource": null
                        }
                        

                        Die Visu ist allerdings in VIS aufgebaut, nur die Diagramme kommen aus Grafana.

                        NegaleinN NashraN 2 Antworten Letzte Antwort
                        0
                        • S sonystar

                          @Negalein
                          Hier (hoffentlich) das JSON für das Diagramm unten rechts.

                          {
                            "fieldConfig": {
                              "defaults": {
                                "custom": {},
                                "unit": "lengthmm",
                                "decimals": 1,
                                "thresholds": {
                                  "mode": "absolute",
                                  "steps": [
                                    {
                                      "color": "dark-blue",
                                      "value": null
                                    }
                                  ]
                                },
                                "mappings": []
                              },
                              "overrides": []
                            },
                            "gridPos": {
                              "h": 8,
                              "w": 12,
                              "x": 0,
                              "y": 0
                            },
                            "id": 23763571993,
                            "options": {
                              "reduceOptions": {
                                "values": false,
                                "calcs": [
                                  "max"
                                ],
                                "fields": ""
                              },
                              "orientation": "horizontal",
                              "displayMode": "basic",
                              "showUnfilled": true
                            },
                            "pluginVersion": "7.3.4",
                            "targets": [
                              {
                                "alias": "Januar",
                                "groupBy": [
                                  {
                                    "params": [
                                      "$__interval"
                                    ],
                                    "type": "time"
                                  },
                                  {
                                    "params": [
                                      "null"
                                    ],
                                    "type": "fill"
                                  }
                                ],
                                "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.01_January",
                                "orderByTime": "ASC",
                                "policy": "default",
                                "refId": "A",
                                "resultFormat": "time_series",
                                "select": [
                                  [
                                    {
                                      "params": [
                                        "value"
                                      ],
                                      "type": "field"
                                    },
                                    {
                                      "params": [],
                                      "type": "max"
                                    }
                                  ]
                                ],
                                "tags": []
                              },
                              {
                                "alias": "Februar",
                                "groupBy": [
                                  {
                                    "params": [
                                      "$__interval"
                                    ],
                                    "type": "time"
                                  },
                                  {
                                    "params": [
                                      "null"
                                    ],
                                    "type": "fill"
                                  }
                                ],
                                "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.02_February",
                                "orderByTime": "ASC",
                                "policy": "default",
                                "refId": "B",
                                "resultFormat": "time_series",
                                "select": [
                                  [
                                    {
                                      "params": [
                                        "value"
                                      ],
                                      "type": "field"
                                    },
                                    {
                                      "params": [],
                                      "type": "max"
                                    }
                                  ]
                                ],
                                "tags": []
                              },
                              {
                                "alias": "März",
                                "groupBy": [
                                  {
                                    "params": [
                                      "$__interval"
                                    ],
                                    "type": "time"
                                  },
                                  {
                                    "params": [
                                      "null"
                                    ],
                                    "type": "fill"
                                  }
                                ],
                                "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.03_March",
                                "orderByTime": "ASC",
                                "policy": "default",
                                "refId": "C",
                                "resultFormat": "time_series",
                                "select": [
                                  [
                                    {
                                      "params": [
                                        "value"
                                      ],
                                      "type": "field"
                                    },
                                    {
                                      "params": [],
                                      "type": "max"
                                    }
                                  ]
                                ],
                                "tags": []
                              },
                              {
                                "alias": "April",
                                "groupBy": [
                                  {
                                    "params": [
                                      "$__interval"
                                    ],
                                    "type": "time"
                                  },
                                  {
                                    "params": [
                                      "null"
                                    ],
                                    "type": "fill"
                                  }
                                ],
                                "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.04_April",
                                "orderByTime": "ASC",
                                "policy": "default",
                                "refId": "D",
                                "resultFormat": "time_series",
                                "select": [
                                  [
                                    {
                                      "params": [
                                        "value"
                                      ],
                                      "type": "field"
                                    },
                                    {
                                      "params": [],
                                      "type": "max"
                                    }
                                  ]
                                ],
                                "tags": []
                              },
                              {
                                "alias": "Mai",
                                "groupBy": [
                                  {
                                    "params": [
                                      "$__interval"
                                    ],
                                    "type": "time"
                                  },
                                  {
                                    "params": [
                                      "null"
                                    ],
                                    "type": "fill"
                                  }
                                ],
                                "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.05_May",
                                "orderByTime": "ASC",
                                "policy": "default",
                                "refId": "E",
                                "resultFormat": "time_series",
                                "select": [
                                  [
                                    {
                                      "params": [
                                        "value"
                                      ],
                                      "type": "field"
                                    },
                                    {
                                      "params": [],
                                      "type": "max"
                                    }
                                  ]
                                ],
                                "tags": []
                              },
                              {
                                "alias": "Juni",
                                "groupBy": [
                                  {
                                    "params": [
                                      "$__interval"
                                    ],
                                    "type": "time"
                                  },
                                  {
                                    "params": [
                                      "null"
                                    ],
                                    "type": "fill"
                                  }
                                ],
                                "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.06_June",
                                "orderByTime": "ASC",
                                "policy": "default",
                                "refId": "F",
                                "resultFormat": "time_series",
                                "select": [
                                  [
                                    {
                                      "params": [
                                        "value"
                                      ],
                                      "type": "field"
                                    },
                                    {
                                      "params": [],
                                      "type": "max"
                                    }
                                  ]
                                ],
                                "tags": []
                              },
                              {
                                "alias": "Juli",
                                "groupBy": [
                                  {
                                    "params": [
                                      "$__interval"
                                    ],
                                    "type": "time"
                                  },
                                  {
                                    "params": [
                                      "null"
                                    ],
                                    "type": "fill"
                                  }
                                ],
                                "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2020.consumed.months.07_July",
                                "orderByTime": "ASC",
                                "policy": "default",
                                "refId": "G",
                                "resultFormat": "time_series",
                                "select": [
                                  [
                                    {
                                      "params": [
                                        "value"
                                      ],
                                      "type": "field"
                                    },
                                    {
                                      "params": [],
                                      "type": "mean"
                                    }
                                  ]
                                ],
                                "tags": []
                              },
                              {
                                "alias": "August",
                                "groupBy": [
                                  {
                                    "params": [
                                      "$__interval"
                                    ],
                                    "type": "time"
                                  },
                                  {
                                    "params": [
                                      "null"
                                    ],
                                    "type": "fill"
                                  }
                                ],
                                "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.08_August",
                                "orderByTime": "ASC",
                                "policy": "default",
                                "refId": "H",
                                "resultFormat": "time_series",
                                "select": [
                                  [
                                    {
                                      "params": [
                                        "value"
                                      ],
                                      "type": "field"
                                    },
                                    {
                                      "params": [],
                                      "type": "max"
                                    }
                                  ]
                                ],
                                "tags": []
                              },
                              {
                                "alias": "September",
                                "groupBy": [
                                  {
                                    "params": [
                                      "$__interval"
                                    ],
                                    "type": "time"
                                  },
                                  {
                                    "params": [
                                      "null"
                                    ],
                                    "type": "fill"
                                  }
                                ],
                                "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.09_September",
                                "orderByTime": "ASC",
                                "policy": "default",
                                "refId": "I",
                                "resultFormat": "time_series",
                                "select": [
                                  [
                                    {
                                      "params": [
                                        "value"
                                      ],
                                      "type": "field"
                                    },
                                    {
                                      "params": [],
                                      "type": "max"
                                    }
                                  ]
                                ],
                                "tags": []
                              },
                              {
                                "alias": "Oktober",
                                "groupBy": [
                                  {
                                    "params": [
                                      "$__interval"
                                    ],
                                    "type": "time"
                                  },
                                  {
                                    "params": [
                                      "null"
                                    ],
                                    "type": "fill"
                                  }
                                ],
                                "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.10_October",
                                "orderByTime": "ASC",
                                "policy": "default",
                                "refId": "J",
                                "resultFormat": "time_series",
                                "select": [
                                  [
                                    {
                                      "params": [
                                        "value"
                                      ],
                                      "type": "field"
                                    },
                                    {
                                      "params": [],
                                      "type": "max"
                                    }
                                  ]
                                ],
                                "tags": []
                              },
                              {
                                "alias": "November",
                                "groupBy": [
                                  {
                                    "params": [
                                      "$__interval"
                                    ],
                                    "type": "time"
                                  },
                                  {
                                    "params": [
                                      "null"
                                    ],
                                    "type": "fill"
                                  }
                                ],
                                "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.11_November",
                                "orderByTime": "ASC",
                                "policy": "default",
                                "refId": "K",
                                "resultFormat": "time_series",
                                "select": [
                                  [
                                    {
                                      "params": [
                                        "value"
                                      ],
                                      "type": "field"
                                    },
                                    {
                                      "params": [],
                                      "type": "max"
                                    }
                                  ]
                                ],
                                "tags": []
                              },
                              {
                                "alias": "Dezember",
                                "groupBy": [
                                  {
                                    "params": [
                                      "$__interval"
                                    ],
                                    "type": "time"
                                  },
                                  {
                                    "params": [
                                      "null"
                                    ],
                                    "type": "fill"
                                  }
                                ],
                                "measurement": "sourceanalytix.0.javascript__0__Wetterstation__Regen_Jahr.2021.consumed.months.12_December",
                                "orderByTime": "ASC",
                                "policy": "default",
                                "refId": "L",
                                "resultFormat": "time_series",
                                "select": [
                                  [
                                    {
                                      "params": [
                                        "value"
                                      ],
                                      "type": "field"
                                    },
                                    {
                                      "params": [],
                                      "type": "max"
                                    }
                                  ]
                                ],
                                "tags": []
                              }
                            ],
                            "timeFrom": null,
                            "timeShift": null,
                            "title": "Niederschlagsmenge 2021",
                            "type": "bargauge",
                            "datasource": null
                          }
                          

                          Die Visu ist allerdings in VIS aufgebaut, nur die Diagramme kommen aus Grafana.

                          NegaleinN Offline
                          NegaleinN Offline
                          Negalein
                          Global Moderator
                          schrieb am zuletzt editiert von
                          #1967

                          @sonystar sagte in [Linux Shell-Skript] WLAN-Wetterstation:

                          Hier (hoffentlich) das JSON für das Diagramm unten rechts.

                          Danke, hat geklappt! :)
                          Schaffst du den mittleren Teil auch noch?

                          ° Node.js: 20.17.0 NPM: 10.8.2
                          ° Proxmox, Ubuntu 22.04.3 LTS
                          ° Fixer ---> iob fix

                          S 1 Antwort Letzte Antwort
                          0
                          • NegaleinN Negalein

                            @sonystar sagte in [Linux Shell-Skript] WLAN-Wetterstation:

                            Hier (hoffentlich) das JSON für das Diagramm unten rechts.

                            Danke, hat geklappt! :)
                            Schaffst du den mittleren Teil auch noch?

                            S Offline
                            S Offline
                            sonystar
                            schrieb am zuletzt editiert von
                            #1968

                            @Negalein

                            Wie gesagt, die Visu ist in VIS, nur die Diagramme kommen aus Grafana.
                            Kann dir gerne den View exportieren wenn du das möchtest?

                            NegaleinN 1 Antwort Letzte Antwort
                            0
                            • S sonystar

                              @Negalein

                              Wie gesagt, die Visu ist in VIS, nur die Diagramme kommen aus Grafana.
                              Kann dir gerne den View exportieren wenn du das möchtest?

                              NegaleinN Offline
                              NegaleinN Offline
                              Negalein
                              Global Moderator
                              schrieb am zuletzt editiert von
                              #1969

                              @sonystar sagte in [Linux Shell-Skript] WLAN-Wetterstation:

                              Wie gesagt, die Visu ist in VIS, nur die Diagramme kommen aus Grafana.

                              Ah, jetzt versteh ich! :)

                              Kann dir gerne den View exportieren wenn du das möchtest?

                              Ja bitte

                              ° Node.js: 20.17.0 NPM: 10.8.2
                              ° Proxmox, Ubuntu 22.04.3 LTS
                              ° Fixer ---> iob fix

                              S 1 Antwort Letzte Antwort
                              0
                              • NegaleinN Negalein

                                @sonystar sagte in [Linux Shell-Skript] WLAN-Wetterstation:

                                Wie gesagt, die Visu ist in VIS, nur die Diagramme kommen aus Grafana.

                                Ah, jetzt versteh ich! :)

                                Kann dir gerne den View exportieren wenn du das möchtest?

                                Ja bitte

                                S Offline
                                S Offline
                                sonystar
                                schrieb am zuletzt editiert von sonystar
                                #1970

                                @Negalein

                                Hier der View aus VIS


                                Neues Textdokument.txt

                                Mir gefällt die Windrose noch nicht, da hätte ich gerne so etwas wie @Glasfaser z.B., aber in Vis. Bin da noch nicht so richtig dahintergestiegen.

                                GlasfaserG 1 Antwort Letzte Antwort
                                2
                                • S sonystar

                                  @Negalein

                                  Hier der View aus VIS


                                  Neues Textdokument.txt

                                  Mir gefällt die Windrose noch nicht, da hätte ich gerne so etwas wie @Glasfaser z.B., aber in Vis. Bin da noch nicht so richtig dahintergestiegen.

                                  GlasfaserG Offline
                                  GlasfaserG Offline
                                  Glasfaser
                                  schrieb am zuletzt editiert von
                                  #1971

                                  @sonystar

                                  Brauchst du das !?

                                  1.JPG

                                  Synology 918+ 16GB - ioBroker in Docker v9 , VISO auf Trekstor Primebook C13 13,3" , Hikvision Domkameras mit Surveillance Station .. CCU RaspberryMatic in Synology VM .. Zigbee CC2538+CC2592 .. Sonoff .. KNX .. Modbus ..

                                  S 1 Antwort Letzte Antwort
                                  0
                                  • GlasfaserG Glasfaser

                                    @sonystar

                                    Brauchst du das !?

                                    1.JPG

                                    S Offline
                                    S Offline
                                    sonystar
                                    schrieb am zuletzt editiert von
                                    #1972

                                    @Glasfaser Wenn du so freundlich wärst? Kommt das aus VIS oder Grafana?

                                    GlasfaserG 1 Antwort Letzte Antwort
                                    0
                                    • S sonystar

                                      @Glasfaser Wenn du so freundlich wärst? Kommt das aus VIS oder Grafana?

                                      GlasfaserG Offline
                                      GlasfaserG Offline
                                      Glasfaser
                                      schrieb am zuletzt editiert von
                                      #1973

                                      @sonystar

                                      Ist aus VIS

                                      Synology 918+ 16GB - ioBroker in Docker v9 , VISO auf Trekstor Primebook C13 13,3" , Hikvision Domkameras mit Surveillance Station .. CCU RaspberryMatic in Synology VM .. Zigbee CC2538+CC2592 .. Sonoff .. KNX .. Modbus ..

                                      S 1 Antwort Letzte Antwort
                                      0
                                      • GlasfaserG Glasfaser

                                        @sonystar

                                        Ist aus VIS

                                        S Offline
                                        S Offline
                                        sonystar
                                        schrieb am zuletzt editiert von
                                        #1974

                                        @Glasfaser

                                        Dann bitte ja :blush:

                                        GlasfaserG 2 Antworten Letzte Antwort
                                        0
                                        • S sonystar

                                          @Glasfaser

                                          Dann bitte ja :blush:

                                          GlasfaserG Offline
                                          GlasfaserG Offline
                                          Glasfaser
                                          schrieb am zuletzt editiert von Glasfaser
                                          #1975

                                          1.JPG

                                          View.txt


                                          windfinder_windrose.png kompass_2_nadel.png
                                          1560763672848-sonne.png


                                          Einstellung im Widget
                                          .
                                          1.JPG
                                          .

                                          <img style="transform: rotate({javascript.0.Wetterstation.Windrichtung}deg); position: absolute; width: 100%;" src="/vis.0/Home/Wetter/kompass_2_nadel.png" data-pin-nopin="true">
                                          

                                          /vis.0/Home/Wetter/kompass_2_nadel.png

                                          diesen Pfad an deinen anpassen


                                          CSS Hintergrundelement

                                          .transparent_box{
                                              opacity:0.8;
                                              background-color:#ffffff;
                                              padding-left:0px;
                                              padding-top:0px;
                                              border:#acacac solid 0px;
                                              border-radius:8px;
                                              box-shadow:6px 0px 12px 0 #161616;
                                              z-index:1;
                                          }
                                          

                                          Synology 918+ 16GB - ioBroker in Docker v9 , VISO auf Trekstor Primebook C13 13,3" , Hikvision Domkameras mit Surveillance Station .. CCU RaspberryMatic in Synology VM .. Zigbee CC2538+CC2592 .. Sonoff .. KNX .. Modbus ..

                                          SBorgS T 2 Antworten Letzte Antwort
                                          4
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          274

                                          Online

                                          32.4k

                                          Benutzer

                                          81.4k

                                          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