Files
ai-titration/Auto_Ctrl/burette_clearair.py
flt6 2c2822ff11 src
Former-commit-id: 43bc977a970a5bba09d0afa6f2a85169fe1ed253
2025-05-15 23:49:13 +08:00

25 lines
528 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import serial
import time
port = "COM5" # 串口名,根据实际情况修改
baudrate = 9600 # 波特率
ser = serial.Serial(port, baudrate)
data = b"q1h16d" # 设定为每分钟转16圈的模式比慢滴模式角度稍微大一点点
ser.write(data)
time.sleep(0.01)
data = b"q5h1d" # 转1秒
ser.write(data)
time.sleep(0.01)
data = b"q6h3d" # 逆时针
ser.write(data)
time.sleep(3.01) # 这个等待时间决定了阀门开启时间
data = b"q6h2d" # 顺时针
ser.write(data)
ser.close() # 关闭串口