Introduction: Product Turntable - NodeMCU

About: " Work until you no longer have to introduce yourself " Show some love on Instagram @makers_bee & Motivate me on YouTube @MakersBee

Hello, Makers!!

Product Turntable is a trend that's just starting to take off when it comes to landscapes and action shots but for product photography, 360-degree photography is something that's a little more common. By capturing a shot of a product from a variety of angles, a video can be compiled that allows those who are viewing the product to either move it around manually (if the video is interactive) or watch a short sequence where the product spins around automatically.

If you do a lot of basic product photography, you might want to check out this Instructable. In this, you’ll learn how to build and operate your own 180° product photography turntable, and it’ll only cost you 5$.

YES!! This Instructable is quite simple to develop using all reusable things.

Step 1: Things You Need

  1. A4 White Sheets
  2. Old CD's
  3. Pen/Pencil
  4. Scissors
  5. Fevicol
  6. CardBoard
  7. Glue Stick

Step 2: Components Needed

  1. NodeMCU
  2. BreadBoard
  3. Servo Motor
  4. Micro USB Cable
  5. 5v Adapter

Step 3: #Mark #Cut #Glue

  1. Clean the CD with a piece of cloth, so that there is no residue on it.
  2. Take the CD and place it on the color paper, Outline using pencil or markers.
  3. Then glue the CD and paste it over the color paper (make sure you spread the glue evenly while sticking them together).
  4. At last cut out the remaining portion of the paper.
  5. Similarly, turn back the CD and glue it to the white paper.
  6. Repeatthe same procedure using another CD.

We have prepared two CD's, one is base disc and another is a rotating disc.

Step 4: Measurements

  1. Place the servo motor on the base disc and place the rotating disc over the servo arm.
  2. Now, measure the distance between two discs.
  3. I got it as approximately 3cm.

Step 5: Design Lateral Body

  1. After you measure the distance between two discs, cut cardboard with a width lesser than the distance between two discs.
  2. I took a width measurement of 2.5cm.
  3. Make a square cut in the cardboard to let the supply wire to power-up the device.

Step 6: #Outline #Mark #Stick

  1. Using the marker or pencil, outline the lateral body position to be stuck.
  2. An outline will depend upon the circuit size.
  3. Using glue-gun stick the cardboard over the base disc.
  4. Finally, glue the ends firmly.

Step 7: Assemble the Circuit

  1. Glue the servo and stick it to the center of the base disc, so it's exactly balanced to rotate the rotating disc.
  2. Place the NodeMCU board inserted on to a breadboard.

Step 8: Circuit Connections

If your servo has Orange - Red - Brown wires, then connect it as follows

  • Orange wire connects to Digital pin D4.
  • Brown wire connects to GND pin.
  • Red wire connects to 3V3 pin.

To know more about servo connections you can check my Instructable on How to Interface Servo Motor with NodeMCU.

Step 9: #Coding Time

#include <servo.h>

Servo servo;

void setup() {

servo.attach(2);
int pos = 0; delay(2000);

}

void loop() {
for (int pos = 0; pos <= 180; pos++){
servo.write(pos); delay(50); }

for (int pos = 180; pos >= 0; pos--){
servo.write(pos); delay(50); }

}

Step 10: Final Setup

  1. Finally, after all the connections, glue the servo arm to the Rotating disc.
  2. Fix the rotating disc to the Servo gear.

TADAAA!! The product is ready.

Step 11: Connect It

Connect the adapter to power up the device.

All Set!! You can watch the attached video to check how it works.

Step 12: Add-Ons

You can also make such different rotating disc to make your photography awesome that suits your theme.

That's all Makers!! Hope you enjoyed and you'll try one for you.

Thank You : )

If you have any queries, feel free to leave a comment below or PM me and I would try to help you.