這篇文章主要介紹raspberry model b如何安裝ds323模塊,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
成都創(chuàng)新互聯(lián)成立于2013年,我們提供高端網(wǎng)站建設(shè)、成都網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì)公司、網(wǎng)站定制、營(yíng)銷型網(wǎng)站、微信平臺(tái)小程序開(kāi)發(fā)、微信公眾號(hào)開(kāi)發(fā)、seo優(yōu)化服務(wù),提供專業(yè)營(yíng)銷思路、內(nèi)容策劃、視覺(jué)設(shè)計(jì)、程序開(kāi)發(fā)來(lái)完成項(xiàng)目落地,為展覽展示企業(yè)提供源源不斷的流量和訂單咨詢。
系統(tǒng)版本為 jessie 實(shí)測(cè)可用
1. 開(kāi)啟i2c接口,并加載ds3231支持
1)編輯/boot/config.txt在末尾加入
dtparam=i2c_arm=on
dtoverlay=i2c-rtc,ds3231
2)添加到模塊文件
編輯 /etc/modules 添加以下內(nèi)容
snd-bcm2835
i2c-bcm2835
i2c-dev
rtc-ds1307
2.創(chuàng)建hwclock service服務(wù)文件,并使能服務(wù)
1)創(chuàng)建/lib/systemd/system/hwclock-start.service 并寫入內(nèi)容:
cat > /lib/systemd/system/hwclock-start.service << EOF [Unit] Description=Set time from RTC on startup After=network.target [Service] Type=oneshot ExecStart=/sbin/hwclock -s TimeoutSec=0 [Install] WantedBy=multi-user.target EOF
2)創(chuàng)建/lib/systemd/system/hwclock-stop.service 并寫入內(nèi)容:
cat > /lib/systemd/system/hwclock-stop.service << EOF [Unit] Description=Synchronise Hardware Clock to System Clock DefaultDependencies=no Before=shutdown.target [Service] Type=oneshot ExecStart=/sbin/hwclock --systohc [Install] WantedBy=reboot.target halt.target poweroff.target EOF
3)使能服務(wù):
systemctl enable hwclock-start hwclock-stop
4)最后要?jiǎng)h除 fake-hwclock 這個(gè)假硬件時(shí)鐘才能使ds3231工作
sudo dpkg --purge fake-hwclock
3.安裝i2c工具,查看i2c設(shè)備
1)安裝:
apt-get install i2c-tools
2)安裝完成后重啟:
reboot
3)查看i2c設(shè)備
sudo i2cdetect -y -a 1
4)再次重啟使模塊生效:reboot
以上是“raspberry model b如何安裝ds323模塊”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!