首页 > 其他 > 详细

36 树莓派串口通信

时间:2019-10-04 09:05:50      阅读:160      评论:0      收藏:0      [点我收藏+]

技术分享图片

 

 

树莓派查询串口

ls /dev/tty*

 通过  拔插发现多了一个

技术分享图片

 

 就是他了。

 

arudnio代码

 

 
void setup()
{
   Serial.begin(9600); //打开串口
}
 
void loop()
{

  Serial.println("Hello Raspberry,I am Arduino.");
  delay(1000);
   if ( Serial.available())
     {
      if(‘s‘ == Serial.read())
        Serial.println("Hello Raspberry,I am Arduino.");
     }
    
}

  

 

 

技术分享图片

 

 

# -*- coding: utf-8 -*
import serial
import time
ser = serial.Serial(‘/dev/ttyUSB0‘, 9600)
if ser.isOpen == False:
    ser.open()                # 打开串口
ser.write(b"Raspberry pi is ready")
try:
    while True:
        size = ser.inWaiting()               # 获得缓冲区字符
        if size != 0:
            response = ser.read(size)        # 读取内容并显示
            print(response)        
            ser.flushInput()                 # 清空接收缓存区
            time.sleep(0.1)                  # 软件延时
except KeyboardInterrupt:
    ser.close()

  

36 树莓派串口通信

原文:https://www.cnblogs.com/kekeoutlook/p/11621280.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!