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/store/reducers/comConnectionReducer.js
2020-08-07 16:04:01 +02:00

14 lines
322 B
JavaScript

import SerialPort from 'serialport';
const Readline = require('@serialport/parser-readline');
const port = new SerialPort('COM6', {
baudRate: 9600,
});
const parser = port.pipe(new Readline({ delimiter: '\r\n' }));
const initialState = { port, parser };
export default (state = initialState) => {
return state;
};