python打印电脑串口的信息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python打印电脑串口的信息相关的知识,希望对你有一定的参考价值。

 

 1 # -*- coding:utf-8 -*-
 2 
 3 from serial.tools.list_ports import comports
 4 
 5 port_list = list(comports())
 6 if len(port_list) == 0:
 7     print(Not found Serial Ports)
 8 else:
 9     for i in range(len(port_list)):
10         print(port_list[i])  #print the serial port infomation

 

以上是关于python打印电脑串口的信息的主要内容,如果未能解决你的问题,请参考以下文章

arduino 如何通过串口将变量传给电脑??

实验2串口实验

Arduino 利用readString函数对串口数据进行接收和打印

单片机与电脑串口通信,无论发啥信息都收到00,求问是怎么回事?代码见下面。

笔记本电脑怎么用arm9开发时,需要U口转串口的线和jlink仿真器v8吗,这两个是啥东西,有区别吗,

我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情