Python使用pyserial模块如何向串口输入ctrl+c?

代码示例:

import pyserial
t=serial.Serial()
	t.port = 3
	t.baudrate = 115200
	t.open()
t.write(chr(0x03))    #向串口输入ctrl+c
>>> import serial
>>> ser = serial.serial(0) #开启串口0
>>> ser.write("\xaa") #写十六进制aa
>>> ser.close() #关闭串口

原文链接:https://www.656463.com/wenda/Pythonsypyserialmkrhxcksrctrlc_61

其他参考文档:https://blog.csdn.net/weixin_39548541/article/details/112930068

你可能感兴趣的:(c语言,开发语言)