21 lines
500 B
JavaScript
21 lines
500 B
JavaScript
|
const inherits = require('util').inherits;
|
||
|
|
||
|
module.exports = function (Characteristic, CustomUUID)
|
||
|
{
|
||
|
let SpotWidth = function ()
|
||
|
{
|
||
|
Characteristic.call(this, 'Spot ↔', CustomUUID.SpotCleanWidth);
|
||
|
this.setProps({
|
||
|
format: Characteristic.Formats.INT,
|
||
|
unit: 'cm',
|
||
|
maxValue: 400,
|
||
|
minValue: 100,
|
||
|
minStep: 50,
|
||
|
perms: [Characteristic.Perms.READ, Characteristic.Perms.WRITE]
|
||
|
});
|
||
|
this.value = this.getDefaultValue();
|
||
|
};
|
||
|
inherits(SpotWidth, Characteristic);
|
||
|
|
||
|
return SpotWidth;
|
||
|
};
|