npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

serial-half-duplex

v4.0.1

Published

Half-duplex serial port for communication with serial devices

Downloads

136

Readme

Half-Duplex Serial Port

This package uses serialport and adds half-duplex functionality (i.e. send-and-receive). It supports TypeScript.

For serial communication, one usually wants to send a command and wait for an answer. This Promise based library does exactly that.

Half-duplex means that there can always be only one party sending data. Since the commands are asynchronous and Promise based, they are protected internally with a Semaphore and not more than one caller can send and receive data at the same time.

const serial = new SerialHalfDuplex( SerialHalfDuplex.openSerialPort( '/dev/ttyUSB0' ) );
const timeoutMillis = 200;

// Send data over the serial port, wait for the response, and process it
serial.sendAndReceive( Buffer.from( 'Hello!' ), timeoutMillis )
    .then( ( answer ) => console.log( answer.toString() ) )
    .catch( ( err ) => console.error( err ) );

API

See your favourite editor’s autocomplete support for the full documentation.

new SerialHalfDuplex( port : ISerialPort, args? : SerialHalfDuplexArgs )

Constructor. args allows to configure

  • delimiter which marks the end of a response
  • logger like SerialHalfDuplex.consoleLogger which logs communication details, if defined

debugMode : boolean

Enable debug mode (print incoming and outgoing messages).

sendAndReceive( cmd : Buffer, timeout : number ) : Promise<Buffer>

Send a command and wait for an answer.

The timeout is in milliseconds. It is required because serial communication does not specify a request/response protocol and we just assume the client will respond within a defined amount of time (but it might not reply at all, for example because it is disconnected).

sendAndReceiveMany( …, expectedLines : number ) : Promise<Buffer[]>

Send a command and wait for multiple answers.

The command resolves when at least one line is returned within the timeout.

Waiting for multiple lines is useful in cases where a device returns multiple lines to one command. For example, the Acer beamer H5382BD replies with *001\rLAMP 0\r when querying the lamp state.

send( cmd : Buffer ) : Promise<void>

Simply send a command without waiting for an answer.

Testing serial communication

Testing serial ports without the real target device can be done e.g.

  • by programming an Arduino to behave like the real device
  • with socat and minicom

Socat can open a pair of serial ports.

socat -d -d pty,raw,echo=0 pty,raw,echo=0
2019/12/22 09:57:26 socat[12018] N PTY is /dev/pts/3
2019/12/22 09:57:26 socat[12018] N PTY is /dev/pts/4
2019/12/22 09:57:26 socat[12018] N starting data transfer loop with FDs [5,5] and [7,7]

Minicom can then connect to one end and the application to the other end. Do not forget to enable echo (Ctrl+A E) and disable hardware flow control (Ctrl+A O → Serial port setup → Hardware Flow Control).

minicom -b 9600 -o -D /dev/pts/4

Be aware that minicom only sends carriage return \r, but not new lines \n after commands. It therefore cannot be used for debugging.

To analyse the exact data which is sent through minicom, attach strace to the minicom process ID. Note that also stdin/stdout data is shown with file descriptors 0 and 1.

strace -p PID -e read,write

Changelog

vNext

v4.0.1 (2024-02-27)

  • Fixed: openSerialPort() optional arguments can be partial
  • Fixed: findSuitablePort() predicate is now actually used

v4.0.0 (2024-02-27)

This version updates from SerialPort 9 to 12 and improves logging.

  • Changed: Better error message in case of timeout
  • Changed: Log callback count when receiving spontaneous message
  • Changed: Update serialport to version 10
  • Breaking: Node.js 14 or newer is required.

v3.1.0 (2022-02-08)

  • Added: The SerialPort port object is now exposed.
  • Changed: Answer timeouts now reject with a TimeoutError

v3.0.0 (2021-03-29)

  • Changed: Constructor now takes a logger for debugging instead of a boolean flag. This does not force the usage of console anymore and allows customising output.

v2.1.0 (2021-03-03)

  • Changed: SerialHalfDuplex.findSuitablePort() now accepts a predicate which determines if a port is suitable, instead of only listing CP210x UART bridges. (This is still the default filter, so the change is backwards compatible.)
  • Changed: Dependencies updated

v2.0.1 (2020-06-09)

  • Changed: Updated packages (fixes bl vulnerability)
  • Breaking: Updated serialport to v9 to support Node.js 14. This requires Node.js > 8.

v1.3.1 (2019-12-22)

  • Changed: Documentation updated

v1.3.0 (2019-12-19)

  • Added: SerialHalfDuplex.sendAndReceiveMany. Receives more than one line.

v1.2.0 (2019-11-27)

  • Changed: SerialHalfDuplex accepts a configuration object to configure the response delimiter
  • Changed: SerialHalfDuplex.openSerialPort now accepts arguments for serial port configuration.