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.
    • JB_Sullivan
      JB_Sullivan @Gargano last edited by JB_Sullivan

      OK, habe ich gemacht, aber du hast anscheinend noch mehr Codezeilen denn

      resolve (body);
      

      ist bei mir in Zeile 87

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

        @jb_sullivan Kannst Du nochmal Deinen Code posten, damit wir gleich sind. Ich habe wohl noch ein paar auskommentierte Zeilen drin

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

          @jb_sullivan Ich glaub ich habs gefunden. Anscheinend ist das Mapping der urls bei jedem Aufruf dann wieder weg. Deshalb geht es auch nach dem Starten einmal.

          Füg mal dies ein

          promises = urls.map(myAsyncRequest);
          

          in

          function getSolar() {
             promises = urls.map(myAsyncRequest);
             Promise.all(promises)
          
          JB_Sullivan 1 Reply Last reply Reply Quote 0
          • JB_Sullivan
            JB_Sullivan @Gargano last edited by JB_Sullivan

            @gargano So die letzte Änderung ist mit drin - hier nun der aktuelle Code Stand bei mir.

            const SolarJSON1        = "javascript.0.SolarForecast.JSON1";
            const SolarJSON2        = "javascript.0.SolarForecast.JSON2";
            const SolarJSONAll1        = "javascript.0.SolarForecast.JSONAll1";
            const SolarJSONAll2        = "javascript.0.SolarForecast.JSONAll2";
            const SolarJSONGraphAll1        = "javascript.0.SolarForecast.JSONGraphAll1";
            const SolarJSONGraphAll2        = "javascript.0.SolarForecast.JSONGraphAll2";
            const SolarJSONTable    = "javascript.0.SolarForecast.JSONTable";
            const SolarJSONGraph    = "javascript.0.SolarForecast.JSONGraph";
             
            const creatStateList = [
                {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"}
            ]
             
             
            creatStateList.forEach (function(item) {
                createState(item.name, { 
                    type: item.type,
                    min: 0,
                    def: 0,
                    role: item.role
                });
            });
             
            var request = require('request');
            var options1 = {url: 'https://api.forecast.solar/estimate/xx.35/xx.24/40/90/7.26', method: 'GET', headers: { 'User-Agent': 'request' }};
            var options2 = {url: 'https://api.forecast.solar/estimate/xx.35/xx.24/40/-90/2.64', method: 'GET', headers: { 'User-Agent': 'request' }};
             
             
            var urls = [
              {myUrl:options1,mySolarJSON:SolarJSON1,mySolarJSONAll:SolarJSONAll1,mySolarJSONGraphAll:SolarJSONGraphAll1},
              {myUrl:options2,mySolarJSON:SolarJSON2,mySolarJSONAll:SolarJSONAll2,mySolarJSONGraphAll:SolarJSONGraphAll2}
            ]
             
            var promises = urls.map(myAsyncRequest);
            schedule('0,30 * * * *', getSolar);
             
            getSolar();
             
             
            function myAsyncRequest(myUrl) {
              log('Request '+myUrl.myUrl.url);
              return new Promise((resolve, reject) => {
                 request(myUrl.myUrl.url, function(error, response, body) {
                    if (!error && response.statusCode == 200) {
                        console.log (body);
                        let today = formatDate(new Date(), 'YYYY-MM-DD');
                        let watts = JSON.parse(body).result.watts;
                        setState(myUrl.mySolarJSONAll, JSON.stringify(watts), true);
                        let table = [];
                        for(let time in watts) {
                            let pos1 = time.indexOf(':00:00');
                            let pos2 = time.indexOf(':30:00');
                            //    if((pos1 != -1) || (pos2 != -1)) {
                                let entry = {};
                                entry.Uhrzeit = time;
                                entry.Leistung = watts[time];
                                table.push(entry);
                            // }
                        }  
                        log ('JSON: '+myUrl.mySolarJSON);
                        setState(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 console.log ('Error '+error +'Status '+ response.statusCode);
                });  
              })
            }
             
            function makeTable () {
                log ('MakeTable');
                let watts1 = JSON.parse(getState(SolarJSON1).val);
                let watts2 = JSON.parse(getState(SolarJSON2).val); 
                log ('Items: '+watts1.length);
                let today = formatDate(new Date(), 'YYYY-MM-DD');
                let table = [];
                let graphTimeData = [];
            	let axisLabels = [];
            	
                for(var n=0;n<watts1.length;n++) {
                        let entry = {};
                        let graphEntry ={};
                        let thisTime = watts1[n].Uhrzeit;
                        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);
            			 /*
                        graphEntry.t = Date.parse(thisTime);
                        graphEntry.y = watts1[n].Leistung + watts2[n].Leistung;
                        graphTimeData.push(graphEntry);	
            			graphTimeData.push(watts1[n].Leistung + watts2[n].Leistung);
                        let time = watts1[n].Uhrzeit.substr(11, 12);
                        axisLabels.push(time);
            			*/		
                } 
            	
            	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);	
                } 
             
             
                var graph = {};
                var graphAllData = [];
                var graphData = {"tooltip_AppendText": " Watt","yAxis_id": 1,"type": "bar","displayOrder": 2,"barIsStacked": true,"color":"blue","barStackId":1,"datalabel_rotation":-90,"datalabel_color":"lightblue","datalabel_fontSize":10};
                graphData.data = graphTimeData1;
                graphAllData.push(graphData);
            	graphData = {"tooltip_AppendText": " Watt","yAxis_id": 1,"type": "bar","displayOrder": 1,"barIsStacked": true,"color":"red","barStackId":1,"datalabel_rotation":-90,"datalabel_color":"lightblue","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);
            }
             
            function getSolar() {
              promises = urls.map(myAsyncRequest);  
              Promise.all(promises)
              .then(function(bodys) {
                console.log("All url loaded");
                makeTable();
              })
            }
            

            PS: Ich denke das Script ist auch noch für den einen oder anderen User interessant, vielleicht hast du noch Lust und Zeit die entsprechenden Codeblöcke zu kommentieren?

            Wenn ich das richtig sehe, macht das Script jetzt das, was man auf der Webseite von forecast.solar als Teil des Professional API Key auch angezeigt bekäme (Trend Diagramm).

            Über ioB ist jetzt quasi durch dein Script kostenlos, oder mit sehr niedrigen Kosten von 1€ im Monat verbunden sofern man sich für den Personal API Key entscheidet.

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

              @jb_sullivan Ja kann ich machen. Ich habe aber für mich das etwas anders gelöst mit axios. Lt. Netz soll die Zukunft von request Aufrufen nicht gesichert sein. Da bin ich aber noch am Testen.
              Ich habe noch andere Scripts z.B. einen Sektionen-Shuttercontrol mit Auswertung des Sonnen Azimuth. Wollte ich alles in Github schieben.

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

                Deine Änderung von Gestern war der Schlüssel zum Erfolg. Heute Morgen hatte ich tagesaktuelle Daten in den DP`s drin stehen 👍 👍

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

                  @jb_sullivan Hallo jb_sullivan, währe es möglich das du dein View zur Verfügung stellst.
                  Ich würde sie gerne bei mir in die Vis importieren.
                  Danke
                  Gerald

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

                    @gerald123

                    Du, das VIEW ist wirklich kein Hexenwerk. Das sind nur 2 Widgets ( materialdesign json chart & Basic Table) die du mit den Datenpunkten

                    javascript.0.SolarForecast.JSONTable und
                    javascript.0.SolarForecast.JSONGraph

                    verküpfst - das ist schon alles.

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

                      @jb_sullivan Danke für die Info, werds am Abend gleich mal testen.

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

                        @jb_sullivan JavaScript verhält sich schon manchmal in Sachen Variablen merkwürdig im Unterscheid zu 'C/C++'
                        Ich hatte das gleiche Problem auch an anderer Stelle, das habe ich jetzt auch damit rausgefunden.

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

                          @jb_sullivan
                          Hier sind nun meine Scripts.

                          Für Dich ist SolarForcast2R.js
                          das richtige.
                          Ich habe noch etwas geändert : Verwendung von setStateAsync vermeidet Timingprobleme beim Schreiben. Es kann sonst sein, daß die Daten im Table-Objekt noch nicht vorhanden sind, wenn der Graph erstellt wird.
                          Die Objekte sind jetzt in '0_userdata.0.' nach den Vorgaben von iobroker. Du musst dann den Pfad im Json Chart ändern oder prefix = '0_userdata.0.' wieder in den Pfad von Javascript.0 ändern.

                          Nicht vergessen : wenn Du '0_userdata.0.' verwendest, dann die Objekte unter Javascript.0 löschen.

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

                            @gargano

                            hallo gargano,

                            Ich habe gesehen, das du die Formel auch umgestellt hast. Ich habe ja den API Key gekauft. Wie gesagt, ich habe keine große Ahnung von js, aber wäre es richtig, wenn ich das so erweitern würde?

                            // set lat and lon for the destination
                            const lat = 'xx.yyyy'
                            const lon = 'xx.yyyy'
                            const forcastUrl = 'https://api.forecast.solar/'
                            const api = 'xxxxxxxxxxxxxxxx/estimate';
                            
                            var options1 = {url: forcastUrl+api'/'+lat+'/'+lon+'/40/90/7.26', method: 'GET', headers: { 'User-Agent': 'request' }};
                            var options2 = {url: forcastUrl+api'/'+lat+'/'+lon+'/40/-90/2.64', method: 'GET', headers: { 'User-Agent': 'request' }};
                            

                            Wenn man das mit Variablen aufbaut, könnte man das doch auch für Dachneigung/Himmelrichtung und PV Leistung so machen - oder?

                            BtW - kannst du mehr zu deinem Telefon Rückwärts Suchen Script erzählen? Ich habe auch eine Fritte und den TR64 Adapter im Einsatz.

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

                              @jb_sullivan Da ist noch was nicht richtig. Ich schau grade
                              So , liegt auf GIT. Hab die api key mit drin.
                              Schau mal bitte ob bei Dir dann der url Pfad im Log stimmt.

                              Zu der Rückwärtssuche :
                              Früher gab es eine api von Klicktel zur Rückwärtssuche, die gibt es nicht mehr. Auch eine andere gibt es nicht.
                              Aufgefallen ist mir das, als mein Gigaset keine Namen mehr angezeigt hat.

                              Das Script wird aktiviert wenn der tr-064 Ringing aktiviert ist.
                              Wenn in der Fritzbox kein Namen eingetragen ist, sucht er auf der Webseite nach class="st-treff-name" und setzt in "tr-064.0.callmonitor.inbound.callerName" den Namen ein.

                              Das ganze hat einen Haken : Wenn sich die Webseite ändert funktioniert das Ganze nicht mehr.

                              EDIT : Ich hab gesehen es gibt OPENCNAME. Ich hab da ein Beispiel von einem Response gesehen. Da steht alles drin, auch Dein Geburtstag usw.
                              Allerdings ist es mir nicht gelungen einen free Account anzulegen. Kaum hatte ich meine Email angegeben, ist die Seite zurückgesprungen.
                              Dazu gibt es auch ein Artikel
                              hier

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

                                @gargano

                                in den Zeilen 52 & 56 wird mir "myschedule" unterstrichen - ist da noch etwas nicht in in Ordnung?

                                Gargano paul53 2 Replies Last reply Reply Quote 0
                                • Gargano
                                  Gargano @JB_Sullivan last edited by

                                  @jb_sullivan ja, auweih.
                                  setz mal ein var davor

                                  1 Reply Last reply Reply Quote 0
                                  • 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
                                            • First post
                                              Last post

                                            Support us

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

                                            860
                                            Online

                                            31.9k
                                            Users

                                            80.1k
                                            Topics

                                            1.3m
                                            Posts

                                            json solar systeminfo
                                            15
                                            188
                                            19380
                                            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