node-red-contrib-knx-ultimate
Version:
Control your KNX intallation via Node-Red! Single Node KNX IN/OUT with optional ETS group address importer. Easy to use and highly configurable.
26 lines (21 loc) • 422 B
JavaScript
/**
* KNXEngine - a KNX protocol stack in Javascript
* (C) 2020-2022 Supergiovane
*/
//
// DPT17: Scene number
//
// TODO: implement fromBuffer, formatAPDU
// DPT17 basetype info
exports.basetype = {
bitlength : 8,
valuetype : 'basic',
desc : "scene number"
}
// DPT17 subtypes
exports.subtypes = {
// 17.001 Scene number
"001" : { use : "G",
"desc" : "DPT_SceneNumber", "name" : "Scene Number",
}
}