knxultimate
Version:
KNX IP protocol implementation for Node. This is the ENGINE of Node-Red KNX-Ultimate node.
34 lines • 843 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const config = {
id: 'DPT6',
basetype: {
bitlength: 8,
signedness: 'signed',
valuetype: 'basic',
desc: '8-bit signed value',
range: [-128, 127],
help: `// Send value -128 to 127
msg.payload = -24;
return msg;`,
},
subtypes: {
'001': {
name: 'Percent (-128..127%)',
desc: 'percent',
unit: '%',
},
'010': {
name: 'Counter pulses (-128..127%)',
desc: 'counter pulses',
unit: 'pulses',
},
'020': {
name: 'Status with mode (-128..127%)',
desc: 'status with mode',
unit: 'status',
},
},
};
exports.default = config;
//# sourceMappingURL=dpt6.js.map