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?