python串口通讯数据过长_Python 串口通讯

摘要:

pyserial module: https://github.com/tbusf/pyserial

Python使用pyserial进行串口通信:http://blog.csdn.net/log1100/article/details/54380325

串口通讯的python模块——pySerial :http://blog.csdn.net/dainiao01/article/details/5885122

Parameters for the Serial class

ser = serial.Serial(

port=None, # number of device, numbering starts at

# zero. if everything fails, the user

# can specify a device string, note

# that this isn't portable anymore

# if no port is specified an unconfigured

# an closed serial port object is created

baudrate=9600, # baud rate

bytesize=EIGHTBITS, # number of databits

parity=PARITY_NONE, # enable parity checking

stopbits=STOPBITS_ONE, # number of stopbits

timeout=None, # set a timeout value, None for waiting forever

xonxoff=0, # enable software flow control

rtscts=0, # enable RTS/CTS flow control

interCharTimeout=None # Inter-character timeout, None to disable

)

Methods of Serial instances

open() # open port

close() # close port immediately

setBaudrate(baudrate) # change baud rate on an open port

inWaiting() # return the number of chars in the receive buffer

read(size=1) # read "size" characters

write(s) # write the string s to the port

flushInput() # flush input buffer, discarding all it's contents

flushOutput() # flush output buffer, abort output

sendBreak() # send break condition

setRTS(level=1) # set RTS line to specified logic level

setDTR(level=1) # set DTR line to specified logic level

getCTS() # return the state of the CTS line

getDSR() # return the state of the DSR line

getRI() # return the state of the RI line

getCD() # return the state of the CD line

Attributes of Serial instancesreadonly

portstr # device name

BAUDRATES # list of valid baudrates

BYTESIZES # list of valid byte sizes

PARITIES # list of valid parities

STOPBITS # list of valid stop bit widths

New values can be assigned to the following attributes, the port will be reconfigured, even if it’s opened at that time:(即使是打开的情况下也会重新配置???liub)

port # port name/number as set by the user

baudrate # current baud rate setting

bytesize # byte size in bits

parity # parity setting

stopbits # stop bit with (1,2)

timeout # timeout setting

xonxoff # if Xon/Xoff flow control is enabled

rtscts # if hardware flow control is enabled

居然还有这么多好东西,看看下面:

TCP/IP – serial bridge

This program opens a TCP/IP port. When a connection is made to that port (e.g. with telnet) it forwards all data to the serial port and vice versa.

This example only exports a raw socket connection. The next example below gives the client much more control over the remote serial port.

The serial port settings are set on the command line when starting the program.

There is no possibility to change settings from remote.

All data is passed through as-is.

打开一个python shell

import serial导入模块

然后就可以用了

ser = serial.Serial(0) 是打开第一个串口

print ser.portstr 能看到第一个串口的标识,windows下是COM1

