当前位置:   article > 正文

树莓派3B+通过USB转TTL模块实现串口通信_树莓派3b 串口芯片

树莓派3b 串口芯片

树莓派3B+没有内置的USB转TTL功能,但您可以通过使用USB转TTL适配器来实现该功能。USB转TTL适配器是一种将USB接口转换为TTL串行通信接口的设备,可以与树莓派的GPIO引脚进行通信。

一、组件

树莓派3B+                                                                               USB转TTL模块

                                                            

通过USB转TTL模块连接串口设备

二、开发步骤

1、lsusb         显示本机的USB设备列表

出现CH340就是检测到硬件设备了。

2、ls -l /dev/tty*          查看识别的串口号

 出现 /dev/ttyUSB0

程序:

  1. /*
  2. * 树莓派串口测试程序
  3. */
  4. #include <wiringSerial.h>
  5. #include <unistd.h>
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8. int main()
  9. {
  10. int fd;
  11. int n_read;
  12. char* readbuf = (char* )malloc(128);
  13. fd = serialOpen("/dev/ttyUSB0",9600);
  14. while(1)
  15. {
  16. n_read = read(fd,readbuf,128);
  17. if(n_read > 0)
  18. {
  19. printf("%d\n",(int)*readbuf);
  20. }
  21. }
  22. return 0;
  23. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/893170
推荐阅读
相关标签
  

闽ICP备14008679号