Product Turntable - NodeMCU

by CodeChamp in Circuits > Reuse

650 Views, 1 Favorites, 0 Comments

Product Turntable - NodeMCU

F4JDS6PJ70QK11T.png
47.JPG
Automatic Product Display Table

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.

Things You Need

1.JPG
2.JPG
3.JPG
4.JPG

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

Components Needed

13.JPG
IMG_20170901_004324.jpg
IMG_20170901_003859.jpg
32.JPG
34.JPG

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

#Mark #Cut #Glue

5.JPG
6.JPG
7.JPG
8.JPG
9.JPG
10.JPG
11.JPG

  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. Repeat the same procedure using another CD.

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

Measurements

12.JPG
14.JPG
15.JPG
16.JPG

  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.

Design Lateral Body

17.JPG
18.JPG
19.JPG
20.JPG

  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.

#Outline #Mark #Stick

21.JPG
22.JPG
23.JPG
24.JPG
25.JPG

  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.

Assemble the Circuit

26.JPG
27.JPG
28.JPG

  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.

Circuit Connections

29.JPG
30.JPG
31.JPG
33.JPG

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.

#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); }

}

Downloads

Final Setup

36.JPG
38.JPG

  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.

Connect It

39.JPG
40.JPG
Automatic Product Display Table

Connect the adapter to power up the device.

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

Add-Ons

52.JPG
51.JPG

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.