node-red-contrib-plcs
Version:
Mentor Monitor Project Plcs Modbus Controllers
30 lines (27 loc) • 765 B
HTML
<script type="text/javascript">
RED.nodes.registerType('Legacy Output',{
category: 'Mentor Plcs',
color: '#EBEDEC',
align: 'right',
defaults: {
name: {value:""}
},
inputs:1,
outputs:1,
icon: "iconDO.png",
label: function() {
return this.name||"Legacy Out";
}
});
</script>
<script type="text/x-red" data-template-name="Legacy Output">
<div class="form-row">
<label for="node-input-name"><i class="icon-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="Legacy Output">
<p>
Legacy Output to Mentor<br/>
</p>
</script>