SBorg2014 / WLAN-Wetterstation

schafft eine Verbindung von einer WLAN-Wetterstation zum ioBroker
MIT License
97 stars 16 forks source link

Iterations fix VorJahr=> bug #58 #62

Closed Boronsbruder closed 1 year ago

Boronsbruder commented 1 year ago

58

VorJahr = JSON.parse(VorJahr);
        // Daten vom Vorjahr durchiterieren und Datenpunkte befüllen
            //console.log (VorJahr);
            VorJahr.forEach(obj => {
                Object.keys(obj).forEach(key => {
                    console.log ('.Vorjahres_' + key + '--> ' + obj[key]);

                    // fix für Datenpunktname
                    let setkey = key;                                       
                    if (key == 'Temp_Durchschnitt') setkey = "Temperatur_Durchschnitt";

                    setState(PRE_DP+'.Vorjahres_Monat.' +setkey, obj[key], true);
                });
            });

Da fehlte noch das JSON.parse deswegen kam der "type Error" Wenn du es nochmal nutzen willst

SBorg2014 commented 1 year ago

Danke + Logo, auch wenn ich es diesmal zuerst selbst am nächsten 1. ausprobiere ^^

stale[bot] commented 1 year ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 7 days if no further activity occurs. Thank you for your contributions.