9 lines
216 B
Python
9 lines
216 B
Python
|
#!/usr/bin/env python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# See https://gpiozero.readthedocs.io/en/stable/api_input.html
|
||
|
from gpiozero import Button
|
||
|
buzzer = Button(16)
|
||
|
|
||
|
button.wait_for_press()
|
||
|
print("The button was pressed!")
|