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/app/renderer/serial/index.js

11 lines
259 B
JavaScript
Raw Normal View History

2020-08-01 15:42:10 +02:00
import SerialPort from 'serialport';
const Readline = require('@serialport/parser-readline');
2020-08-07 16:04:01 +02:00
const port = new SerialPort('COM6', {
2020-08-01 15:42:10 +02:00
baudRate: 9600,
});
const parser = port.pipe(new Readline({ delimiter: '\r\n' }));
const initialState = { port, parser };