Go to advanced search

by MaggPi
Sun Sep 25, 2016 7:01 am
Forum: Camera board
Topic: Camera module not recognised by raspberry pi
Replies: 9
Views: 1327

Re: Camera module not recognised by raspberry pi

I was able to get my camera to work with raspistill then when I tried the following Python code (similar to yours) ----------------------- from picamera import PiCamera from time import sleep camera = PiCamera() camera.start_preview() sleep(10) camera.stop_preview() ------------------------- I get a...

Go to advanced search