node-red-contrib-time-converter
Version:
A Node-RED node that converts seconds to mm:ss format and outputs it.
21 lines (19 loc) • 562 B
HTML
<script type="text/javascript">
RED.nodes.registerType('dec-to-hex', {
category: 'function',
color: '#c0deed',
defaults: {
name: { value: "" }
},
inputs: 1,
outputs: 1,
icon: "function.png",
label: function() {
return this.name || "dec-to-hex";
}
});
</script>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> 名稱</label>
<input type="text" id="node-input-name" placeholder="節點名稱">
</div>