Pyserial从COM端口读取空b''

时间:2018-07-05 15:14:17

标签: python-3.x serial-port readline pyserial

我正在测试我的COM端口,因为我需要通过python从雷达板上读取流数据。

首先,我编写了一个arduino代码,如下图所示。 enter image description here

它连续产生数字。

并写了pyserial:

expectedProps = {
    items: ['JK',],
    disabled: false,
    filterable: false,
}
expect(compoennt.props()).toMatchObject(expectedProps);

但是我得到了结果: enter image description here

如果在编译python代码之前运行arduino串行输出窗口,我将正确获得输出(例如b'193 \ n',b'194 \ n'...),否则我将得到什么都没有。(b'')。

有人可以告诉我我的处理方式有什么问题吗?

0 个答案:

没有答案