Touch Cam - A Raspberry Pi Camera

About the project

Touch Cam - A 3D Printed Raspberry Pi Camera

Items used in this project

Hardware components

Raspberry Pi 4 Model B 1GB, 2GB, 4GB or 8GB RAM Raspberry Pi 4 Model B 1GB, 2GB, 4GB or 8GB RAM x 1
Raspberry Pi High-Quality Camera Raspberry Pi High-Quality Camera x 1
5'' 800x480 TFT Raspberry Pi DSI Touchscreen(Compatible with Raspberry Pi 3B/3B+) 5'' 800x480 TFT Raspberry Pi DSI Touchscreen(Compatible with Raspberry Pi 3B/3B+) x 1
16mm telephoto lens 16mm telephoto lens x 1
Touch Sensor Touch Sensor https://amzn.to/3r5LaOB x 1
5V 4020 Fan 5V 4020 Fan https://amzn.to/3pvCReK x 1
Raspberry Pi Heatsink Kit Raspberry Pi Heatsink Kit https://amzn.to/3rcV3KF x 1
SD Card SD Card https://amzn.to/3pwYnzD x 1
M3 30mm Screws M3 30mm Screws https://amzn.to/447IVZI x 1
M3 20mm Screws M3 20mm Screws https://amzn.to/44wjt01 x 1
M2.5 8mm Screws M2.5 8mm Screws https://amzn.to/44wjt01 x 1
M3 Metal Inserts M3 Metal Inserts https://amzn.to/3JHOK8i x 1

View all

Software apps and online services

Raspberry Pi OS Raspberry Pi OS https://www.raspberrypi.com/software/
Autodesk Fusion 360 Autodesk Fusion 360 https://www.autodesk.com/campaigns/education/fusion-360
Ultimaker Cura Ultimaker Cura https://ultimaker.com/software/ultimaker-cura/

Hand tools and fabrication machines

Soldering Kit Soldering Kit https://amzn.to/3O6EmJX x 1
Screwdriver Set Screwdriver Set https://amzn.to/3XyPSAE x 1
3D Printer(3D Printer I Own) 3D Printer(3D Printer I Own) https://amzn.to/3NWbOTf x 1

Story



The Touch Cam is a redesigned and enhanced version of the Pi Cam - A Raspberry Pi Desktop Camera Server, integrating a touch display and touch sensor for an intuitive and interactive user experience. This project combines the power of Raspberry Pi with a custom CAD redesign and an innovative touch interface, allowing users to conveniently capture photos, videos, and time-lapse sequences.

 

Key Features:

1. Touch Display: The Touch Cam features a high-resolution touch display, providing a visual interface for camera controls, image previews, and video playback. With the touch display, users can easily navigate through menus, and view real-time images and videos.

2. Touch Sensor: A touch sensor has been incorporated into the design, enabling seamless operation for capturing photos and starting time-lapse sequences. By simply tapping the touch sensor, users can initiate the desired camera function, whether it's capturing a single photo or starting a time-lapse sequence.

3. Raspberry Pi Desktop Camera Server: The project leverages the computational capabilities of Raspberry Pi to serve as a versatile camera server. The Touch Cam provides a web-based interface accessible from any device connected to the same network, allowing users to remotely control and access the camera's functionalities for capturing photos, recording videos, and creating time-lapse sequences.

4. Cooling System: The Touch Cam is equipped with a 5V cooling fan and heatsinks to ensure efficient temperature regulation. The cooling system prevents the Raspberry Pi from overheating during extended usage, providing reliable performance and stability even in demanding situations.

5. Custom CAD Redesign: The custom CAD redesign not only enhances functionality but also ensures a sleek and functional design, accommodating the touch display, touch sensor, cooling fan, heatsinks, Raspberry Pi HQ camera module and Raspberry Pi within a compact and user-friendly camera enclosure.

6. Easy Setup and Configuration: Setting up the Touch Cam is straightforward, requiring minimal technical expertise. With clear documentation and step-by-step instructions, users can quickly assemble the hardware components, install the necessary software, and start capturing stunning photos and creating time-lapse sequences.

 

In this tutorial, I will provide a detailed explanation of the designing process using Fusion 360 for the Touch Cam project. Fusion 360 is a powerful CAD (Computer-Aided Design) software that enables users to create complex 3D models and designs. By following these steps, you will be able to harness the full potential of Fusion 360 to design and visualize your own projects.

 

Note: Feel free to further customize and expand the project description based on any additional features or functionalities you incorporated into your version of the Touch Cam or any other relevant details you would like to include.



Supplies


Components:

1x Raspberry Pi 4

1x DFRobot Raspberry Pi Touch Display

1x Raspberry Pi HQ Camera Module

1x 16mm Lens or 6mm Lens

1x Touch Sensor

1x 5V 4020 Fan

1x Raspberry Pi Heatsink Kit

1x SD Card

3x M3 30mm Screws

3x M3 20mm Screws

12x M2.5 8mm Screws

6x M3 Metal Inserts

 

Tools:

Soldering Kit

Screwdriver Set

