UNPKG

node-red-contrib-grove-base-hat

Version:

The node for Grove Base HAT for Raspberry Pi.

44 lines (40 loc) 1.48 kB
<script type="text/javascript"> RED.nodes.registerType('grove-oled-display-128x64',{ category: 'grove-base-hat', color: '#a6bbcf', defaults: { name: {value:""} }, inputs:1, outputs:0, icon: "light.png", label: function() { return this.name||"grove-oled-display-128x64"; } }); </script> <script type="text/x-red" data-template-name="grove-oled-display-128x64"> <div class="form-row"> <label for="node-input-name"><i class="icon-tag"></i> Port</label> I2C </div> <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="grove-oled-display-128x64"> <p>The node controls Grove OLED Display 128x64.</p> <h3>Inputs</h3> <dl class="message-properties"> <dt>payload <span class="property-type">string</span> </dt> <dd> the payload of the message to publish.</dd> <h3>Details</h3> <p> This node controls Grove OLED Display 128x64.<br /> <br /> See here for more this node details as <a href="https://github.com/1ft-seabass/node-red-contrib-grove-base-hat/blob/master/grove-oled-display-128x64/README.md" target="_blank">README</a>. </p> </script>