(9)安装GPIO库

参考:http://blog.csdn.net/xdw1985829/article/details/39580401
树莓派内核中已经自带了GPIO的驱动,所以我们可以直接通过第三方写好的库函数来完成对GPIO接口的控制。

wringPi官网地址:http://wiringpi.com/
wringPi适合具有C语言基础,在解除树莓派之前已经接触过单片机或者嵌入式开发的人群。而python GPIO库则很适合入门人员。
安装wringPi:
1)安装git:pacman -S git
2)git clone git://git.drogon.net/wringPi
3)cd wringPi &&  ./build
4)测试gpio readall,输出信息如下


类似的python控制GPIO的库为RPi.GPIO,下载地址为http://sourceforge.net/projects/raspberry-gpio-python/files/RPi.GPIO-0.5.11.tar.gz
安装RPi.GPIO库:
1)wget  http://sourceforge.net/projects/raspberry-gpio-python/files/RPi.GPIO-0.5.11.tar.gz
2)tar zxf RPi.GPIO-0.5.11.tar.gz
3)cd RPi.GPIO-0.5.11
4)python setup.py install

你可能感兴趣的:(树莓派Raspberry,B+)