3D Printer(3D Printer I Own)



Step 1: 3D Printing

*Download the following stl files and 3D print them

  1. FrontPannel.stl 
  2. BasePannel.stl


You don't have 3D Printer? Not to worry!

Here I would recommend getting it done from PCBWAY

Why them? They provide the best 3D Printing Service and The quality is just amazing compared to other providers in the market

Get your 3D Printed parts from here https://www.pcbway.com/rapid-prototyping/



Step 2: Assembly Part-1

  • Put the display into front panel with M2.5 Screws.

  • Install the Raspberry Pi Operating System on to SD card using Raspberry Pi Imager Software and insert it into Raspberry Pi.
  • I am using Raspberry Pi OS(32-bit) Recommended by the software.
  • Then put Raspberry pi onto the screen using screws and connect the display cable that came in the box.


Step 3: How to Use Metal Inserts in 3D Printed Parts

  • This step should be done before(Step 20) we installed display and raspberry pi.
  • Using soldering iron I heated the metal inserts and inserted them into my 3D prints.


Step 4: Assembly Part-2

  • Fix the Camera module and fan in their places using M2.5 screws and M3 screws.

  • Connect the camera cable from outside and tuck it inside.


Step 5: Circuit Connections

  • Make the connections as shown for touch sensor input and powering the fan.


Step 6: Assembly Part-3

  • I have used no masking tape to put the sensor.

  • Now assemble everything together using M3 screws and connect the wires.

  • There is a error of 2mm in the design because of which I have to adjust the Ports opening by trimming the plastic. But don't worry for you I have fixed this error in My stl files download from step19.


Step 7: Software Setup

*Copy the below code into Raspberry Pi and save it as Any_File_Name.py or Click to Download

  1. import RPi.GPIO as GPIO
  2. import time
  3. from picamera import PiCamera
  4.  
  5.  
  6. # Set the GPIO mode to BCM
  7. GPIO.setmode(GPIO.BCM)
  8.  
  9.  
  10. # Set up GPIO pin 21 as input
  11. GPIO.setup(21, GPIO.IN)
  12.  
  13.  
  14. # Create an instance of the PiCamera
  15. camera = PiCamera()
  16.  
  17.  
  18. def capture_picture():
  19. # Get the current timestamp for the picture filename
  20. timestamp = time.strftime("%Y%m%d%H%M%S")
  21. image_filename = f"picture_{timestamp}.jpg"
  22.  
  23. # Capture the picture
  24. camera.capture(image_filename)
  25. print(f"Picture captured: {image_filename}")
  26.  
  27.  
  28. try:
  29. # Start the camera preview
  30. camera.start_preview()
  31.  
  32.  
  33. while True:
  34. # Check if GPIO pin 21 is high
  35. if GPIO.input(21) == GPIO.HIGH:
  36. # Call the capture_picture function
  37. capture_picture()
  38.  
  39.  
  40. # Add a small delay to avoid excessive checking
  41. time.sleep(0.1)
  42.  
  43.  
  44. except KeyboardInterrupt:
  45. # Stop the camera preview
  46. camera.stop_preview()
  47.  
  48.  
  49. # Clean up GPIO on program exit
  50. GPIO.cleanup()
  • Open the code in Geany and run it.*If you get any error it might be because of picamera python package not installed, to solve this put the following command in terminal.
  1. pip install picamera
  • Now you can run the code successfully.
  • The functionality of this code is when we run it will start camera preview and when we touch the sensor it will capture the photo and save it to the same directory as the python code.Open the code in Geany and run it.
  • If you get any error it might be because of picamera python package not installed, to solve this put the following command in terminal.pip install picamera


  • I would personally recommend you to use the software from My Previous Pi Cam - a Remote Raspberry Pi Desktop/Camera/Server
  • Follow the instructions from Step 8 of the Pi Cam to set the remote.it platform on raspberry pi for remote access.
  • With this software setup you would be able to access your Raspberry Pi and its camera remotely from any desktop and handhelds, you can also access the camera interface directly from bowser and photos, videos, timelapse directly to your device this makes everything easy and hassle-free, no codes and no further commands.
  • Just after setting up the software bookmark localhost:80 into your Raspberry Pi's Browser and run the browser in full screen mode by clicking the 3dots on right hand side corner.

Raspberry Pi Camera Web App UI Demo



Photos/Video Samples:

Sample Video 1

Sample Video 2

Sample Video 3

Sample Video 4


Click here to refer the full CAD design guide.


I hope you found this tutorial help full, if so please let me know below in the comments. If you have any questions or suggestion, please feel free to drop down below.


Thank You!

See you with another project ;)

Schematics, diagrams and documents

Circuit Diagram

CAD, enclosures and custom parts

Front Pannel

Base Pannel

Code

GitHub Repository

Credits

Photo of mukesh-sankhla

mukesh-sankhla

🧑‍💻Passionate software engineer at Siemens, dedicated to driving digitalization by day. 🧑‍🏭By night, I'm a maker exploring IoT, product design, electronics, CAD, and 3D printing, sharing my projects with the world.

   

Leave your feedback...