Automatic 360 Degrees Panorama Shooting Stand

by hertzgamma in Circuits > Cameras

30940 Views, 205 Favorites, 0 Comments

Automatic 360 Degrees Panorama Shooting Stand

IMG_1551-001.JPG
What I made is a shooting stand that holds a smartphone and turns it around while it captures a 360 degrees panorama! In my case it is an iPod, but it does not matter, anything works.

It has two axles and turns the phone all around just as you would do to shoot the panorama.

All you will need except from the shooting stand is an application that will shoot the panorama for you. Just turn in on and power up the panorama shooting stand, that's it.

Watch the video:



I have entered the 3D print contest, so if you like my creation, please vote for me :)

A few panoramas I made:

http://360.io/qggJC4

http://360.io/RR8XkL


UPDATES:

#1 - 12 July 2013 - Arduino code 03 replaced with 04 version.
#2 - 15 July 2013 - Added new Step 13. Reworked the propulsion system for the horizontal rotation. Now with gears.

Parts and Tools

IMG_1499.JPG
IMG_1550.JPG
Basic materials:
  • Two servos
  • Arduino
  • Plastic material
  • Screws and glue
  • Cables
Tools: 
  • Knife
  • Drill with bits
  • Screw driver
  • Pliers

IPod Stand

IMG_1500.JPG
IMG_1501.JPG
IMG_1502.JPG
IMG_1503.JPG
IMG_1504.JPG
The idea is to fix the device on a holder made of plastic.

I've cut some plastic pieces and glued them to form a pocket for the iPod.

It is restrained from all sides except from the insertion slot.

I have plenty of space for the touchscreen.

Vertical Mover Axle

IMG_1506.JPG
IMG_1508.JPG
IMG_1509.JPG
IMG_1511.JPG
IMG_1513.JPG
IMG_1514.JPG
On one of the sides of the iPod holder is the servo. The other side is held in place by a screw.

This forms the axle for the vertical movement.

Both sides of the axle are carefully aligned.

Balancing the Vertical Part

IMG_1515.JPG
IMG_1517.JPG
To minimise the servo stress, I have balanced the iPod holder and marked the balance spots.

Finishing the Vertical Axle

IMG_1518.JPG
IMG_1519.JPG
IMG_1522.JPG
IMG_1545.JPG
On one side of the iPod holder there is the servo attachment element. I have screwed it with two screws. On the other side I drilled a hole, where the bolt inserts.

Vertical Axle Standing!

IMG_1523.JPG
Here is the finished vertical axle stand. Now it needs a bottom part.

Bottom of Vertical Axle

IMG_1525.JPG
IMG_1527.JPG
The legs of the vertical stand are aligned and held by a new piece of plastic. 

Two screws for each leg are far enough. This could be glued too!

Horizontal Axis Parts

IMG_1528.JPG
My basic parts supply was very restrained. I cam up with s few parts from an old toy. I would use gears for best results. If you're happy to have a 3D printer you could make the gears easily.

Driving Wheel

IMG_1529.JPG
IMG_1530.JPG
IMG_1532.JPG
I had to drill the bigger wheel inside diameter in order to fit it onto the servo metal axis.

Base Wheel

IMG_1533.JPG
IMG_1537.JPG
Then I marked the centre of the base and drilled it.

I attached the small wheel to the base.

Base Spindle

IMG_1536.JPG
IMG_1538.JPG
To allow the base to spin freely I inserted its axis through a plastic box.

The bit that hangs off from the bottom can be cut.

Gears Joined!

IMG_1539.JPG
IMG_1540.JPG
IMG_1541.JPG
IMG_1548.JPG
Using a few cable ties the servo for the base has been attached to the box.

Now both wheels should touch.

UPDATE: Gears

IMG_1565.JPG
IMG_1566.JPG
I've got updated the wheels that rotate the base of the panorama maker.

The two gears that I used have a ratio about 1:3. The bigger gear is at the servo because it rotates only 180 degrees and I need the base to rotate 360. 

Now with the gears there is no slip and the movement is more accurate as well as the whole thing is more robust to different loads and weather conditions like wind for example.

Sort the Cables Out

IMG_1546.JPG
IMG_1547.JPG
Each servo uses three wires.
  • RED: 5V
  • BROWN: GND
  • YELLOW: Data

As in my arduino sketch:
  • Pin 9: Vertical servo yellow wire
  • Pin 10: Horizontal servo yellow wire

Arduino Mount

