Bump piLcd package after tidy up

This commit is contained in:
Dave Conway-Jones 2020-06-15 23:20:46 +01:00
parent 6161df3380
commit 34fc79ddb6
No known key found for this signature in database
GPG Key ID: 302A6725C594817F
6 changed files with 10 additions and 12 deletions

View File

@ -1,4 +1,4 @@
Copyright 2016 JS Foundation and other contributors, https://js.foundation/
Copyright 2016,2020 JS Foundation and other contributors, https://js.foundation/
Copyright 2013-2016 IBM Corp.
Licensed under the Apache License, Version 2.0 (the "License");

View File

@ -1,18 +1,16 @@
node-red-node-pilcd
===================
# node-red-node-pilcd
A <a href="http://nodered.org" target="_new">Node-RED</a> node for a Raspberry Pi
to write to a GPIO connected HD44780 style LCD panels.
Install
-------
## Install
Run the following command in your Node-RED user directory - typically `~/.node-red`
Either use the Node-RED Menu - Manage Palette option to install, or run the following
command in your Node-RED user directory - typically `~/.node-red`
npm install node-red-node-pilcd
Usage
-----
## Usage
Raspberry Pi output to HD44780 style LCD module - typically 1, 2, or 4 lines.

View File

@ -1,4 +1,4 @@
<script type="text/x-red" data-help-name="rpi-lcd">
<script type="text/html" data-help-name="rpi-lcd">
<p>Raspberry Pi output to a HD44780 style LCD. Usually 1, 2, or 4 lines of characters.</p>
<p>Expects a <code>msg.payload</code> with a string in it.</p>
<p>Strings for the second line of the display must start <b>2:</b> - the third start <b>3:</b> - and the fourth <b>4:</b></p>

View File

@ -1,4 +1,4 @@
<script type="text/x-red" data-help-name="rpi-lcd">
<script type="text/html" data-help-name="rpi-lcd">
<p>Raspberry PiがHD44780スタイルのLCDへ、通常1、2、4行の文字列を表示します。</p>
<p>本ノードは、文字列型の<code>msg.payload</code>を受け付けます。</p>
<p>ディスプレイの2行目に文字列を表示するには、<b>2:</b>から始まる文字列にします。3行目の場合は<b>3:</b>、4行目の場合は<b>4:</b>です。</p>

View File

@ -1,6 +1,6 @@
{
"name" : "node-red-node-pilcd",
"version" : "0.0.11",
"version" : "0.1.0",
"description" : "A Node-RED node for Raspberry Pi to write to HD44780 style LCD panels.",
"dependencies" : {
},

View File

@ -1,4 +1,4 @@
<script type="text/x-red" data-template-name="rpi-lcd">
<script type="text/html" data-template-name="rpi-lcd">
<div class="form-row">
<label for="node-input-pins"><i class="fa fa-circle"></i> <span data-i18n="pilcd.label.pins"></label>
<input type="text" id="node-input-pins" placeholder="RS,E,D4,D5,D6,D7">