Files
node-red-contrib-xilica/nodes/xilica-ping.html
2025-12-31 10:01:37 +01:00

25 lines
657 B
HTML

<script type="text/javascript">
RED.nodes.registerType('xilica-ping', {
category: 'Xilica',
color: '#dddddd',
defaults: {
name: { value: "" }
},
inputs: 1,
outputs: 1,
icon: "font-awesome/fa-plug",
label: function () { return this.name || "xilica ping"; }
});
</script>
<script type="text/x-red" data-template-name="xilica-ping">
<div class="form-row">
<label for="node-input-name">Name</label>
<input type="text" id="node-input-name">
</div>
</script>
<script type="text/x-red" data-help-name="xilica-ping">
<p>Simple test node that returns a fixed payload to confirm the Xilica nodes module is installed.</p>
</script>