作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在研究一些 i2c 示例。将它们全部连接在一起,我发现我需要安装 i2c-tools 包,然后使用 raspi-config 启用 I2C 系统。
WiringPi gpio 命令有一个 i2cdetect 命令的快捷方式,运行它会给出
3 周前一切正常,检测到 68。我不明白是什么问题!谁能帮我解决这个问题。
最佳答案
I2C 总线允许将多个设备连接到您的 Raspberry Pi,每个设备都有一个唯一的地址,通常可以通过更改模块上的跳线设置来设置。能够查看哪些设备连接到您的 Pi 以确保一切正常,这非常有用。
为此,值得在终端中运行以下命令来安装 i2c-tools 实用程序。
sudo apt-get install -y python-smbus
sudo apt-get install -y i2c-tools
sudo nano /etc/modules
i2c-bcm2708
i2c-dev
/etc/modprobe.d/raspi-blacklist.conf
的文件。
blacklist spi-bcm2708
blacklist i2c-bcm2708
sudo nano /etc/modprobe.d/raspi-blacklist.conf
/boot/config.txt file
.使用
sudo nano /boot/config.txt
编辑它并添加文字
dtparam=i2c1=on
dtparam=i2c_arm=on
sudo i2cdetect -y 1
sudo i2cdetect -y 0
关于raspberry-pi3 - I2C 没有检测到?硬件或其他方面的问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42904712/
我是一名优秀的程序员,十分优秀!