Camera Tilt System Assembly Guide

Introduction

The Camera Tilt System allows any of our three cameras, the HD Low-Light USB Camera, Raspberry Pi Camera, and Analog Low-light Camera, to tilt up and down inside a watertight enclosure. It fits on the front of the 4″ Series electronics tray but can be used in other settings as well.

3D Printer Settings

The Camera Tilt System parts are 3D printable. Here are the printer settings that we used with a Lulzbot Taz 5 3D printer and Simplify3D slicing software.

CAMTILT-PRINTER-SETTINGS-R1.fff

Parts and Tools

You Will Need

You will also need:

  • #000 Phillips Screwdriver (or similar small size)
  • 1.5 mm Hex Driver
  • Wire Cutters

Low-Light HD USB Camera

Attach the servo mount to the front tray of the Electronics Tray using 2 of the M2x8 screws.

HD-cam-base

Open the servo box and remove the servo arm that comes installed on the servo using a #000 Philips screwdriver. Place the screw that held on that servo arm in a safe place.

HD-cam-servo-screw

Install the servo on the servo mount using 2 of the M2x8 screws.

HD-cam-servo-mounted

Install the camera mount onto the servo.

a. Place the camera mount on the servo horizontally and then rotate it as far counter-clockwise as possible.

HD-cam-dome-mounted
HD-cam-dome-rotated

b. If the camera mount is now approximately vertical, reinstall the servo arm screw. If it is not vertical, remove it and place it as near vertical as possible then reinstall the servo arm screw.

HD-cam-mount-screw

Attach the camera to the camera mount using four M2x8 screws.

HD-cam-camera-secured

Raspberry Pi Camera

Attach the servo mount to the front tray of the Electronics Tray using 2 of the M2x8 screws.

servo-mount-attached

Open the servo box and remove the servo arm that comes installed on the servo using a #000 Philips screwdriver. Place the screw that held on that servo arm in a safe place.

servo-arm-removal

Install the servo on the servo mount using 2 of the M2x8 screws.

servo-installed-empty

Install the servo arm onto the servo.

a. Grab the servo arm shown below from the bag that came in the servo box.

servo-arm

b. Trim off the ends of the servo arm so that only one screw hole remains on both sides.

servo-arm-cut

c. Place the servo arm back on the servo horizontally and then rotate it as far clockwise as possible.

servo-arm-install

d. If the servo arm is now approximately vertical, reinstall the servo arm screw. If it is not vertical, remove it and place it as near vertical as possible then reinstall the servo arm screw.

servo-arm-cut-installed

Install the camera mount onto the servo arm using the self-tapping screws that came in the servo box. Keep the servo arm in the vertical position from the last step and have the orientation match the picture below.

pi-cam-mount-installed

Trim the threads that stick out of the back of the camera mount. Be sure to wear safety glasses. Trim the top screw first then rotate the mount so the bottom screw is on top, then trim the second screw.

annotated-pi-cam-cutting-screws

Attach the camera to the camera mount using M2x8 screws.

pi-cam-installed-back

Low-Light Analog Camera

Attach the servo mount to the front tray of the Electronics Tray using 2 of the M2x8 screws.

servo-mount-attached

Open the servo box and remove the servo arm that comes installed on the servo using a #000 Philips screwdriver. Place the screw that held on that servo arm in a safe place.

servo-arm-removal

Install the servo on the servo mount using 2 of the M2x8 screws.

servo-installed-empty

Install the servo arm onto the servo.

a. Grab the servo arm shown below from the bag that came in the servo box.

servo-arm

b. Trim off the ends of the servo arm so that only one screw hole remains on both sides.

servo-arm-cut

c. Place the servo arm back on the servo horizontally and then rotate it as far clockwise as possible.

servo-arm-install

d. If the servo arm is now approximately vertical, reinstall the servo arm screw. If it is not vertical, remove it and place it as near vertical as possible then reinstall the servo arm screw.

servo-arm-cut-installed

Install the camera mount onto the servo arm using the self-tapping screws that came in the servo box. Keep the servo arm in the vertical position from the last step and have the orientation match the picture below.

analog-cam-mount

Trim the threads that stick out of the back of the camera mount. Be sure to wear safety glasses. Trim the top screw first then rotate the mount so the bottom screw is on top, then trim the second screw.

annotated-analog-cam-screw-removal

Attach the camera to the camera mount using M2x8 screws. The screw on the lens holder should be on the top side.

analog-cam-back
analog-cam-front

Example Code

Arduino

This example uses the Arduino Servo library to control the servo. This provides an update rate of 50 Hz and can use any pin on the Arduino board as the “servoPin”.

If you’ve never used Arduino before, we suggest checking out some tutorials!

#include 

byte servoPin = 9;
Servo servo;

void setup() {
  servo.attach(servoPin);

  servo.writeMicroseconds(1500); // send "neutral" signal to the servo
}

void loop() {
  int signal = 1700; // Set signal value, which should be between 1100 and 1900

  servo.writeMicroseconds(signal); // Send signal to the servo
}