This repository has been archived on 2025-06-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
compLIB/oldLib/Buzzer.py
Konstantin Lampalzer b5a60438c0
add motor class
2021-01-15 18:22:50 +01:00

23 lines
432 B
Python

import time
import RPi.GPIO as GPIO
from Command import COMMAND as cmd
GPIO.setwarnings(False)
Buzzer_Pin = 17
GPIO.setmode(GPIO.BCM)
GPIO.setup(Buzzer_Pin, GPIO.OUT)
class Buzzer:
def run(self, command):
if command != "0":
GPIO.output(Buzzer_Pin, True)
else:
GPIO.output(Buzzer_Pin, False)
if __name__ == '__main__':
B = Buzzer()
B.run('1')
time.sleep(3)
B.run('0')