This repository has been archived on 2023-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
old-monorepo/Dashboard/src/SerialConnection.ts

11 lines
228 B
TypeScript
Raw Normal View History

2021-08-26 11:39:34 +02:00
import SerialPort, { parsers } from "serialport";
2021-08-26 11:39:34 +02:00
const port = new SerialPort("COM5", {
baudRate: 9600,
autoOpen: false,
});
2021-08-26 11:39:34 +02:00
const parser = port.pipe(new parsers.Readline({ delimiter: "\r\n" }));
export { port, parser };