Search found 6 matches

by myozone
Tuesday 10 February 2015 18:51
Forum: Temperature and Weather
Topic: Scraping only the temperature from WeatherUnderground sensor
Replies: 63
Views: 28024

Re: Scraping only the temperature from WeatherUnderground se

If this the correct way to control via the temperature
by myozone
Tuesday 10 February 2015 18:27
Forum: Temperature and Weather
Topic: Scraping only the temperature from WeatherUnderground sensor
Replies: 63
Views: 28024

Re: Scraping only the temperature from WeatherUnderground se

Got it working now ! :D - Thanks for your help. change the line

Code: Select all

commandArray['UpdateDevice'] = idx .. '|0|' .. tostring(sWeatherTemp)
I thought the script worked like that !
by myozone
Tuesday 10 February 2015 18:23
Forum: Temperature and Weather
Topic: Scraping only the temperature from WeatherUnderground sensor
Replies: 63
Views: 28024

Re: Scraping only the temperature from WeatherUnderground se

One other thing, I have mine running on a Windows 7 machine. The script is executing though - showing in the log.
by myozone
Tuesday 10 February 2015 18:19
Forum: Temperature and Weather
Topic: Scraping only the temperature from WeatherUnderground sensor
Replies: 63
Views: 28024

Re: Scraping only the temperature from WeatherUnderground se

The only major difference is your line:

Code: Select all

commandArray['UpdateDevice'] = idx .. '|0|' .. tostring(sWeatherTemp)
and mine is

Code: Select all

commandArray['newtemp'] = idx .. '|27|' .. tostring(sWeatherTemp)
by myozone
Tuesday 10 February 2015 18:06
Forum: Temperature and Weather
Topic: Scraping only the temperature from WeatherUnderground sensor
Replies: 63
Views: 28024

Re: Scraping only the temperature from WeatherUnderground se

Thank you for the prompt reply! changed it - still not working...
by myozone
Tuesday 10 February 2015 17:40
Forum: Temperature and Weather
Topic: Scraping only the temperature from WeatherUnderground sensor
Replies: 63
Views: 28024

Re: Scraping only the temperature from WeatherUnderground se

This is what I have and it doesn't work ... local sensorwu = 'wx' --name of the sensor that gets created when you add the WU device (and that contains multiple values like temperature, humidity, barometer etc) local idx = 21 --idx of the virtual temperature sensor you created above commandArray ...