python 3串口操作

來源:互聯網
上載者:User

在python內建類庫中,沒有對串口操作的模組,需要額外引用。

python 2 中需要引用以下兩個模組: 

1. pyserial模組(pyserial-2.5.win32.exe)2. pywin32 (http://sourceforge.net/projects/pywin32/) 

在python 3中只需要引用一個模組

pyserial模組(pyserial-py3k-2.5.win32.exe) 模組即可,裡麵包含了serialwin32.py檔案

從HexData.txt中讀取資料發動到串口中。

__author__ = 'zhangps'
import serial
from time import sleep

serialport = serial.Serial("com3",115200,timeout=1)
readHandle = open("HexData.txt","r",encoding="utf8")

try:
    for fileLine in readHandle.readlines():
        writeData = bytes.fromhex(fileLine)
        serialport.write(writeData)
        sleep(0.05)
except EnvironmentError as err:
    print(err)
finally:
    readHandle.close()
    serialport.close()

sleep單位為秒

HexData.tx格式如下:

7E 7E 08 02 14 EE 0D 01 1A F0 16

7E 7E 09 02 14 32 F3 01 17 80 00 48

7E 7E 0B 02 14 99 0D 01 15 FA 0F C3 0C A7 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.