James Martel
Published © LGPL

What Do I Build Next? A Raspberry Pi 4 HQ Camera with Screen

Since announced in 2020, I wanted to build a HQ Camera using a Raspberry Pi 4 but all projects left out the preview screen

IntermediateFull instructions provided4 hours1,930
What Do I Build Next? A Raspberry Pi 4 HQ Camera with Screen

Things used in this project

Hardware components

Raspberry Pi 4 Model B
Raspberry Pi 4 Model B
×1
Adafruit HQ Camera mount
×1
Adafruit HQ Pro Mount
×1
Amazon Web Services Tripod
×1
Adafruit 16mm Telephoto Lens
×1
Adafruit 6mm Wide Angle lens
×1
Amazon Web Services Raspberry Pi 4 case with 3.5" screen
×1
Amazon Web Services 32GB SD card
×1
Adafruit Raspberry Pi Adapte
×1
Amazon Web Services Micro USB to USB-C adapter
×1

Software apps and online services

Raspbian
Raspberry Pi Raspbian
Raspberry Pi Imager software
SD Formatter
Putty
RPi Camera Viewer for Windows PC
RPi Camera Viewer for Android
Picamera for Raspberry Pi

Hand tools and fabrication machines

Ryobi cordless hand drill
Assorted Drill bits
Nylon standoffs, screws, and nuts

Story

Read more

Code

Pigame button display picture

Python
from pigame import PiTft
import os, sys
pitft=PiTft()
try:
    while True:
        if pitft.Button1:
            os.system("sudo fbi -T 2 -a -noverbose -d /dev/fb1 ~pi/adapiluv320x240.jpg; sleep 2; sudo pkill fbi")
        if pitft.Button2:
            pass
        if pitft.Button3:
            pass
        if pitft.Button4:
            pass
except KeyboardInterrupt:
    del(pitft)
    sys.exit(0)

Credits

James Martel

James Martel

47 projects • 59 followers
Self taught Robotics platform developer with electronics background

Comments