Use Raspberry Pi Camera with Raspberry Pi Zero w

Описание к видео Use Raspberry Pi Camera with Raspberry Pi Zero w

In this video I will show you how to use Raspberry Pi Camera with Raspberry Pi Zero w.


Command used in this video:
raspistill -o cam.jpg


Python code used in this video:

from time import sleep
from picamera import PiCamera

camera = PiCamera()
camera.resolution = (1024, 768)
camera.start_preview()
Camera warm-up time
sleep(2)
camera.capture('foo.jpg')


Official site for picamera:
https://picamera.readthedocs.io/en/re...


For future updates follow us on facebook:   / sparklers2018  

Комментарии

Информация по комментариям в разработке