You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm testing lox-mqtt-gateway an i got an error in node-lox-structure-file
node-lox-mqtt-gateway/node_modules/node-lox-structure-file/lib/Factory.js:74
throw new Error("Invalid type of control '"+value.type+"'");
^
Error: Invalid type of control 'EIBDimmer'
I create EIBDimmer.js similar to Dimmer.js and it basically works.
const util = require('util');
const Control = require('../Control.js');
var EIBDimmer = function (params, states, subControls) {
Control.call(this, params, states, subControls);
};
util.inherits(EIBDimmer, Control);
module.exports = EIBDimmer;
The text was updated successfully, but these errors were encountered:
I'm testing lox-mqtt-gateway an i got an error in node-lox-structure-file
I create EIBDimmer.js similar to Dimmer.js and it basically works.
The text was updated successfully, but these errors were encountered: