prisme-flow
Version:
prisme platform flow engine
40 lines (32 loc) • 1.05 kB
HTML
<!--
Created by prisme.io on 09/06/2017.
@author <a href="mailto:hello@prisme.io">savane vamara</a> (prisme.io)
-->
<script type="text/javascript">
RED.nodes.registerType('bit-simple-sixteen', {
category: 'utility',
color: '#ABCDEF',
defaults: {
name: {value: ""},
},
inputs: 1,
outputs: 1,
icon: "bit.png",
align: 'right',
paletteLabel: "16Bit Array",
label: function () {
return this.name || "16Bit Array"
}
})
</script>
<script type="text/x-red" data-template-name="bit-simple-sixteen">
<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="bit-simple-sixteen">
<p>This node splits a 16Bit value into an array of 16 single Bits on output.</p>
<p>Input: 16Bit value</p>
<p>Output: array of sixteen single Bit values</p>
</script>