node-red-contrib-uhppoted
Version:
A set of nodes for the UHPPOTE Wiegand Access Controller
28 lines (27 loc) • 855 B
HTML
<script type="text/javascript">
RED.nodes.registerType('uhppoted-record-special-events', {
category: 'uhppoted',
color: '#A6BBCF',
defaults: {
name: {
value: ''
},
topic: {
value: ''
},
config: {
value: '',
type: 'uhppoted-config'
},
},
inputs: 1,
outputs: 1,
icon: 'icons/uhppoted.svg',
label: function() {
return this.name || 'record-special-events';
},
paletteLabel: 'record-special-events',
inputLabels: function(index) { return this._('uhppoted-record-special-events.inputLabel') },
outputLabels: function(index) { return this._('uhppoted-record-special-events.outputLabel') }
});
</script>