360° Servo Camera Protector & 3D-Printed Case for Sphero RVR

by Rhythm_Meghpara in Workshop > 3D Printing

842 Views, 11 Favorites, 0 Comments

360° Servo Camera Protector & 3D-Printed Case for Sphero RVR

Learn Coding Hands-On: Redesigned Robot Car for Robotics Education!
IMG_20241106_114010.jpg
Screenshot 2024-12-22 151846.png
Screenshot 2024-12-22 151821.png

This project introduces an advanced and compact solution designed to enhance the functionality and durability of the Sphero RVR robot. At its core is a 360-degree rotating servo mechanism equipped with a mounted camera, enabling seamless panoramic viewing for navigation, surveillance, or exploration tasks. To address potential risks during operation, such as collisions or malfunctions, the design incorporates a robust camera protection system that safeguards the camera from direct impacts, ensuring its longevity even in challenging environments.

Additionally, the project features a custom 3D-printed enclosure that houses all components in a streamlined and efficient design. This compact case not only protects the internal electronics but also maintains a sleek and professional aesthetic. Together, these innovations provide a reliable, all-in-one solution for enhancing the Sphero RVR's capabilities while ensuring durability and ease of use.

Supplies

WhatsApp Image 2024-12-20 at 5.07.09 PM.jpeg

Sphero RVR

Battery

Arduino

Motors

3D-printed parts

Sensors

Circuitry components

Nuts and bolts

Basic tools

Innovative 3-Part Rotating Mechanism With Integrated Protection

Mechanism
Screenshot 2024-12-23 165904.png
Screenshot 2024-12-23 165709.png
Screenshot 2024-12-23 170407.png
Screenshot 2024-12-23 165926.png
Screenshot 2024-12-23 165941.png
Screenshot 2024-12-23 170149.png

The core of this design revolves around a three-part rotating mechanism that ensures seamless movement and robust protection. The system consists of two outer locking components that securely enclose and stabilize the structure, while the central part—driven by a servo motor—enables smooth 360-degree rotation. This configuration not only provides precise control over the camera's movement but also offers enhanced protection against external impacts, ensuring the camera and internal components remain safe during operation. The interlocking design of the outer parts ensures structural integrity, while the servo-driven central mechanism delivers reliable and efficient rotation for optimal functionality.

Optimized Shaft Clearance for Uninterrupted Rotation

Screenshot 2024-12-23 173607.png

The system operates effectively but occasionally experiences jamming due to the bolt interfering with the base plate or minor loads on the motor shaft. To address this, a precision cutout was introduced at the center of the motor shaft, providing additional clearance. This modification eliminates contact between the shaft and the bolt, ensuring uninterrupted, smooth rotation and preventing any binding or obstruction with the base plate, thereby enhancing overall performance and reliability.

Precision Bolt Integration for Seamless Design and Functionality

Screenshot 2024-12-24 180700.png
Screenshot 2024-12-24 180613.png
Screenshot 2024-12-24 180516.png

This section highlights the meticulous design process to ensure all nuts and bolts are fully concealed within the 3D-printed components. By carefully calculating the bolt hole depths, each fastener is securely embedded, maintaining a clean and polished exterior while ensuring structural integrity. This approach not only enhances the aesthetic appeal of the design but also provides sufficient depth for bolts to sit flush, ensuring a seamless and professional finish that aligns with both functional and design requirements.

Exploded View

Exploded view
Screenshot 2024-12-24 172747.png

Below is a list of key components:

  1. LiDAR Sensor
  2. Rear-Facing Camera
  3. 3D-Printed Structural Parts
  4. Servo Motor
  5. Main Control Circuit

Final Product Design Showcase

Screenshot 2024-12-22 151846.png
Screenshot 2024-12-23 164600.png
Screenshot 2024-12-23 164509.png

The final assembled product features a sleek, compact design with seamless integration of the 360-degree rotating camera mechanism and 3D-printed protective enclosure, combining functionality, durability, and aesthetic appeal.

Arduino Circuit With Servo Motor in Tinkercad | Step-by-Step Tutorial and Code

Code
Screenshot 2024-12-23 233625.png

This video demonstrates how to build an Arduino circuit with a servo motor in Tinkercad, including the complete Arduino code for the project.

Code:-

#include <Servo.h>

int pos = 0;

Servo servo_9;

void setup()

{

servo_9.attach(9, 500, 2500);

}

void loop()

{

for (pos = 0; pos <= 180; pos += 1) {

servo_9.write(pos);

delay(15);

}

for (pos = 180; pos >= 0; pos -= 1) {

servo_9.write(pos);

delay(15);

}

}

3D-Printed Waste Parts From All Experiments

WhatsApp Image 2024-12-20 at 5.07.23 PM.jpeg

Final Robot Assembly Parts

WhatsApp Image 2024-12-20 at 5.07.26 PM (3).jpeg
WhatsApp Image 2024-12-20 at 5.07.26 PM (2).jpeg
WhatsApp Image 2024-12-20 at 5.07.26 PM (1).jpeg
WhatsApp Image 2024-12-20 at 5.07.26 PM.jpeg
WhatsApp Image 2024-12-20 at 5.07.25 PM (1).jpeg
WhatsApp Image 2024-12-20 at 5.07.25 PM.jpeg
WhatsApp Image 2024-12-20 at 5.07.24 PM.jpeg
WhatsApp Image 2024-12-20 at 5.07.23 PM (1).jpeg

Complete Robot CAD Assembly Files

Report

his report documents the complete design journey, from the initial prototype to the final optimized version, highlighting key challenges, improvements, and innovative solutions.

Downloads