12 lines
165 B
Python
12 lines
165 B
Python
|
from gpiozero import Button
|
||
|
from signal import pause
|
||
|
|
||
|
def say_hello():
|
||
|
print("Hello!")
|
||
|
|
||
|
button = Button(23)
|
||
|
|
||
|
button.when_pressed = say_hello
|
||
|
|
||
|
pause()
|