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...