'debug/ring.py' hinzufügen

This commit is contained in:
Kaisa Marysia 2021-02-03 19:51:59 +01:00
parent d495efa334
commit a55c7a54d9

25
debug/ring.py Normal file
View file

@ -0,0 +1,25 @@
#!/usr/bin/env python3
import RPi.GPIO as GPIO
import time
#import os
#import sys
import re
#import subprocess
GPIO.setmode(GPIO.BCM)
GPIO.setup(26,GPIO.IN, pull_up_down = GPIO.PUD_UP)
GPIO.setup(21,GPIO.OUT)
GPIO.setup(20,GPIO.OUT)
GPIO.setup(6,GPIO.IN, pull_up_down = GPIO.PUD_UP)
GPIO.setmode(GPIO.BCM)
GPIO.setup(17, GPIO.OUT)
def wecker():
GPIO.output(17, 1)
time.sleep(0.08)
GPIO.output(17, 0)
time.sleep(0.06)
while True:
wecker()