Eric Jilot found this web site for an XML based weather page. Since my current weather.com script broke, I decided that this would be a quick fix. The script is not real fancy and used the devices I already had in place. The script currently only displays current weather info, plan to include 5 day forecast soon. Device setup is accomplished by editing the script to define the devices used. My config is shown below.
' CHANGE TO MATCH YOUR DEVICE CODES
CONST DEVCODE_UPDATE = "w1"
CONST DEVCODE_CONDITION = "w2"
CONST DEVCODE_CURTEMP = "w3"
CONST DEVCODE_FEELS = "w4"
CONST DEVCODE_DEWPT = "w5"
CONST DEVCODE_UVINDEX = "w6"
CONST DEVCODE_HUMIDITY = "w7"
CONST DEVCODE_BARPRESS = "w8"
CONST DEVCODE_VISIBILITY = "w9"
CONST DEVCODE_WIND = "w10"
The script is actually based on a script provided as a template by someone on the baord, I forgot who though.
Well it's not much, but it appears to work.
Rick Fox
' CHANGE TO MATCH YOUR DEVICE CODES
CONST DEVCODE_UPDATE = "w1"
CONST DEVCODE_CONDITION = "w2"
CONST DEVCODE_CURTEMP = "w3"
CONST DEVCODE_FEELS = "w4"
CONST DEVCODE_DEWPT = "w5"
CONST DEVCODE_UVINDEX = "w6"
CONST DEVCODE_HUMIDITY = "w7"
CONST DEVCODE_BARPRESS = "w8"
CONST DEVCODE_VISIBILITY = "w9"
CONST DEVCODE_WIND = "w10"
The script is actually based on a script provided as a template by someone on the baord, I forgot who though.
Well it's not much, but it appears to work.
Rick Fox