Search found 360 matches

by jmcmurry
Wed May 08, 2013 10:54 am
Forum: Weather Display
Topic: WD - Solar sensor settings on scripts for YoWindow
Replies: 22
Views: 68979

Re: WD - Solar sensor settings on scripts for YoWindow

Tihomir, That third one shows METAR "unticked", so that is correct. All you can do is figure out why WD is giving you the conditions that it is. The script only reports that. It doesn't go out and read any METAR. Use the clientraw parser that I told you about earlier to see what clientraw ...
by jmcmurry
Wed May 08, 2013 1:15 am
Forum: Weather Display
Topic: WD - Solar sensor settings on scripts for YoWindow
Replies: 22
Views: 68979

Re: WD - Solar sensor settings on scripts for YoWindow

Tihomir,

Look in your solar sensor settings, there's a tick box there too. You may have to ask Brian why those settings are greyed out.

- Jim
by jmcmurry
Tue May 07, 2013 8:35 pm
Forum: Weather Display
Topic: WD - Solar sensor settings on scripts for YoWindow
Replies: 22
Views: 68979

Re: WD - Solar sensor settings on scripts for YoWindow

Tihomir, That should work just like it did before because I didn't change anything about that. The script should use whatever WD outputs and if you have Use METAR turned off there, then the script should not see anything about the METAR. But, let's try changing these two and see if it works better f...
by jmcmurry
Sat May 04, 2013 2:32 pm
Forum: Weather Display
Topic: YoWindow displays no sense of comfort
Replies: 4
Views: 19863

Re: YoWindow displays no sense of comfort

Tihomir, You can change that number to [44] if you wish, but that's probably only significant in the winter time. Maybe change it to [45] in the summer? I just throught that apparent temp might be the best for year around but you can certainly change it. You can see your clientraw numbers with Kevin...
by jmcmurry
Sat May 04, 2013 12:12 pm
Forum: Weather Display
Topic: YoWindow displays no sense of comfort
Replies: 4
Views: 19863

Re: YoWindow displays no sense of comfort

Tihomir, I just looked, and that temperature was never in the original script so I have added it now. You have that entry in your xml but it is empty because your $feelslike variable was never initialized with that data. You can fix this easily by right after the line $Temp = $data [ 4]; // Temperat...
by jmcmurry
Sat Apr 27, 2013 3:33 pm
Forum: Weather Display
Topic: WD - Solar sensor settings on scripts for YoWindow
Replies: 22
Views: 68979

Re: WD - Solar sensor settings on scripts for YoWindow

Good deal Tihomir, I'm glad we finally got that fixed.

- Jim
by jmcmurry
Sat Apr 27, 2013 2:06 pm
Forum: Weather Display
Topic: WD - Solar sensor settings on scripts for YoWindow
Replies: 22
Views: 68979

Re: WD - Solar sensor settings on scripts for YoWindow

Tihomir, I have found the problem and have made the change in my script too. For you, please replace this section if (time() > $sun_info[sunrise] + ($SolarAMOffset * 60) && time() < $sun_info[sunset] - ($SolarPMOffset * 60)) { if ($Solar >= 90) { $sIcon = 0; } else // Vedro/Sunny if ($Solar ...
by jmcmurry
Sat Apr 27, 2013 12:29 pm
Forum: Weather Display
Topic: WD - Solar sensor settings on scripts for YoWindow
Replies: 22
Views: 68979

Re: WD - Solar sensor settings on scripts for YoWindow

Tihomir,

I will try to watch this over the weekend and see what might be happening.

- Jim
by jmcmurry
Wed Apr 17, 2013 8:57 pm
Forum: Weather Display
Topic: WD - Solar sensor settings on scripts for YoWindow
Replies: 22
Views: 68979

Re: WD - Solar sensor settings on scripts for YoWindow

Tihomir, Right in this section if (time() > $sun_info[sunrise] + ($SolarAMOffset * 60) && time() < $sun_info[sunset] - ($SolarPMOffset * 60)) { if ($Solar >= 83) { $sIcon = 0; } else // Sunny if ($Solar >= 80) { $sIcon = 9; } else // Mostly Clear/Fair if ($Solar >= 75) { $sIcon = 5; } else /...
by jmcmurry
Sat Apr 06, 2013 10:51 am
Forum: Weather Display
Topic: Yo window + weather display always shows sunny
Replies: 11
Views: 42319

Re: Yo window + weather display always shows sunny

Good deal Steve, It's good to know that doing that works. Enjoy!

- Jim