I always get an error

This is what i did in the first part because I always get an error where something is wrong in the readline class and i also added the path inside the arguement object because i also get an error where path is not defined.

const SerialPort = require("serialport");
const { ReadlineParser } = require("@serialport/parser-readline");


const parsers = SerialPort.parsers;
const parser = new ReadlineParser({ delimeter: "\r\n" });

const port = new SerialPort.SerialPort({
  path: "COM9",
  baudRate: 9600,
  dataBits: 8,
  parity: "none",
  stopBits: 1,
  flowControl: false,
});

port.pipe(parser);

parser.on("data", (data) => {
  console.log(data);
});

It would be nice if you provided a bit of context here. What are you trying to do? What doesn’t work? What errors are you getting? How are you running it (node I assume?).

I don’t know anything about the libs you are using.


I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.