树莓派上使用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服务中,然后开机启动?很简单,亲,请点击这里。

你可能感兴趣的:(python,树莓派,GPIO)