程序员老茶 |
🙈作者简介:
练习时长两年半的Java up主
🙉个人主页:程序员老茶
🙊 P S :点赞是免费的,却可以让写博客的作者开心好久好久
😎
📚系列专栏:Java全栈,计算机系列(火速更新中)
💭格 言:种一棵树最好的时间是十年前,其次是现在
🏡动动小手:点个关注不迷路,感谢宝子们一键三连
目录
- 课程名:Python
- 内容/作用:知识点/设计/实验/作业/练习
- 学习:使用 Python 管理串口通信:实现一个串口管理器
- 使用 Python 管理串口通信:实现一个串口管理器
- 代码实现
- 主要功能介绍
- 菜单操作
- 运行示例
- 总结
课程名:Python
内容/作用:知识点/设计/实验/作业/练习
学习:使用 Python 管理串口通信:实现一个串口管理器
使用 Python 管理串口通信:实现一个串口管理器
在嵌入式系统开发和调试中,串口通信是一项基本技能。本文将介绍如何使用 Python 和 pySerial
库来实现一个简易的串口管理工具。我们将展示一个完整的类来管理串口的打开、关闭和数据传输操作。
代码实现
以下是我们实现的一个名为 SerialPortManager
的类,它提供了打开、关闭串口以及发送 AT 命令的功能。
import serial
import timeclass SerialPortManager:def __init__(self):self.com_port = Noneself.at_commands_sent = []def open_port(self, port_name):try:self.com_port = serial.Serial(port_name, baudrate=9600, bytesize=serial.EIGHTBITS,stopbits=serial.STOPBITS_ONE, parity=serial.PARITY_NONE,timeout=1)if self.com_port.is_open:return "Port opened successfully"else:return "Error: Port could not be opened"except Exception as e:return f"Error: {str(e)}"def write_to_port(self, at_command):try:if self.com_port is not None and self.com_port.is_open:# 发送ASCII值print(f"写入={at_command.encode('ascii').decode('ascii')}")self.com_port.write(at_command.encode('ascii'))self.com_port.flush()# 稍等待响应time.sleep(1)# 读取返回的数据read_buffer = self.com_port.read(1024)# 过滤掉非ASCII字符data = ''.join(char for char in read_buffer.decode('latin-1') if char.isascii())print(f"Received data: {data}")self.record_at_command_sent(at_command)return dataelse:return "Error: Port is not open"except Exception as e:return f"Error: {str(e)}"def close_port(self):if self.com_port is not None:self.com_port.close()self.com_port = None@staticmethoddef convert_hex_array_to_byte_array(hex_array):return bytes(int(hex_str, 16) for hex_str in hex_array)def record_at_command_sent(self, at_command):self.at_commands_sent.append(at_command)def get_at_commands_sent(self):return self.at_commands_sent
主要功能介绍
- 初始化:
__init__
方法初始化类的实例变量。 - 打开串口:
open_port
方法尝试打开指定的串口,如果成功则返回成功信息,否则返回错误信息。 - 写入数据到串口:
write_to_port
方法发送 AT 命令并读取响应。 - 关闭串口:
close_port
方法关闭已打开的串口。 - 记录发送的 AT 命令:
record_at_command_sent
方法记录已经发送的 AT 命令。 - 获取已发送的 AT 命令:
get_at_commands_sent
方法返回所有已发送的 AT 命令列表。
菜单操作
我们还实现了一个简单的菜单程序,允许用户通过命令行打开串口、发送命令和关闭串口。
def menu():spm = SerialPortManager()port_opened = Falsewhile True:print("\n--- Serial Port Menu ---")print("1. Open Port")print("2. Send Command")print("3. Close Port")print("4. Exit")choice = input("Enter your choice: ")if choice == '1':if port_opened:print("Port is already opened.")else:port_name = input("Enter port name (e.g., COM3): ")result = spm.open_port(port_name)print(result)if "successfully" in result:port_opened = Trueelif choice == '2':if not port_opened:print("Please open the port first.")else:command = input("Enter command to send: ")response = spm.write_to_port(command)print("Response: ", response)elif choice == '3':if not port_opened:print("Port is not open.")else:spm.close_port()print("Port closed successfully.")port_opened = Falseelif choice == '4':if port_opened:spm.close_port()print("Port closed successfully.")print("Exiting...")breakelse:print("Invalid choice. Please try again.")# 用法示例
if __name__ == "__main__":menu()
运行示例
- 打开串口: 提示用户输入串口名称(例如
COM3
),并尝试打开。 - 发送命令: 用户可以输入 AT 命令,程序将发送命令并打印响应。
- 关闭串口: 关闭当前打开的串口。
- 退出程序: 关闭串口并退出程序。
通过以上代码,我们实现了一个基本的串口管理工具,能够帮助开发者进行串口通信的测试和调试。希望这篇博客能为你的开发工作带来帮助!
总结
感谢小伙伴们一键三连,咱们下期文章再见~
往期精选 |
第1集:SpringCloud:认识微服务
第2集:SpringCloud:服务拆分和远程调用
第3集:SpringCloud:Eureka注册中心
往 期 专 栏 |
---|
Java全栈开发 |
数据结构与算法 |
计算机组成原理 |
操作系统 |
数据库系统 |
物联网控制原理与技术 |