JavaScript WDL version 1.0.0 alpha.

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.

Hi Yerren

Since you have just added the indoor temp capability into FreshWDL, I have just noticed that on the graphs “Indoor Temp last 24 hours” is not available in the drop down box.

That graph is available in the old WDL so wonder if this could be added as a future addition when you get around to it.

Also, not sure if this could be added…but in WDL if you click a component, like the Temp, or Barometer etc, it opens up the related graph which displays the graph for the component that you clicked.

Hmm, good point about the indoor temp graphs.
I’ll keep both those points in mind for when I have some free time again!

Is rain rate available or could it be added?

It’s not available yet, but it would be a good thing to implement for sure.

Are there any plans to provide a config.js file that has all the options/parameters shown as commented out lines of code? Looking through various postings there are new capabilities added - would love to see something that is easy to add graphs, etc.

Hmm, I hadn’t considered that. I like the idea though, will definitely do something like that in the future!

Don’t know if you missed this suggestion?

I didn’t miss it, it’s just that all the text sizes are essentially decided dynamically, based on the size of the word and how much space there is for it. This is because we have maybe 15+ different languages running at the moment, so you can see the issue if I needed to manually set the font size for each title for each language… That being said, I’ll have a look and see if I can somehow set a max size or something similar.

Thanks, that would be good :slight_smile:

Cheers mate. :slight_smile: