python实现树莓派usb串口发送gcode# encoding: utf-8 import serial def post_gcode(x,com_x): # x:gcode路径 com_x:串口我的是/dev/ttyUSB0 ser = serial.Serial(com_x, 115200,timeout = 0.1) # 打开COM8波特率115200 超时2秒 f = open('./image/'+x+'.gcode', 'r') # 只读模式打开文档打开Gcode文档 ser.timeout = 40 # 读超时设置 ser.writeTimeout = 2 # 写超时 while True: # 获取数据 line = f.readline() # 按行读取 if not line: # 读到最后文档结尾 f.close() # 关闭文档 break #
一只胖橘