知乎上有个提问,问树莓派可以做那些有趣的事情,我写了一个回答,今天看已经突破80万的阅读量了,这里把当时的回答写出了,供树莓派er参考好玩的项目。
首先是知乎链接
能用树莓派干些什么有趣的事情? - 李新的回答 - 知乎...
阅读全文
echo "# Disable the PWR LED" | sudo tee -a /boot/config.txtecho "dtparam=pwr_led_trigger=none" | sudo tee -a /boot/config.txtecho "dtparam=pwr_led_activelow=off" | sudo tee -a /boot/config.txt
echo "# Disable Ethernet LEDs" | sudo tee -a /boot/config.txtecho "dtparam=eth_led0=14" | sudo tee -a /boot/config.txtecho "dtparam=eth_led1=14" | sudo tee -a /boot/config.txt
echo "dtoverlay=pi3-disable-wifi" | sudo tee -a /boot/config.txt
echo "dtoverlay=pi3-disable-bt" | sudo tee -a /boot/config.txt
echo "blacklist snd_bcm2835"> /etc/modprobe.d/alsa-blacklist.conf