JavaScript WDL version 1.0.0 alpha.

It’s on the to-do list :wink:
EDIT: it’s actually at the top of the todo list now!

cool. How ever you layout the page is good with me.

We are expecting 70F dew points again this weekend. Tough on Minnesotans…

For clarity:

How do I update my website’s code to the latest implementation of the evolving program?

Does it pull it in automatically? Is there something to ‘refresh’ the website to the latest version?

I’v forgotten what I did, if anything, the last time there was an update.

Thanks: Dale

As long as you’re using a normal version of the software it happens automatically.
We should be up to version 1.1.7.7 (in the bottom right), so if you see that on your site everything is good.

-Yerren

Where has this request got to on the list?

Third from the top of the gauge adjustments/fixes column.

Yerren:
Thanks for the reply and setting my mind at ease that I’m not running an old version.

And a bigger thank you for this program. Nice work, indeed. Thanks.
Dale

Nearly :slight_smile:


Hmm this is strange… What browser are you in?

Sorry, IE11. . . Just tried some others and it’s OK in Edge and Chrome, so I wouldn’t worry :slight_smile:

Main thing is it works, and many thanks.

Saw that as well, IE11.

Hi Yerren

1.1.7.8 running here and looking great.

Thanks for your continued tweaking towards the software.

Hi,

I updated to the latest version of freshWDL and modified the html and config.js file still not indoor temps showing up. Any idea what I did wrong?

http://weather.thecaseys.info/default.html.

This was added to the gaugeSettings datastructure.

temperature02: {
        enabled: true,
        title: "Indoor Temperature",
        input: "indoor",
        highLowEnabled: true
    }

Hi, looking at your config file, it seems you have two different guageSettings data structures. Try joining them into one, e.g.:


gaugeSettings = {
        solar: {
            enabled: true
        },
        UV: {
            enabled: true
        },
        windChill: {
            mode: "windchill", //The default mode, either "heatIndex" or "windchill" (note: lowercase c)
           autoSwitch: true //If true, will switch between heat index/wind chill depending on what is appropriate.
        },
        temperature: {
            title: " TempMDC "
        },		
        temperature01: {
            enabled: true,
            title: "Indoor Temperature",
            input: "indoor",
            highLowEnabled: true
        }
};

Let me know how that goes.

Thank you for the quick response.

Good catch on the cut and paste error, I should have seen that myself. However still no luck with the new config.

I’m still getting an error from your config file. I think now you have only one lot of guageSettings, but there is some left over text down below it!
see: https://i.imgur.com/nXdU5Ey.png, everything highlighted needs to be removed.

-Yerren

Thank you for the reply. The file I saved did not have the extra stuff in it when I checked. Today I tried replacing the contents of the config and then renaming the config in case there was some cache I was missing. Nothing made a difference. Still no indoor temp.

Hi, at least I’m not getting any errors now.
I believe you need to use “temperature02” as opposed to “temperature01”. Now I wonder who came up with that confusing naming scheme… :lol:

E.g.,


	temperature02: {
            enabled: true,
            title: "Indoor Temperature",
            input: "indoor",
            highLowEnabled: true
        }

After requesting help from the team, the below is my code on getting the indoor temp to work, along with the indoor temp showing the high and low for the day, and as Yerren said you need to set the value as 02 for the indoor unit (temperature02)

temperature02: {
enabled: true,
title: “Indoor”,
input: “indoor”,
highLowEnabled: true

That worked. Thank you for all the help.