mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Update serial info to match new capabilities.
This commit is contained in:
parent
7d6f70545a
commit
fe1b7c54ff
@ -27,8 +27,12 @@
|
|||||||
|
|
||||||
<script type="text/x-red" data-help-name="serial in">
|
<script type="text/x-red" data-help-name="serial in">
|
||||||
<p>Reads data from a local serial port.</p>
|
<p>Reads data from a local serial port.</p>
|
||||||
<p>In ascii mode keeps reading from the serial port until it sees \n (default) or the character(s) requested. Outputs <b>msg.payload</b> as a <i>string</i>.</p>
|
<p>Can either <ul><li>wait for a "split" character (default \n)</li>
|
||||||
<p>In binary mode can either output buffers of a fixed size, or wait for a timeout and then send whatever has accumlated. Outputs <b>msg.payload</b> as a <i>buffer</i>.</p>
|
<li>Wait for a timeout in milliseconds for the first character received</li>
|
||||||
|
<li>Wait to fill a fixed sized buffer</li>
|
||||||
|
</ul>
|
||||||
|
<p>It then outputs <b>msg.payload</b> as either a UTF8 ascii string or a binary Buffer object.</p>
|
||||||
|
<p>If no split character is specified, or a timeout or buffer size of 0, then a stream of single characters is sent - again either as ascii chars or size 1 binary buffers.</p>
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
Loading…
Reference in New Issue
Block a user