标签:code port rpi.gpio log span time logs while style
import RPi.GPIO as GPIO import time GPIO.setmode(GPIO.BCM) GPIO.setup(25,GPIO.OUT) while True: GPIO.output(25,GPIO.HIGH) time.sleep(0.5) GPIO.output(25,GPIO.LOW) time.sleep(0.5)
标签:code port rpi.gpio log span time logs while style
原文地址:http://www.cnblogs.com/codespark/p/7191097.html