<15$ 360°Cam-Rotator For Google Cardboard (Cellphone)Camera / 360°Cam-Rotator Für Google Cardboard (Handy)Kamera 3D Printer Model

Author: @
License: CC BY-NC-SA
File formats: stl,fzz,ino
Download type: zip
Size:130.9KB

The file '<15$ 360°Cam-Rotator For Google Cardboard (Cellphone)Camera / 360°Cam-Rotator Für Google Cardboard (Handy)Kamera 3D Printer Model' is (stl,fzz,ino) file type, size is 130.9KB.

Summary

https://youtu.be/1V2yYG1C-70

I printed a Google Cardboard V2 VR glasses, and was excited what even with an old SGS 7 is already possible. Now I wanted to make 360 ​​° images with the "Google Cardboard Camera" app and I think a lot on how unfavorable it affects the pictures when you turn yourself around the axis.

So I built a cell phone rotator with which you can make nice 360 ​​° shots!

Simply install the Cardboard Camera app, insert the phone, start recording, and then hold the button until the phone has turned ~ 370 °(32sec/stops automatically).!
Release the button and you're done ...

I built the upper part in a modular way. This makes it easy to create holders for other cameras.

Charging is via 5V micro USB!

Shopping List:

Ich habe mir eine Google Cardboard V2 VR Brille gedruckt, und war begeistert was selbst mit einem alten SGS 7 schon möglich ist. Nun wollte ich 360° Bilder mit der "Google Cardboard Camera" App machen und mir viel auf wie ungünstig es sich auf die Bilder auswirkt wenn man sich selbst um die eigene Achse dreht.

Also habe ich einen Handy Rotator gebaut mit dem man schicke 360° Aufnahmen machen kann...

Einfach Cardboard Camera App installieren, das Handy einlegen, Aufnahme starten, und dann den Knopf gedrückt halten bis das Handy sich um ~370° (32Sek./stoppt automatisch) gedreht hat!
Knopf los lassen und fertig...

Den oberen Teil habe ich modular aufgebaut. Damit es leicht ist Halter für andere Kameras zu erstellen.

Geladen wird über 5V micro USB!

Einkaufsliste:

I have the sketch from this page: https://arduino-info.wikispaces.com/SmallSteppers
So I just adapted the code for this project. So no rocket science

Den Sketch habe ich von dieser Seite: https://arduino-info.wikispaces.com/SmallSteppers
Ich habe den Code für dieses Projekt also nur angepasst. Also kein Hexenwerk

Sketch:

/ YourDuino.com Example Software Sketch
Small Stepper Motor and Driver V1.5 06/21/17
http://www.yourduino.com/sunshop/index.php?l=product_detail&p=126
/
-----( Import needed libraries )-----*/

include

/-----( Declare Constants, Pin Numbers )-----/
//---( Number of steps per revolution of INTERNAL motor in 4-step mode )---

define STEPS_PER_MOTOR_REVOLUTION 32

//---( Steps per OUTPUT SHAFT of gear reduction )---

define STEPS_PER_OUTPUT_REVOLUTION 34 * 64 //2048

/-----( Declare objects )-----/
// create an instance of the stepper class, specifying
// the number of steps of the motor and the pins it's
// attached to

//The pin connections need to be pins 8,9,10,11 connected
// to Motor Driver In1, In2, In3, In4

// Then the pins are entered here in the sequence 1-3-2-4 for proper sequencing
Stepper small_stepper(STEPS_PER_MOTOR_REVOLUTION, 8, 10, 9, 11);

/-----( Declare Variables )-----/
int Steps2Take;

void setup() /----( SETUP: RUNS ONCE )----/
{
// Nothing (Stepper Library sets pins as outputs)
}/--(end setup )---/

void loop() /----( LOOP: RUNS CONSTANTLY )----/
{
Steps2Take = - STEPS_PER_OUTPUT_REVOLUTION ; // Rotate CCW 1 turn
small_stepper.setSpeed(150); // 150 a good max speed!
small_stepper.step(Steps2Take);
delay(6000);

}/ --(end main loop )-- /

/ ( THE END ) /

360PhoneStepper.stl 292.9KB
360PhoneStepper_18650.stl 133.0KB
360PhoneStepper_handle.stl 174.5KB
360PhoneStepper_holder.stl 253.1KB
360PhoneStepper_pin1.stl 45.0KB
360PhoneStepper_pin2.stl 47.6KB
360PhoneStepper_top_Plate.stl 124.2KB
360PhoneStepper_top_Plate2.stl 235.2KB
360_Phone_rotator.fzz 53.5KB
Handy360byLTO.ino 1.4KB