IMG_15491.jpg
It's a bit tricky here because the cables mess around. I found a good spot on the side, but be careful.

You can always change the servo zero position and avoid the wires from spinning around the axles.

Battery Power Supply

IMG_1555.JPG
All you are left with is to add the power supply.

Code!

code.jpg
// Automatic 360 Degrees Panorama Shooting Stand
// By Pavel Mihaylov
// Edition 04


#include <Servo.h>

Servo myservo;  // create servo object to control a servo
Servo myservo_horizontal;  // a maximum of eight servo objects can be created

int pos = 0;    // variable to store the servo position
int pos_horizontal = 10;
int pos_horizontal_incr;
int pos_horizontal_increment_degrees = 10;
int delay_move = 10;
int delay_move_quicker = 5;
int delay_move_slower = 25;
int delay_photo = 1200;
int initial = 1;


void setup()
{
  myservo.attach(9);  // attaches the servo on pin 9 to the servo object
  myservo_horizontal.attach(10);
}


void loop()
{
 

  if(pos_horizontal > 140)     // goes from 180 degrees to 0 degrees
  {
    while(pos_horizontal > 10)
    {
      pos_horizontal -= 1;
      myservo_horizontal.write(pos_horizontal);              // tell servo to go to position in variable 'pos'
      delay(delay_move_slower);                       // waits 15ms for the servo to reach the position
    }
  }
 
  
  pos_horizontal_incr = pos_horizontal_increment_degrees;
 
  while(pos_horizontal_incr > 0 || pos < 80)     // goes from 180 degrees to 0 degrees
  {
    pos_horizontal_incr -= 1;
    if(pos_horizontal_incr > 0) {
      pos_horizontal += 1;
    }
    pos += 3;
    myservo.write(pos);
    myservo_horizontal.write(pos_horizontal);              // tell servo to go to position in variable 'pos'
    delay(delay_move);                       // waits 15ms for the servo to reach the position
    delay(delay_move);                       // waits 15ms for the servo to reach the position
  
   
  }
 
  delay(delay_photo);
 
  //Rig swings back and forward to say hello to camera man
  if(initial == 1)
  {
    while(initial < 15)
    {
      pos -= 1;
      myservo.write(pos);
      initial += 1;
      delay(delay_move_slower);
    }
    while(initial > -15)
    {
      pos += 1;
      myservo.write(pos);
      initial -= 1;
      delay(delay_move_slower);
    }
    while(initial < 22)
    {
      pos -= 1;
      myservo.write(pos);
      initial += 1;
      delay(delay_move_slower);
    }
    while(initial > 1)
    {
      pos += 1;
      myservo.write(pos);
      initial -= 1;
      delay(delay_move_slower);
    }
   initial = 2;
   delay(delay_photo);
   delay(delay_photo);
  }
 
  //Now shoot begins

  for(pos = 80; pos < 125; pos+=1)     // goes from 180 degrees to 0 degrees
  {                               
    myservo.write(pos);              // tell servo to go to position in variable 'pos'
    delay(delay_move);                       // waits 15ms for the servo to reach the position
  }
  delay(delay_photo);
 

  for(pos = 125; pos < 170; pos+=1)     // goes from 180 degrees to 0 degrees
  {                               
    myservo.write(pos);              // tell servo to go to position in variable 'pos'
    delay(delay_move);                       // waits 15ms for the servo to reach the position
  }
  delay(delay_photo);
 
 
  for(pos = 170; pos > 45; pos -= 1)  // goes from 0 degrees to 180 degrees
  {                                  // in steps of 1 degree
    myservo.write(pos);              // tell servo to go to position in variable 'pos'
    delay(delay_move);                       // waits 15ms for the servo to reach the position
  }
  delay(delay_photo);
 
 
  for(pos = 45; pos > 10; pos-=1)     // goes from 180 degrees to 0 degrees
  {                               
    myservo.write(pos);              // tell servo to go to position in variable 'pos'
    delay(delay_move);                       // waits 15ms for the servo to reach the position
  }
  delay(delay_photo);

 
 
}

Done! Now in 3D

design.jpg
If I could, I would do the same panorama shooting stand out of 3D printed parts.

Why?
  • Quicker
  • Neater
  • Easy to share and reproduce
  • Good ideas spread for everyone to use them!
Unfortunately I have not got a 3D printer, neither I have any access to such a machine. 

That's why I have put up plans here so maybe someone tries and tells me how it works!

https://tinkercad.com/things/ax63XjOrBEn