Remotec Z-Thermostat (configuration with Z-Wave Commands)

There are two options:

A. You can do it manually with the simulator. Change the configure() method to something like

def configure() {
	delayBetween([
		zwave.configurationV1.configurationSet(parameterNumber: 13, size: 1, scaledConfigurationValue: 1).format(),
		zwave.configurationV1.configurationSet(parameterNumber: 12, size: 1, scaledConfigurationValue: 1).format(),
	], 1500)
}

Then run it in the simulator and click the configure button on the right. Once that’s been sent you can go back to using the official device handler.

B. If you want to do it “right” with editable configuration in the device preferences, you should look at the Aeon Siren example, specifically the metadata.preferences section and the updated() method.

1 Like