HomeGenie Forum
		Automation Program Plugins and Wizard Scripting => Help => Topic started by: bradvoy on March 17, 2015, 03:23:53 AM
		
			
			- 
				I use the following code to periodically poll my Z-Wave thermostats so HomeGenie displays their current sensor readings:
 
 Modules.OfDeviceType("Thermostat").Command("MultiLevel.Report").IterationDelay(10).Execute();
 Modules.OfDeviceType("Thermostat").Command("Battery.Get").IterationDelay(10).Execute();
 
 This works to get the current temperature and battery status, but it does not get the humidity values from my thermostats.  How can I do that?
- 
				Only select thermostats have a humidity sensor.  It's possible the generic thermostat code does not include the parameter.
			
- 
				My thermostats both have humidity sensors, and HomeGenie use to read them a few releases back.  I'm not sure at which point it stopped reading them.