我终于得到了从串口打印详细信息的代码,没有空行,但我不知道如何让这个脚本自动结束工作。
我的脚本:
#!/usr/bin/python
# -*- coding: utf-8 -*-
from serial import Serial
ser = Serial('/dev/ttyACM0', 9600, 7, 'E', 1)
while True:
# Read a line and convert it from b'xxx\r\n' to xxx
line = ser.readline().decode('utf-8')[:-2]
print line
现在我想打开这个脚本 - 打印 2-3 秒并自动关闭脚本。那可能吗?