1.Version vom Script erstellt.
This commit is contained in:
parent
79d378b282
commit
bf433a64e9
57
gpio_test.py
Normal file
57
gpio_test.py
Normal file
@ -0,0 +1,57 @@
|
||||
import RPi.GPIO as GPIO
|
||||
import time
|
||||
|
||||
GPIO.setmode(GPIO.BCM)
|
||||
|
||||
GPIO.setup(14, GPIO.OUT)
|
||||
GPIO.setup(15, GPIO.OUT)
|
||||
GPIO.setup(18, GPIO.OUT)
|
||||
GPIO.setup(23, GPIO.OUT)
|
||||
GPIO.setup(24, GPIO.OUT)
|
||||
GPIO.setup(25, GPIO.OUT)
|
||||
GPIO.setup(8, GPIO.OUT)
|
||||
GPIO.setup(7, GPIO.OUT)
|
||||
|
||||
for i in range(5):
|
||||
GPIO.output(14, GPIO.HIGH)
|
||||
time.sleep(1)
|
||||
GPIO.output(15, GPIO.HIGH)
|
||||
time.sleep(1)
|
||||
GPIO.output(18, GPIO.HIGH)
|
||||
time.sleep(1)
|
||||
GPIO.output(23, GPIO.HIGH)
|
||||
time.sleep(1)
|
||||
GPIO.output(24, GPIO.HIGH)
|
||||
time.sleep(1)
|
||||
GPIO.output(25, GPIO.HIGH)
|
||||
time.sleep(1)
|
||||
GPIO.output(8, GPIO.HIGH)
|
||||
time.sleep(1)
|
||||
GPIO.output(7, GPIO.HIGH)
|
||||
time.sleep(1)
|
||||
GPIO.output(14, GPIO.LOW)
|
||||
time.sleep(1)
|
||||
GPIO.output(15, GPIO.LOW)
|
||||
time.sleep(1)
|
||||
GPIO.output(18, GPIO.LOW)
|
||||
time.sleep(1)
|
||||
GPIO.output(23, GPIO.LOW)
|
||||
time.sleep(1)
|
||||
GPIO.output(24, GPIO.LOW)
|
||||
time.sleep(1)
|
||||
GPIO.output(25, GPIO.LOW)
|
||||
time.sleep(1)
|
||||
GPIO.output(8, GPIO.LOW)
|
||||
time.sleep(1)
|
||||
GPIO.output(7, GPIO.LOW)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user