Compare commits

..

2 commits

Author SHA1 Message Date
L3D
2c13e3fb8c
Adding venv 2024-03-24 22:27:47 +01:00
L3D
ebde2bb06a
detect buzzer is pressed 2024-03-24 22:27:13 +01:00
3 changed files with 12 additions and 0 deletions

3
.gitignore vendored
View file

@ -34,3 +34,6 @@ tags
# .nfs files are created when an open file is removed but is still being accessed
.nfs*
# venv
python/
venv/

8
detect_buzz.py Normal file
View file

@ -0,0 +1,8 @@
#!/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!")

1
requirements.txt Normal file
View file

@ -0,0 +1 @@
gpiozero