UNPKG

node-red-contrib-bit

Version:

A Bit helper contribution package for Node-RED maintained by P4NR B2B Community.

13 lines (12 loc) 909 B
<!-- Copyright (c) 2017-2024 Klaus Landsdorf (http://node-red.plus/) All rights reserved. node-red-contrib-bit @author <a href="mailto:klaus.landsdorf@bianco-royal.de">Klaus Landsdorf</a> (Bianco Royal) --> <script type='text/javascript'> RED.nodes.registerType("bit-sixteen",{category:"function",color:"#ABCDEF",defaults:{name:{value:""}},inputs:1,outputs:16,icon:"switch.png",align:"right",paletteLabel:"16Bit Split",label:function(){return this.name||"16Bit Split"}}) </script> <script type='text/x-red' data-template-name='bit-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-sixteen'> <p>This node splits a 16Bit value to 16 single Bit outputs</p> <p>Input: 16Bit value</p> <p> Output 1-16: single Bit value</p> </script>