blob: 8555184888f7b6276063d1fd054debee28797068 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#!/usr/bin/env python
import RPi.GPIO as GPIO
import time
# Set #17 as buzzer pin
BeepPin = 17
def print_message():
print("========================================")
print ("| Beep |")
print ("| ------------------------------ |")
print ("| Buzzer connect to GPIO0 |")
print ("| |")
print ("| Make Buzzer beep |")
print ("| |")
print ("| |")
print ("========================================\n")
print 'Program is running...'
print 'Please press Ctrl+C to end the program...'
raw_input ("Press Enter to begin\n")
def setup():
# Set the GPIO modes to BCM Numbering
GPIO.setmode(GPIO.BCM)
# Set LedPin's mode to output,
# and initial level to High(3.3v)
GPIO.setup(BeepPin, GPIO.OUT, initial=GPIO.HIGH)
def main():
print_message()
while True:
# Buzzer on (Beep)
print 'Buzzer On'
GPIO.output(BeepPin, GPIO.LOW)
time.sleep(0.1)
# Buzzer off
print 'Buzzer Off'
GPIO.output(BeepPin, GPIO.HIGH)
time.sleep(0.1)
def destroy():
# Turn off buzzer
GPIO.output(BeepPin, GPIO.HIGH)
# Release resource
GPIO.cleanup()
# If run this script directly, do:
if __name__ == '__main__':
setup()
try:
main()
# When 'Ctrl+C' is pressed, the child program
# destroy() will be executed.
except KeyboardInterrupt:
destroy()
|