Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
tips:rasberry:gpio [2016/05/04 10:14] – created scipio | tips:rasberry:gpio [2016/05/19 09:43] (current) – scipio | ||
---|---|---|---|
Line 2: | Line 2: | ||
* [[http:// | * [[http:// | ||
+ | |||
+ | GPIO numbers (BCM mode) | ||
+ | |||
+ | {{: | ||
+ | |||
+ | physical number (BOARD mode) | ||
+ | |||
+ | {{: | ||
+ | |||
+ | test pin 17 | ||
+ | < | ||
+ | gpio -g mode 17 out | ||
+ | gpio -g write 17 1 | ||
+ | sleep 2 | ||
+ | gpio -g write 17 0 | ||
+ | </ | ||
+ | |||
+ | python | ||
+ | < | ||
+ | import RPi.GPIO as GPIO | ||
+ | import time | ||
+ | |||
+ | GPIO.cleanup() | ||
+ | GPIO.setmode(GPIO.BOARD) | ||
+ | |||
+ | channel=11 | ||
+ | GPIO.setup(channel, | ||
+ | |||
+ | while True: | ||
+ | GPIO.output(channel, | ||
+ | time.sleep(1) | ||
+ | GPIO.output(channel, | ||
+ | time.sleep(1) | ||
+ | | ||
+ | |||
+ | </ |