Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. ioBroker Allgemein
    4. Forecast.solar mit dem Systeminfo Adapter

    NEWS

    • Neuer Blog: Fotos und Eindrücke aus Solingen

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    Forecast.solar mit dem Systeminfo Adapter

    This topic has been deleted. Only users with topic management privileges can see it.
    • paul53
      paul53 @JB_Sullivan last edited by paul53

      @jb_sullivan sagte: "myschedule" unterstrichen - ist da noch etwas nicht in in Ordnung?

      Setze ein const oder var vor die Deklaration (Zeile 52).

      1 Reply Last reply Reply Quote 0
      • JB_Sullivan
        JB_Sullivan last edited by

        Wer von Euch beiden hat nun recht? 😅

        Gargano 1 Reply Last reply Reply Quote 0
        • Gargano
          Gargano @JB_Sullivan last edited by Gargano

          @jb_sullivan kannst auch const schreiben. In JS ist allerdings const keine Konstante mit konstanten Wert sondert der Typ ist konstant. Das nur zur Verwirrung 🙄

          Sag mir bitte Bescheid, wenn alles durch ist. Dann änder ich das noch im GIT.
          Danke für die Mitarbeit 🤝

          JB_Sullivan 1 Reply Last reply Reply Quote 0
          • JB_Sullivan
            JB_Sullivan @Gargano last edited by

            @gargano

            Ich bin gerade noch am suchen, warum OST und WEST im Grafpgen falsch herum dargestellt werden. Die Farben in der Legende sind richtig, aber im Graphen nicht.

            Die mit den höheren Werten müssten blau (WEST) sein.

            bfdb1e60-8510-4269-acfc-08ac067e74f3-image.png

            Gargano 1 Reply Last reply Reply Quote 0
            • Gargano
              Gargano @JB_Sullivan last edited by Gargano

              @jb_sullivan hab gesehen :
              90° ist west , -90° ist ost.
              Also entweder Du drehst

              const legendTest = ["Ost","West"];
              

              um oder
              Du drehst

              const declination = ['40','40'];
              const azimuth = ['90','-90'];
              const kwp = ['7.26','2.64'];
              

              in

              const declination = ['40','40'];
              const azimuth = ['-90','90'];
              const kwp = ['2.64','7.26'];
              
              

              Dann sollte Ost als erstes kommen

              JB_Sullivan 1 Reply Last reply Reply Quote 0
              • JB_Sullivan
                JB_Sullivan @Gargano last edited by

                @gargano

                OK - nun passt alles.

                3d861c83-9539-4d46-8cfc-42868c9eafef-image.png

                Hier nochmal der Finale Code zum abgleich

                /* read solar forecasts for 2 different orientations
                Author : gargano
                Display in VIS : use JSON Chart from Scrounger
                Version 1.0.1 
                Last Update 16.3.2021 
                Change history :
                1.0.1 / 16.3.2021   :   use setStateAsync(myUrl.mySolarJSON.. to avoid time conflicts 
                                        dp's are now saved in '0_userdata.0.'
                                        use variables for setting lat, lon, color..
                */
                
                const prefix = 'javascript.0.'; 
                
                const SolarJSON1            = prefix+"SolarForecast.JSON1";
                const SolarJSON2            = prefix+"SolarForecast.JSON2";
                const SolarJSONAll1         = prefix+"SolarForecast.JSONAll1";
                const SolarJSONAll2         = prefix+"SolarForecast.JSONAll2";
                const SolarJSONGraphAll1    = prefix+"SolarForecast.JSONGraphAll1";
                const SolarJSONGraphAll2    = prefix+"SolarForecast.JSONGraphAll2";
                const SolarJSONTable        = prefix+"SolarForecast.JSONTable";
                const SolarJSONGraph        = prefix+"SolarForecast.JSONGraph";
                 
                const createStateList = [
                    {name :SolarJSON1, type:"string", role : "value"},
                    {name :SolarJSON2, type:"string", role : "value"},
                    {name :SolarJSONAll1, type:"string", role : "value"},
                    {name :SolarJSONAll2, type:"string", role : "value"},
                    {name :SolarJSONGraphAll1, type:"string", role : "value"},
                    {name :SolarJSONGraphAll2, type:"string", role : "value"},
                    {name :SolarJSONTable, type:"string", role : "value"},
                    {name :SolarJSONGraph, type:"string", role : "value"}
                ]
                 
                // create states if not exists 
                async function createMyState(item) {
                    if (!existsState(item.name)) {
                    await createStateAsync(item.name, { 
                            type: item.type,
                            min: 0,
                            def: 0,
                            role: item.role 
                        });    
                    }
                }
                
                async function makeMyStateList (array) {
                    // map array to promises
                    const promises = array.map(createMyState);
                    await Promise.all(promises);
                }
                
                var mySchedule = '0,30 * * * *';
                
                async function main () {
                    await makeMyStateList(createStateList);
                    schedule(mySchedule, getSolar );
                    getSolar();
                }
                
                main(); 
                
                // set logging = true for logging
                const logging = true;
                
                var request = require('request');
                
                
                /* https://api.forecast.solar/estimate/:lat/:lon/:dec/:az/:kwp
                lat - latitude of location, -90 (south) … 90 (north)
                lon - longitude of location, -180 (west) … 180 (east)
                dec - plane declination, 0 (horizontal) … 90 (vertical)
                az - plane azimuth, -180 … 180 (-180 = north, -90 = east, 0 = south, 90 = west, 180 = north)
                kwp - installed modules power in kilo watt
                */
                
                // set lat and lon for the destination
                const lat = 'xx.yyyy'
                const lon = 'xx.yyy'
                
                const forcastUrl = 'https://api.forecast.solar';
                
                // if use the api key remove '//' and insert '//' in front of const api = '';
                //const api = '/xxxxxxxxxxxxxxxx;
                // else 
                const api = '/xxxxxxxxxx';
                
                const declination = ['40','40'];
                const azimuth = ['-90','90'];
                const kwp = ['7.26','2.64'];
                
                var options1 = {url: forcastUrl+api+'/estimate/'+lat+'/'+lon+'/'+declination[0]+'/'+azimuth[0]+'/'+kwp[0], method: 'GET', headers: { 'User-Agent': 'request' }};
                var options2 = {url: forcastUrl+api+'/estimate/'+lat+'/'+lon+'/'+declination[1]+'/'+azimuth[1]+'/'+kwp[1], method: 'GET', headers: { 'User-Agent': 'request' }};
                 
                const legendTest = ["West","Ost"];
                const graphColor = ["blue","red"];
                const datalabelColor = ["lightblue","lightblue"];
                
                const tooltip_AppendText= " Watt";
                 
                var urls = [
                  {myUrl:options1,mySolarJSON:SolarJSON1,mySolarJSONAll:SolarJSONAll1,mySolarJSONGraphAll:SolarJSONGraphAll1},
                  {myUrl:options2,mySolarJSON:SolarJSON2,mySolarJSONAll:SolarJSONAll2,mySolarJSONGraphAll:SolarJSONGraphAll2}
                ]
                 
                
                // handle the request : convert the result to table and graph 
                function myAsyncRequest(myUrl) {
                  log('Request '+myUrl.myUrl.url);
                  return new Promise((resolve, reject) => {
                     request(myUrl.myUrl.url, async function(error, response, body) {
                        if (!error && response.statusCode == 200) {
                            if (logging) console.log ('body : '+body);
                            let watts = JSON.parse(body).result.watts;
                            setState(myUrl.mySolarJSONAll, JSON.stringify(watts), true);
                            let table = [];
                            for(let time in watts) {
                                    let entry = {};
                                    entry.Uhrzeit = time;
                                    entry.Leistung = watts[time];
                                    table.push(entry);
                            }  
                            if (logging) console.log ('JSON: '+myUrl.mySolarJSON);
                            await setStateAsync(myUrl.mySolarJSON, JSON.stringify(table), true);
                            
                            // make GraphTable
                            let graphTimeData = [];
                                 for(let time in watts) {
                                    let graphEntry ={};
                                    graphEntry.t = Date.parse(time);
                                    graphEntry.y = watts[time];
                                    graphTimeData.push(graphEntry);
                            } 
                            var graph = {};
                            var graphData ={};
                            var graphAllData = [];
                            graphData.data = graphTimeData;
                            graphAllData.push(graphData);
                            graph.graphs=graphAllData;
                            setState(myUrl.mySolarJSONGraphAll, JSON.stringify(graph), true);
                 
                            resolve (body);
                        } else 
                            reject(new Error("Could not load " + myUrl.myUrl.url+' Error '+error +'Status '+ response.statusCode));
                    });  
                  })
                }
                 
                
                // summarize the single watts results to table and graph 
                function makeTable () {
                    if (logging) console.log ('MakeTable');
                    let watts1 = JSON.parse(getState(SolarJSON1).val);
                    let watts2 = JSON.parse(getState(SolarJSON2).val); 
                    if (logging) console.log ('Items: '+watts1.length);
                    let table = [];
                	let axisLabels = [];
                	
                    // make table
                    for(var n=0;n<watts1.length;n++) {
                            let entry = {};
                            entry.Uhrzeit = watts1[n].Uhrzeit;
                            entry.Leistung1 = watts1[n].Leistung;
                            entry.Leistung2 = watts2[n].Leistung;
                            entry.Summe = watts1[n].Leistung + watts2[n].Leistung;
                            table.push(entry);
                    } 
                	
                    // prepare data for graph
                	let graphTimeData1 = [];
                    for(var n=0;n<watts1.length;n++) {
                    	graphTimeData1.push(watts1[n].Leistung);
                        let time = watts1[n].Uhrzeit.substr(11,5);
                        axisLabels.push(time);		
                    } 
                 
                	let graphTimeData2 = [];
                    for(var n=0;n<watts2.length;n++) {
                   		graphTimeData2.push(watts2[n].Leistung);	
                    } 
                
                    // make total graph
                    var graph = {};
                    var graphAllData = [];
                    var graphData = {"tooltip_AppendText":  tooltip_AppendText,"legendText": legendTest[0],"yAxis_id": 1,"type": "bar","displayOrder": 2,"barIsStacked": true,"color":graphColor[0],"barStackId":1,"datalabel_rotation":-90,"datalabel_color":datalabelColor[0],"datalabel_fontSize":10};
                    graphData.data = graphTimeData1;
                    graphAllData.push(graphData);
                	graphData = {"tooltip_AppendText": tooltip_AppendText,"legendText": legendTest[1],"yAxis_id": 1,"type": "bar","displayOrder": 1,"barIsStacked": true,"color":graphColor[1],"barStackId":1,"datalabel_rotation":-90,"datalabel_color":datalabelColor[1],"datalabel_fontSize":10};
                    graphData.data = graphTimeData2;
                    graphAllData.push(graphData);
                    graph.graphs=graphAllData;
                	graph.axisLabels =  axisLabels;
                    setState(SolarJSONTable, JSON.stringify(table), true);
                    setState(SolarJSONGraph, JSON.stringify(graph), true);
                }
                 
                // get the requests 
                async function getSolar() {
                   let promises = urls.map(myAsyncRequest);
                   await Promise.all(promises)
                    .then(function(bodys) {
                        if (logging) console.log("All url loaded");
                        makeTable();
                    })
                    .catch(error => {
                        console.log('Error : '+error)
                    })  
                }
                
                Gargano M 2 Replies Last reply Reply Quote 0
                • Gargano
                  Gargano @JB_Sullivan last edited by

                  @jb_sullivan Dann wäre Dein Panel West das mit 7,26 kW und Dein Ost mit 2.64 kW.

                  Wie passt dann die Ausrichtung -90 und 90 Azimuth zu West und Ost ?

                  JB_Sullivan 1 Reply Last reply Reply Quote 0
                  • JB_Sullivan
                    JB_Sullivan @Gargano last edited by JB_Sullivan

                    @gargano

                    Genau die Modulleistungen sind so wie du sagst, aber was meinst du mit den Himmelsrichtungen?

                    Passt doch / -90 =Ost - 90=West

                    az - plane azimuth, -180 … 180 (-180 = north, -90 = east, 0 = south, 90 = west, 180 = north)
                    

                    Also Passt im Sinne das Diagramm ist richtig. Ostseite weniger Ertrag als die Westseite

                    Gargano 1 Reply Last reply Reply Quote 0
                    • Gargano
                      Gargano @JB_Sullivan last edited by Gargano

                      @jb_sullivan In der LegendText

                      const legendTest = ["West","Ost"];
                      

                      kommt als erstes "West" dann "Ost"
                      in Azimuth kommt als erstes

                      const azimuth = ['-90','90'];
                      

                      -90 ,also Ost

                      Also Passt im Sinne das Diagramm ist richtig. Ostseite weniger Ertrag als die Westseite

                      Dann müsste umgekehrt sein

                      const kwp = ['2.64','7.26'];
                      const legendTest = ["Ost","West"];
                      
                      

                      Vom Ertrag her gleich aber logisch jetzt richtig.
                      Der 1. Response ist Ost (-90), dann West (90)

                      JB_Sullivan 1 Reply Last reply Reply Quote 0
                      • JB_Sullivan
                        JB_Sullivan @Gargano last edited by JB_Sullivan

                        @gargano

                        UPS - jetzt sehe ich es auch

                        OST Richtig

                        e1274c2f-e09c-42b5-b02c-c55a2ee6f1d1-image.png

                        OST Falsch

                        be73f088-5f4b-4bd7-9b8f-da31bcf0bee4-image.png

                        Auch der Ertrag ist auf addiert unterschiedlich. Kleines Zeichen große Wirkung.

                        1 Reply Last reply Reply Quote 0
                        • P
                          PatrickWalther Developer last edited by

                          Hallo,

                          bin gerade dran einen Adapter zu schreiben. Denke die Grundfunktione sind drin, allerdings keine Anlagen addition oder Grafiken.

                          @gargano Hast du schon Adapter programmiert?

                          Gargano 1 Reply Last reply Reply Quote 0
                          • Gargano
                            Gargano @PatrickWalther last edited by

                            @patrickwalther sagte in Forecast.solar mit dem Systeminfo Adapter:

                            Hast du schon Adapter programmiert?

                            Nicht von Anfang an, hab beim Resol Adapter mitgemacht.
                            Hast Du den Adapter auf GIT ?

                            P 1 Reply Last reply Reply Quote 0
                            • P
                              PatrickWalther Developer @Gargano last edited by

                              @gargano habe leider noch Problem den umzubenennen und auf Github zu bringen.
                              Für den Befehl "gulp rename ... " fehlt mir eine Datei. Habe das ganze nach dem Youtube Video Luftdaten aufgestetzt der Adapter funktioniert bisher nur auf meinem PI.

                              Verusch das ganze später nochmal nach der Anleitung:
                              https://forum.iobroker.net/assets/uploads/files/282_entwickler_howto_v0.2.pdf

                              Vielleicht hast du ne Idee.

                              Gargano 1 Reply Last reply Reply Quote 0
                              • Gargano
                                Gargano @PatrickWalther last edited by Gargano

                                @patrickwalther ich mach es immer so (unter Windows):
                                Leeres, neues Repo in Github erzeugen.
                                Clonen. Files in Directories kopieren.
                                Adden und Push mit Tortoise GIT

                                1 Reply Last reply Reply Quote 0
                                • G
                                  glitzi last edited by glitzi

                                  @paul53 log (info.result)

                                  {'watts':{'2020-12-15 07:49:00':0,'2020-12-15 08:25:00':80,'2020-12-15 09:00:00':590,'2020-12-15 10:00:00':1230,'2020-12-15 11:00:00':1810,'2020-12-15 12:00:00':2040,'2020-12-15 13:00:00':1560,'2020-12-15 14:00:00':1120,'2020-12-15 15:00:00':570,'2020-12-15 15:41:00':80,'2020-12-15 16:22:00':0,'2020-12-16 07:50:00':0,'2020-12-16 08:25:00':60,'2020-12-16 09:00:00':380,'2020-12-16 10:00:00':770,'2020-12-16 11:00:00':1140,'2020-12-16 12:00:00':1400,'2020-12-16 13:00:00':1360,'2020-12-16 14:00:00':1080,'2020-12-16 15:00:00':560,'2020-12-16 15:41:00':80,'2020-12-16 16:22:00':0},'watt_hours':{'2020-12-15 07:49:00':0,'2020-12-15 08:25:00':50,'2020-12-15 09:00:00':390,'2020-12-15 10:00:00':1620,'2020-12-15 11:00:00':3430,'2020-12-15 12:00:00':5470,'2020-12-15 13:00:00':7030,'2020-12-15 14:00:00':8150,'2020-12-15 15:00:00':8720,'2020-12-15 15:41:00':8780,'2020-12-15 16:22:00':8780,'2020-12-16 07:50:00':0,'2020-12-16 08:25:00':40,'2020-12-16 09:00:00':260,'2020-12-16 10:00:00':1030,'2020-12-16 11:00:00':2170,'2020-12-16 12:00:00':3570,'2020-12-16 13:00:00':4930,'2020-12-16 14:00:00':6010,'2020-12-16 15:00:00':6570,'2020-12-16 15:41:00':6620,'2020-12-16 16:22:00':6620},'watt_hours_day':{'2020-12-15':8780,'2020-12-16':6620}}
                                  
                                  const options = {url: 'https://api.forecast.solar/estimate/Dein-Lat/Dein-Lon/45/45/10', method: 'GET', headers: { 'User-Agent': 'request' }};
                                   
                                  request(options, function(error, response, body) {
                                     if (!error && response.statusCode == 200) {
                                        let res = JSON.parse(body).result.watts;  // res ist ein Objekt
                                        log(res);
                                     }
                                  });
                                  

                                  Hallo,
                                  kann mir jemand sagen wie ich die obigen Daten des aktuellen Tages morgens um 1 Uhr mit folgendem Code in die InfluxDB bekomme? Ziel ist es in grafana eine Prognose für den Tag zu erstellen.
                                  Die Tabelle kann von der Anzahl und den Zeitstempeln variieren.
                                  Ich denke man muss eine Schleife programmieren die die Daten nacheinander in die DB schreibt.

                                  sendTo('influxdb.0', 'storeState', {id: 'PV_Forecast', state: {ts: ZEIT AUS LISTE, val: WERT AUS LISTE, ack: true, from: "javascript.0", q: 0}});
                                  
                                  paul53 1 Reply Last reply Reply Quote 0
                                  • paul53
                                    paul53 @glitzi last edited by paul53

                                    @glitzi sagte: Schleife programmieren die die Daten nacheinander in die DB schreibt.

                                    Ja:

                                    for(let key in res) {
                                        let ts = new Date(key).getTime(); // ms
                                        let watt = res[key];
                                        // in DB schreiben
                                    }
                                    
                                    G 1 Reply Last reply Reply Quote 1
                                    • G
                                      glitzi @paul53 last edited by glitzi

                                      @paul53
                                      Hallo,
                                      leider bin ich ein absoluter Anfänger was die Programmierung angeht, kannst Du mir bitte den Code etwas zusammen stellen?
                                      Die zuletzt geschrieben Code-Schnipsel habe ich mir nur zusammengesucht, aber verstehen tue ich da noch lange nichts 😉
                                      Gerade der Teil wo ich die unterschiedlichen Zeit Stempel zerlegen muss, diese können täglich variieren.

                                      MfG

                                      paul53 1 Reply Last reply Reply Quote 0
                                      • paul53
                                        paul53 @glitzi last edited by

                                        @glitzi sagte: Gerade der Teil wo ich die unterschiedlichen Zeit Stempel zerlegen muss, diese können täglich variieren.

                                        Von Datenbanken habe ich keine Ahnung, weshalb ich das Schreiben in die DB nur als Kommentar angegeben habe. Wie muss der Zeitstempel in der InfluxDB vorliegen? In meinem Vorschlag - der direkt nach

                                              let res = JSON.parse(body).result.watts;  // res ist ein Objekt
                                        

                                        ausgeführt werden muss - werden die Zeiten im Objekt res in ms umgerechnet und stehen in der Variablen ts zur Verfügung.

                                        G 1 Reply Last reply Reply Quote 0
                                        • G
                                          glitzi @paul53 last edited by glitzi

                                          @paul53

                                          So hier mein versuch, leider ist noch ein Fehler im Skript vermutlich unten bei den Klammern...

                                          Nochmal ergänzend, ich möchte jetzt dann folgendes tun...

                                          Die Zeit und den zugehörigen Wert aus dem Result '2021-05-27 12:00:00' :1234, für alle Werte aus dem Result in die InfluxDB schreiben.
                                          Geliefert werden immer zwei Tage, hiervon möchte ich jedoch immer nur den aktuellen Tag.

                                          {'watts':{'2020-12-15 07:49:00':0,'2020-12-15 08:25:00':80,'2020-12-15 09:00:00':590,'2020-12-15 10:00:00':1230,'2020-12-15 11:00:00':1810,'2020-12-15 12:00:00':2040,'2020-12-15 13:00:00':1560,'2020-12-15 14:00:00':1120,'2020-12-15 15:00:00':570,'2020-12-15 15:41:00':80,'2020-12-15 16:22:00':0,'2020-12-16 07:50:00':0,'2020-12-16 08:25:00':60,'2020-12-16 09:00:00':380,'2020-12-16 10:00:00':770,'2020-12-16 11:00:00':1140,'2020-12-16 12:00:00':1400,'2020-12-16 13:00:00':1360,'2020-12-16 14:00:00':1080,'2020-12-16 15:00:00':560,'2020-12-16 15:41:00':80,'2020-12-16 16:22:00':0},'watt_hours':{'2020-12-15 07:49:00':0,'2020-12-15 08:25:00':50,'2020-12-15 09:00:00':390,'2020-12-15 10:00:00':1620,'2020-12-15 11:00:00':3430,'2020-12-15 12:00:00':5470,'2020-12-15 13:00:00':7030,'2020-12-15 14:00:00':8150,'2020-12-15 15:00:00':8720,'2020-12-15 15:41:00':8780,'2020-12-15 16:22:00':8780,'2020-12-16 07:50:00':0,'2020-12-16 08:25:00':40,'2020-12-16 09:00:00':260,'2020-12-16 10:00:00':1030,'2020-12-16 11:00:00':2170,'2020-12-16 12:00:00':3570,'2020-12-16 13:00:00':4930,'2020-12-16 14:00:00':6010,'2020-12-16 15:00:00':6570,'2020-12-16 15:41:00':6620,'2020-12-16 16:22:00':6620},'watt_hours_day':{'2020-12-15':8780,'2020-12-16':6620}}
                                          
                                           
                                          var request = require('request');
                                          var options = {url: 'https://api.forecast.solar/estimate/*STANDORT*/-2/12.73', method: 'GET', headers: { 'User-Agent': 'request' }};
                                           
                                          schedule({hour: 00, minute: 30}, GetSolar );
                                           
                                          function GetSolar() {
                                              request(options, function(error, response, body) {
                                              if (!error && response.statusCode == 200) {
                                                  let res = JSON.parse(body).result.watts;  // info ist ein Objekt
                                                  log(res);
                                                  for(let key in res) {
                                                      let ts = new Date(key).getTime(); // ms
                                                      let watt = res[key];
                                                      log(ts);
                                                      log(watt);
                                                  // in DB schreiben
                                                  }
                                          }
                                              }
                                          
                                          

                                          Bezüglich der Zeit, der Ursprungscode zum schreiben in die DB war folgender

                                          sendTo('influxdb.0', 'storeState', {id: 'Temperaturen.Außen.Tagesdurchschnitt2', state: {ts: (new Date().getTime()) - 86400000, val: getState("javascript.0.Aussentemperaturen.Tagesdurchschnitt.Durchschnitt").val, ack: true, from: "javascript.0", q: 0}});
                                          
                                          paul53 1 Reply Last reply Reply Quote 0
                                          • paul53
                                            paul53 @glitzi last edited by paul53

                                            @glitzi sagte: leider ist noch ein Fehler im Skript vermutlich unten bei den Klammern...

                                            Ja, verwende Einrückungen konsequent, um solche Fehler zu erkennen.

                                            var options = {url: 'https://api.forecast.solar/estimate/*STANDORT*/-2/12.73', method: 'GET', headers: { 'User-Agent': 'request' }};
                                             
                                            function GetSolar() {
                                                request(options, function(error, response, body) {
                                                    if (!error && response.statusCode == 200) {
                                                        let res = JSON.parse(body).result.watts;  // res ist ein Objekt
                                                        log(res);
                                                        for(let key in res) {
                                                            let ts = new Date(key).getTime() - 172800000; // 2 Tage zurück in ms
                                                            let watt = res[key];
                                                            log(ts + ': ' + watt);
                                                            sendTo('influxdb.0', 'storeState', {id: 'PV_Forecast', state: {ts: ts, val: watt, ack: true, from: "javascript.0", q: 0}});
                                                        }
                                                    }
                                                });
                                            }
                                            
                                            schedule('30 0 * * *', GetSolar);
                                            
                                            G 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate
                                            FAQ Cloud / IOT
                                            HowTo: Node.js-Update
                                            HowTo: Backup/Restore
                                            Downloads
                                            BLOG

                                            708
                                            Online

                                            31.8k
                                            Users

                                            79.9k
                                            Topics

                                            1.3m
                                            Posts

                                            json solar systeminfo
                                            15
                                            188
                                            19043
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            Community
                                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                            The ioBroker Community 2014-2023
                                            logo