本文整理匯總了TypeScript中SerialPort.parsers.Readline方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript parsers.Readline方法的具體用法?TypeScript parsers.Readline怎麽用?TypeScript parsers.Readline使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類SerialPort.parsers
的用法示例。
在下文中一共展示了parsers.Readline方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: test_connect_config
function test_connect_config() {
const port1 = new SerialPort('', {
baudRate: 0,
parser: SerialPort.parsers.Raw
}, (err: any) => {});
const port2 = new SerialPort('', {
baudRate: 0,
parser: SerialPort.parsers.Readline('\n', 'ascii')
}, (err: any) => {});
const port3 = new SerialPort('', {
baudRate: 0,
parser: SerialPort.parsers.ByteLength(7)
}, (err: any) => {});
const port4 = new SerialPort('', {
baudRate: 0,
parser: SerialPort.parsers.ByteDelimiter([3, 4, 5])
}, (err: any) => {});
const port5 = new SerialPort('', {
autoOpen: false,
lock: false,
baudRate: 115200,
dataBits: 5,
stopBits: 2,
parity: 'odd',
rtscts: true,
xon: true,
xoff: true,
bufferSize: 1024,
platformOptions: {
vmin: 1,
vtime: 1
}
}, (err: any) => {});
}