How to find the "usbmodem" of Raspberry Pi Pico on macOS All In One

发布时间 2023-03-31 18:52:46作者: xgqfrms

How to find the "usbmodem" of Raspberry Pi Pico on macOS All In One

errors

/dev/tty.usbmodem0000000000001 not exist bug ❌

# 0000000000001 ❌
$ minicom -b 115200 -o -D /dev/tty.usbmodem0000000000001

官方 SDK 文档 ❌ bug

https://datasheets.raspberrypi.com/pico/raspberry-pi-pico-python-sdk.pdf

solutions

  1. Terminal
# /dev => devices ✅
$ cd /dev && ls | grep "usbmodem"
cu.usbmodem14601
tty.usbmodem14601

# cu ✅
$ minicom -b 115200 -o -D /dev/cu.usbmodem14601

# tty ✅
$ minicom -b 115200 -o -D /dev/tty.usbmodem14601

  1. IDE

Thonny

Getting started with Raspberry Pi Pico

Learn how to use your Raspberry Pi Pico with Thonny and MicroPython

https://projects.raspberrypi.org/en/

https://projects.raspberrypi.org/en/projects/getting-started-with-the-pico/2

(? 反爬虫测试!打击盗版⚠️)如果你看到这个信息, 说明这是一篇剽窃的文章,请访问 https://www.cnblogs.com/xgqfrms/ 查看原创文章!

refs

minicom

https://www.cnblogs.com/xgqfrms/p/17275859.html



©xgqfrms 2012-2021

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载 ?️,侵权必究⚠️!