first commit

This commit is contained in:
2025-12-30 14:38:50 +01:00
commit 05325f031b
4 changed files with 43 additions and 0 deletions

17
nodes/xilica-ping.html Normal file
View File

@@ -0,0 +1,17 @@
<script type="text/javascript">
RED.nodes.registerType('xilica-ping',{
category: 'Xilica',
color: '#D8E7FF',
defaults: { name: {value:""} },
inputs: 1,
outputs: 1,
icon: "font-awesome/fa-plug",
label: function() { return this.name || "xilica ping"; }
});
</script>
<div class="form-row">
<label for="node-input-name">Name</label>
<input type="text" id="node-input-name">
</div>