mirror of
https://github.com/KevinMidboe/python-gpiozero.git
synced 2025-10-29 17:50:37 +00:00
Makes it much easier to test things - no copying'n'pasting just run the examples straight from the dir (after wiring stuff up)
19 lines
432 B
Python
19 lines
432 B
Python
from gpiozero import Button
|
|
from picamera import PiCamera
|
|
from datetime import datetime
|
|
from signal import pause
|
|
|
|
left_button = Button(2)
|
|
right_button = Button(3)
|
|
camera = PiCamera()
|
|
|
|
def capture():
|
|
datetime = datetime.now().isoformat()
|
|
camera.capture('/home/pi/%s.jpg' % datetime)
|
|
|
|
left_button.when_pressed = camera.start_preview
|
|
left_button.when_released = camera.stop_preview
|
|
right_button.when_pressed = capture
|
|
|
|
pause()
|