18 lines
377 B
JavaScript
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; |