UFO Abduction Lamp with blinking lights

UFO Abduction Lamp with blinking lights

Boost
21
32
1
GIF

Print Profile(0)


Add the first print profile to earn points

Boost
21
32
1
2
6
0
Released

Description

Version 2 of the lamp: https://cults3d.com/en/3d-model/home/ufo-lamp-oneidmonstr

For this Version you need:

glas cylinder with both ends open about 80mm in width

27x blue LEDs

3x white LEDs

30x 200 ohm resistors

4x 2k ohm resistors

4x 2N2222 transistor

ARDUINO nano

5M ohm potentiometer

7V power supply

green fabric

Use transparent filament on the file LED_cap_trans.stl.


Inspired by the countless abduction lamps on the internet. Especially Lasse Klein (If he was the original inventor of this great lamp design! :) )

Print Settings

Printer Brand:

Anycubic

Printer:

Kossel

Rafts:

No

Supports:

Yes

Resolution:

0.1mm

Infill:

10%

Post-Printing

Arduino Code

int A = 12;
int B = 10;

int C = 8;

int D = 6;

const int poti = 0;

void setup()

{

pinMode(A, OUTPUT);

pinMode(B, OUTPUT);

pinMode(C, OUTPUT);

pinMode(D, OUTPUT);

}

void loop()

{

int tDelay = 575;

int analogIn;

analogIn = analogRead(poti);

Serial.println(analogIn);

//************ all on************

if(analogIn < 200){

tDelay = 50;

delay(tDelay);

digitalWrite(A, HIGH);digitalWrite(B, HIGH);digitalWrite(C, HIGH);digitalWrite(D, HIGH);} else if (analogIn < 800){

//*********** rotate************

tDelay = analogIn - 150;

digitalWrite(A, HIGH);

delay(tDelay);

digitalWrite(A, LOW);

digitalWrite(B, HIGH);

delay(tDelay);

digitalWrite(B, LOW);

digitalWrite(C, HIGH);

delay(tDelay);

digitalWrite(C, LOW);

digitalWrite(D, HIGH);

delay(tDelay);

digitalWrite(D, LOW);

} else {

//***********blink*********

tDelay = analogIn - 400;

digitalWrite(A, HIGH);

digitalWrite(B, LOW);

digitalWrite(C, HIGH);

digitalWrite(D, LOW);

delay(tDelay);

digitalWrite(A, LOW);

digitalWrite(B, HIGH);

digitalWrite(C, LOW);

digitalWrite(D, HIGH);

delay(tDelay);

}

}

Category: Decor

Comment & Rating (1)

Please fill in your opinion
(0/5000)

you should redo this one using that maker supply feature
0
Reply
No more

License

This user content is licensed under a Standard Digital File License.

You shall not share, sub-license, sell, rent, host, transfer, or distribute in any way the digital or 3D printed versions of this object, nor any other derivative work of this object in its digital or physical format (including - but not limited to - remixes of this object, and hosting on other digital platforms). The objects may not be used without permission in any way whatsoever in which you charge money, or collect fees.