Add fan characteristics 'RotationSpeed'

This enable the control of rotation speed
This commit is contained in:
Thomas Kaltenbach 2020-09-25 20:46:43 +02:00
parent 0155a5557e
commit c17b460bf5

View File

@ -498,6 +498,11 @@ SmartHomeNGAccessory.prototype = {
this.log("["+ this.name +"] Fan on/off characteristic enabled");
this.bindCharacteristic(myService, Characteristic.On, "Bool", config.onoff, inverted);
}
// RotationSpeed
if (config.rotationSpeed) {
this.log("["+ this.name +"] Fan rotationSpeed characteristic enabled");
this.bindCharacteristic(myService, Characteristic.RotationSpeed, "Percent", config.rotationSpeed, inverted);
}
return myService;
},