UNPKG

node-red-contrib-uhppoted

Version:

A set of nodes for the UHPPOTE Wiegand Access Controller

16 lines (13 loc) 399 B
module.exports = function (RED) { function UhppotedConfigNode(node) { RED.nodes.createNode(this, node) this.name = node.name this.bind = node.bind this.broadcast = node.broadcast this.listen = node.listen this.timeout = node.timeout this.debug = node.debug this.controllers = node.controllers } RED.nodes.registerType('uhppoted-config', UhppotedConfigNode) }