ser.write(“hello") 就是往串口里面写数据

ser.close() 就是关闭ser表示的串口

ser.open() 会打开这个串口

ser = serial.Serial('COM1', 115200) 来设置波特率,当然还有专门的函数

data = ser.read()可以读一个字符

data = ser.read(20) 是读20个字符

data = ser.readline() 是读一行,以/n结束,要是没有/n就一直读,阻塞。

data = ser.readlines()和ser.xreadlines()都需要设置超时时间

ser.baudrate = 9600 设置波特率

ser 来查看当前串口的状态

ser.isOpen() 看看这个串口是否已经被打开

importpyserial

t=serial.Serial()

t.port= 3t.baudrate= 115200t.open()

t.write(chr(0x03)) #向串口输入ctrl+c

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/262354.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

JS 问题集锦

【1】js页面跳转 和 js打开新窗口方法 第一种&#xff1a;<script language"javascript" type"text/javascript">window.location.href"http://www.xlfun.com/login.php?backurl"window.location.href; </script>第二种&#xff1a…

flash在影片剪辑里面跳转场景

奶奶个熊。gotoandplay有那个场景参数。在影片剪辑里面死活不行。但直接在场景里可以。后来狂百度。最后找到个可以用的解决方案。把我要跳转的场景的帧取个标签名。然后用如下的代码。在with里面继续使用gotoAndPlay的场景参数模式依旧无效。 1: on(Release){2: 3: with(_roo…

重温Observer模式--热水器·改(转载)

引言 在 C#中的委托和事件 一文的后半部分&#xff0c;我向大家讲述了Observer(观察者)模式&#xff0c;并使用委托和事件实现了这个模式。实际上&#xff0c;不使用委托和事件&#xff0c;一样可以实现Observer模式。在本文中&#xff0c;我将使用GOF的经典方式&#xff0c;再…

python删除重复值所在的行数_python – 在last中删除具有重复值的行

我有一个制表符分隔文件,看起来像这样chr1 12226559 12227059 TNFRSF1Bchr1 17051560 17052060chr1 17053279 17053779chr1 17338423 17338923 ATP13A2ATP13A2ATP13A2chr1 19577574 19578074 EMC1MRTO4chr1 19578046 19578546 EMC1MRTO4chr1 19638239 19638739 AKR7A2PQLC2PQLC…

hasLayout属性

在IE中&#xff0c;当一个元素的hasLayout属性被触发后&#xff08;不可逆转&#xff09;&#xff0c;就会拥有一个布局&#xff0c;可以进行更多的样式更改操作。 包含该属性的元素有 body html/table tr th td/img/hr/input button file select fieldset textarea/frameset i…

龙图 VP 李翀:数据化运营及云计算下的运维

文 | 龙图 VP 李翀原文地址&#xff1a;当游戏遇上大数据和云计算——谈数据化运营及云计算下的运维龙图做了8年的游戏&#xff0c;真正快速发展起来是在移动互联网这个时代。随着刀塔快速的扩张&#xff0c;我们在各个领域都遇到了非常多的之前没有想到过的状态。发现云计算其…

python多个main方法_Python,main方法未运行(同一文件中有多个类)

上下文&#xff1a;我开发了一个在远程linux服务器上运行的python脚本。使用python3.6.1运行。这个脚本可以工作&#xff0c;但是非常混乱&#xff0c;并且按照程序编写&#xff0c;与OO相反。所以&#xff0c;我把这个脚本重写成两个不同的类。一个主类和一个对象的blueprint类…

鼠标移动时,光标相对于对象的位置

鼠标在一个物体上移动时&#xff0c;能够计算出光标相对于任何其它对象的相对位置。 Code<Grid x:Name"LayoutRoot" Background"White"> <Grid HorizontalAlignment"Left" VerticalAlignment"Top" Name"grid1&q…

怎么判断一个字符串的最长回文子串是否在头尾_【Leetcode每日打卡】最长回文串...

干货预警&#xff1a;所有文章都会首发于我的公众号【甜姨的奇妙冒险】&#xff0c;欢迎watch。一、来历&#xff1a;力扣从3月开始开启了每日一题打卡活动&#xff0c;于是跟风加入了打卡大军&#xff0c;这两天写评论、发题解&#xff0c;没想到反响还不错&#xff0c;收到了…

mysql的存储过程正负数的变化_《转》mysql存储过程语法及范例

《转》mysql存储过程语法及实例 存储过程如同一门程序设计语言&#xff0c;同样包含了数据类型、流程控制、输入和输出和它自己的函数库。 --------------------基本语法-------------------- 一.创建存储过程 create procedure sp_name() begin ......... end 二.调用存《转》…

.NET平台下WEB应用程序的部署(安装数据库和自动配置)

.NET平台下WEB应用程序的部署(安装数据库和自动配置)李洪根在.NET平台下&#xff0c;部署 Web 解决方案是比较方便的。我们可以利用Visual Studio.NET 2003添加一个WEB安装项目&#xff0c;在部署的“文件系统编辑器”中添加项目的主输出和内容文件&#xff0c;非常简易地完成安…

将pcre、zlib等包编译进nginx里去(转)

转摘自&#xff1a;http://www.sudone.com/nginx/nginx_new_install.html一般编译nginx时&#xff0c;都要先安装pcre、zlib等外部支持程序&#xff0c;然后编译安装nginx时指定这些外部支持程序的位置&#xff0c;这样nginx在每次启动的时候&#xff0c;就会去动态加载这些东西…

苹果原壁纸高清_全面屏壁纸高清 | 电影经典台词截图高清

iPhonex手机壁纸高清(苹果xs壁纸&#xff0c;苹果xr壁纸&#xff0c;iPhone11壁纸&#xff0c;安卓全屏壁纸)火影壁纸高清&#xff0c;经典电影台词截图拼接壁纸&#xff0c;电影《去他妈的世界》壁纸&#xff0c;欧美电影截图加上经典台词&#xff0c;2020好看的手机壁纸&…

python字符串切片用法_详解Python字符串切片

在python中,我们定义好一个字符串,如下所示。 在python中定义个字符串然后把它赋值给一个变量。 我们可以通过下标访问单个的字符,跟所有的语言一样,下标从0开始(==,我自己都觉得写的好脑残了) 这个时候呢,我们可以通过切片的方式来截取出我们定义的字符串的一部分。 使用…

Python中yield

在介绍yield前有必要先说明下Python中的迭代器(iterator)和生成器(Generator)。一、迭代器(iterator)在Python中&#xff0c;for循环可以用于Python中的任何类型&#xff0c;包括列表、元祖等等&#xff0c;实际上&#xff0c;for循环可用于任何“可迭代对象”&#xff0c;这其…

关于Services.exe开机CPU内存使用暴增解决方案

这两天系统&#xff08;Windows Server 2003 SP2&#xff09;开机&#xff0c;发现Services.exe进程CPU使用率暴增并且伴随内存狂耗&#xff0c;内存和虚拟内存可以在10分钟之内耗尽。我3G内存呀&#xff0c;外加2G虚拟内存。但诡异的是待内存耗尽后&#xff0c;Services.exe有…

计算机科学中最重要的32个算法

奥地利符号计算研究所&#xff08;Research Institute for Symbolic Computation&#xff0c;简称RISC&#xff09;做了一个调查&#xff0c;投票选出32个最重要的算法&#xff1a; A* 搜索算法——图形搜索算法&#xff0c;从给定起点到给定终点计算出路径。其中使用了一种启发…

mysql 卸载批处理_MYSQL 注册启动 及 停用卸载 批处理脚本 (补)

早前调试mysql接口时候编写的批处理文件。注册启动 my_install.batecho offset MYSQL_DIR%~dp0rem set MYSQL_DIR%cd%if not "%MYSQL_HOME%""" (if not "%MYSQL_HOME%""%MYSQL_DIR%" (echo MYSQL_HOME%MYSQL_HOME% ! MYSQL_DIR%MYSQL…

azkaban config: nodes:_关于Nordic SDK的sdk.config.h

使用MDK对Nordic SDK开发&#xff0c;离不开sdk.config.h。请看以下两个视图&#xff1a;Text Editor视图Configuration Wiard视图咋一看挺神奇的&#xff0c;配置视图话&#xff0c;方便。具体实现和规则就不一一介绍了&#xff0c;网页搜“MDK中Configuration Wiard的使用”。…

SilverLight开发系列第1步:搭建开发环境

来自 http://www.cnblogs.com/kaima/archive/2008/08/17/1269637.html 在缺乏SilverLight中文教程的今天&#xff0c;新人要入门不容易&#xff0c;所以我根据自己阅读英文原档和实践经验&#xff0c;总结一个系列。首先介绍的是开发环境的搭建。 个人强烈推荐安装英文版的开发…