Search found 6 matches
- 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
- 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 !
- Thanks for your help. change the line
I thought the script worked like that !

Code: Select all
commandArray['UpdateDevice'] = idx .. '|0|' .. tostring(sWeatherTemp)
- 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.
- 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: and mine is
Code: Select all
commandArray['UpdateDevice'] = idx .. '|0|' .. tostring(sWeatherTemp)
Code: Select all
commandArray['newtemp'] = idx .. '|27|' .. tostring(sWeatherTemp)
- 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...
- 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 ...