我安装了 Ubuntu 18.04 LTS。
我快速安装了 Arduino IDE v1.8.5
snap install arduino-mhall119
我已将我的用户添加到拨出组并重新启动:
sudo usermod -a -G dialout $USER
$ groups
username adm dialout cdrom sudo dip plugdev lpadmin sambashare
我将我的 Arduino Nano 连接到笔记本电脑,在端口/dev/ttyUSB0 ( ch341-uart ) 上检测到它。
$ ls /dev/ttyUSB0 -al
crw-rw---- 1 root dialout 188, 0 авг 13 11:59 /dev/ttyUSB0
我尝试上传最简单的Blink草图并在终端中收到以下错误:
$ arduino-mhall119.arduino
avrdude: ser_open(): can't open device "/dev/ttyUSB0": Permission denied
Problem uploading to board. See http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions.**
我还arduino
用 umake 安装了 1.8.5 - 它可以以通常的方式访问串行端口。
注意:我们在这里已经有类似的问题,但解决方案是使用package fromumake
,而不是修复 Snap。
所以我的问题是:如何让Arduino(Snap)访问串口/dev/ttyUSB0(或/dev/ttyACM0)?
更新:将串口连接到快照失败并显示以下消息
$ snap connect arduino-mhall119:serial-port
error: snap "core" has no "serial-port" interface slots
目前的接口有:
$ snap interfaces | grep arduino
:home arduino-mhall119,gedit,organize-my-files,vlc
:network arduino-mhall119,gedit,organize-my-files,pulsemixer,vlc
:unity7 arduino-mhall119,gedit,organize-my-files,vlc
:x11 arduino-mhall119,organize-my-files,pulsemixer,vlc
- arduino-mhall119:serial-port
将串行端口的权限更改为 777sudo chmod 777 /dev/ttyUSB0
并没有帮助。
以下也不起作用(由于语法错误):
$ sudo snap connect arduino-mhall119:arduino
error: snap "arduino-mhall119" has no plug named "arduino"
$ snap connect arduino-mhall119:/dev/ttyUSB0
error: snap "arduino-mhall119" has no plug named "/dev/ttyUSB0"
$ snap connect arduino-mhall119
error: cannot resolve connection, plug snap name is empty
YAML 清单的相关资料:
$ ls -l /snap/arduino-mhall119/current/meta/snap.yaml
-rw-r--r-- 1 root root 353 июл 28 00:20 /snap/arduino-mhall119/current/meta/snap.yaml
$ cat /snap/arduino-mhall119/current/meta/snap.yaml |grep -A 12 slots
$ cat /snap/arduino-mhall119/current/meta/snap.yaml |grep -A 5 plug
plugs:
- x11
- unity7
- home
- network
- serial-port
2020 年更新
快照已过时,
arduino-mhall119
不应再使用。请arduino
改用快照。有关如何使用snap进行串行工作的最新信息,请参阅此答案。
arduino
旧指令
在经典模式下安装 snap 以允许访问端口
就是这么简单。您现在应该可以访问您的串行端口了!快乐黑客!
注意:旧 Arduino 1.6.10 需要以下信息。
一些有助于找到答案的有趣链接
自动连接串口接口
接口 -
serial-port
接口参考:
提供串口插槽的小工具
快照已过时,
arduino-mhall119
不应再使用。请改用arduino
快照。:使用该快照,您唯一需要做的就是将您自己的用户添加到
dailout
组中:在此之后,重新启动您的设备并打开 Arduino IDE。
约书亚的解决方案不再适用于我,因为我得到了错误:
Warning: flag --classic ignored for strictly confined snap arduino-mhall119
但是,当使用 devmode 时,它工作正常:
不确定 devmode 是否有任何进一步的后果..