homecontrol-control-base/FogmachineBase.js
2019-06-06 21:33:17 +02:00

18 lines
377 B
JavaScript

const HCControlBase = require('./ControlBase');
const FogmachineState = require('./states/FogmachineState');
class HCFogmachineBase extends HCControlBase {
constructor(config) {
super(config, new FogmachineState());
}
get type() {
return "fogmachine";
}
triggerFor(milliseconds) {
return Promise.reject("Not implemented");
}
}
module.exports = HCFogmachineBase;