如何从端口通信中读取字符串?

时间:2016-11-16 17:04:00

标签: python c uart

我真的是个初学者, 我从串口通信发送一个字符串'hello'到我的模块。为此,我使用Python和Pyserial。

import serial

ser = serial.Serial(
    port='COM4', \
    baudrate= 230400  # open serial port
)

print(ser.name)         # check which port was really used
#ser.write(b'hello\n')     # write a string
#str=ser.readline()

while True:
    print(ser.read(30).decode())
ser.close()             # close ports

现在我需要使用我的模块恢复该字符串,然后使用C语言在通信端口上读取它。

如果你能帮助我,我将非常感激。

0 个答案:

没有答案