pico运行 找不到COM端口号-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 4701|回复: 2

pico运行 找不到COM端口号

[复制链接]
发表于 2021-6-20 19:22 | 显示全部楼层 |阅读模式
不知道别人有没有遇到这种情况,PICO找不到端口。


  1. /*
  2.   开发板选择Arduino Mbed OS RP2040 Boards -Raspberry Pi Pico
  3.   按住BOOTSEL然后插上USB长按3秒,松开,然后upload通过
  4.   程序正常运行后将找不到USB,找不到端口
  5.   Windows7系统, IDE:Arduino 1.8.15
  6. */

  7. // the setup function runs once when you press reset or power the board

  8. void setup() {
  9.   // initialize digital pin LED_BUILTIN as an output.
  10.   pinMode(LED_BUILTIN, OUTPUT);
  11.   pinMode(1,OUTPUT);
  12.   Serial.begin(115200);
  13. }

  14. // the loop function runs over and over again forever

  15. void loop() {
  16.   Serial.print("Hello Pico!"); //串口不可用

  17.   digitalWrite(1,LOW);
  18.   digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)
  19.   delay(1000);                       // wait for a second

  20.   digitalWrite(1,HIGH);
  21.   digitalWrite(LED_BUILTIN, LOW);    // turn the LED off by making the voltage LOW
  22.   delay(1000);                       // wait for a second
  23. }
复制代码


 楼主| 发表于 2021-6-21 10:05 | 显示全部楼层
昨晚翻了很多网站找到了解决方案。
对Windows7系统而言,在Arduino IDE开发板管理器加载好Pico开发板后,如果你怎么也找不到Port对应的COM端口号,那么你应该安装一个软件:Zadig-2.5
USB口插上Pico,安装好Zadig 后,直接打开该软件
在Options下拉菜单勾选List all Devices,选择框会出现RaspberryPi Pico (Interface 0),选中它
然后选中USB Serial CDC, 然后install driver
IMG_20210621_093916.jpg
然后打开Arduino IDE选择pico开发板后就有COM号了

打开串口监测,成功!

IMG_20210621_100101.jpg
发表于 2021-6-20 23:33 | 显示全部楼层
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-12-27 22:08 , Processed in 0.078863 second(s), 20 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表