0
我終於得到了代碼來打印來自串口的細節沒有空行,但我不知道如何使這個腳本自動結束工作。Python腳本自動關閉
我的腳本:
#!/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秒鐘,全自動關閉腳本。那可能嗎?