树莓派上使用python控制gpio

  • 安装python库

apt-get install python-dev python-rpi.gpio

  • 示例

[codesyntax lang="python"]

import RPi.GPIO as GPIO
import time
import cpu_temp

channel = 18

def init():
	GPIO.setmode(GPIO.BCM)

	GPIO.setup(channel, GPIO.OUT)

def on():
	GPIO.output(channel, GPIO.HIGH)

def off():
	GPIO.output(channel, GPIO.LOW)

def clean():
	GPIO.cleanup()

init()

on()
time.sleep(2);
off()

while 1 < 2:
	print cpu_temp.get_cpu_temp()
	if(cpu_temp.get_cpu_temp() > 42):
		on()
	else:
		off()

	time.sleep(3)

clean()

[/codesyntax]

  • 参考

不知道你的树莓派的GPIO接口分布图?请看这里。

不会用python?感觉到这里来补习一下吧?

想把这段代码添加到Linux服务中,然后开机启动?很简单,亲,请点击这里。

查看原文:http://surenpi.com/2015/03/16/%e6%a0%91%e8%8e%93%e6%b4%be%e4%b8%8a%e4%bd%bf%e7%94%a8python%e6%8e%a7%e5%88%b6gpio/

你可能感兴趣的:(树莓派上使用python控制gpio)