This commit is contained in:
Raspi
2025-04-27 15:40:47 +02:00
commit 6a294499d6
19 changed files with 649 additions and 0 deletions

10
First_Try.py Normal file
View File

@@ -0,0 +1,10 @@
import time
import picamera2 as pc
camera = pc.Picamera2()
try:
camera.strat_preview()
time.sleep(10)
camera.stop_preview()
finally:
camera.close()