@halsystems/red-bacnet
Version:
NodeRED BACnet IP client
32 lines (30 loc) • 945 B
HTML
<script type="text/javascript">
RED.nodes.registerType('play', {
category: 'redbacnet',
color: '#b5e6ff',
defaults: {
name: { value: "" },
//client: { type: "bacnet-client", required: true },
},
inputs: 1,
outputs: 1,
icon: "hal-systems.png",
label: function () {
return this.name || "play";
}
});
</script>
<script type="text/html" data-template-name="play">
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
<!--
<div class="form-row">
<label for="node-input-client"><i class="fa fa-tag"></i> Client</label>
<input type="text" id="node-input-client">
</div> -->
</script>
<script type="text/html" data-help-name="play">
<p>This is Jason playground</p>
</script>