我已经在我的 Raspberry 上安装了 Raspbian 并添加了:
/etc/rc.local:
chown /dev/ttyUSB0 #to allow current user to use 3G modem
/etc/sudoers:
raspbian ALL=NOPASSWD: ALL
对于自动登录:
1:2345:respawn:/sbin/getty --autologin raspbian --noclear 38400 tty1
在我可以使用 Python 中的 GPIO 写入 GPIO 引脚之前。
现在,当我尝试使用 sudo 运行我的 Python 脚本时,我收到一个异常,其中写入我无法访问 /dev/mem
我试图将“raspbian”用户添加到“kmem”组,但不起作用。
我试图在没有密码的情况下删除自动登录和 sudo,但也不起作用。
我尝试使用 C 中的 WiringPi,并使用 WiringPi 工作。
请帮助我找到从 python 使用 GPIO 的解决方案。