如何在 Pi 4 上成功配置 pi-fancontrol?

如何在 Pi 4 上成功配置 pi-fancontrol?

我有一台 Raspberry Pi 4,配有 Adafruit 官方外壳风扇,正在运行 Ubuntu 20.10。我已经安装了 snap pi-fancontrol,但无法按照以下说明进行配置https://snapcraft.io/install/pi-fancontrol/ubuntu

$ sudo snap install pi-fancontrol
pi-fancontrol 0.1 from Oliver Grawert (ogra) installed
$ sudo snap connect pi-fancontrol:gpio pi:bcm-gpio-14
error: snap "pi" has no slot named "bcm-gpio-14"

snap list没有显示pisnap 已安装,所以可能这就是问题所在。有关说明,请访问https://snapcraft.io/install/pi/ubuntu

$ sudo snap install pi --beta
error: cannot perform the following tasks:
- Mount snap "pi" (11) (cannot install gadget snap on classic if not requested by the model)

谷歌搜索该错误消息没有找到任何有用的结果。我该怎么办?

答案1

pi-fancontrolsnap 目前在 Ubuntu 桌面上无法使用。

手动覆盖对我来说是有效的。

sudo nano ../../boot/firmware/config.txt

要将阈值设置为 80 摄氏度,请在其中添加以下行:

dtoverlay=gpio-fan,gpiopin=14,temp=80000

Ctrl按+ X,然后Y按 ,再按保存文件Enter

现在重新启动系统,已完成。

相关内容