3d Hologram Fan Diy

5 min read Jul 25, 2024
3d Hologram Fan Diy

Create Your Own 3D Hologram Fan DIY Project

Have you ever seen those mesmerizing 3D hologram displays that seem to come to life? Well, you can now create your own 3D hologram fan DIY project with just a few simple materials and some basic electronics knowledge.

What is a 3D Hologram Fan?

A 3D hologram fan is a device that uses LED lights and a spinning fan to create the illusion of a 3D image. It's a clever trick that uses persistence of vision to create the illusion of a 3D object floating in mid-air.

Materials Needed:

  • Arduino Board (or any other microcontroller)
  • LED Strip (WS2812 or similar)
  • DC Fan (12V)
  • Power Supply (12V)
  • Jumper Wires
  • Breadboard
  • 3D Printed or Laser Cut Fan Blades (optional)

Step 1: Prepare the LED Strip

Cut the LED strip into individual LEDs and solder them to the breadboard. Make sure to connect the positive leg of each LED to the digital pin of the Arduino board.

Step 2: Connect the DC Fan

Connect the DC fan to the power supply and attach it to the breadboard. Make sure to connect the fan's positive wire to the VIN pin of the Arduino board.

Step 3: Write the Code

Create a simple Arduino sketch that will control the LED strip and the DC fan. You can use the following code as a starting point:

#include 

#define LED_PIN 6
#define FAN_PIN 9

CRGB leds[20];

void setup() {
  FastLED.addLeds(leds, 20);
  pinMode(FAN_PIN, OUTPUT);
}

void loop() {
  // Set the fan speed
  analogWrite(FAN_PIN, 128);

  // Display the 3D hologram effect
  for (int i = 0; i < 20; i++) {
    leds[i] = CRGB::Red;
    FastLED.show();
    delay(5);
    leds[i] = CRGB::Black;
  }
}

Step 4: Assemble the Fan Blades

If you want to create a more realistic 3D hologram effect, you can 3D print or laser cut fan blades and attach them to the DC fan. This will create a more convincing 3D illusion.

Step 5: Put It All Together

Assemble the entire project by attaching the LED strip, DC fan, and Arduino board to a wooden or plastic base. Make sure to secure all the components properly.

Tips and Variations:

  • To create a more realistic 3D hologram effect, you can use a higher resolution LED strip or add more LEDs to the strip.
  • You can also add a potentiometer to control the fan speed and create a more dynamic 3D hologram effect.
  • Experiment with different LED colors and patterns to create unique 3D hologram effects.

Conclusion:

Creating a 3D hologram fan DIY project is a fun and rewarding experience that requires minimal materials and electronics knowledge. With this simple guide, you can create your own mesmerizing 3D hologram display that will amaze your friends and family.

Related Post


Latest Posts


Featured Posts