DIY Rick and Morty flying car with LED lights!!

DIY Rick and Morty flying car with LED lights!!

Boost
6
22
0

Print Profile(0)


Add the first print profile to earn points

Boost
6
22
0
0
8
0
Released

Description

If you like the Rick and Morty flying car with lights you may want to check out my Death Stranding Bike with Sam and LED lights! https://cults3d.com/en/3d-model/art/death-stranding-sam-on-his-bike-with-led-lights

Or my Ecto-1 with Lights!!! https://cults3d.com/en/3d-model/art/ecto-1-with-lights-and-sound-with-detailed-instruction


Check out the pictures for the tutorial. If you can't find the dome i used you can use another half sphere. Just test your dome first with dome_test.stl! You can scale the model if necessary then.

The finished car is about 9cm in height and the diameter is about 17cm.

Enjoy! :)


Edit 21.08.2019

Upgraded the Lights with an arduino and WS2812 LEDs.

Post-Printing

Arduino Code


include ===================

#define LED_PIN 8

#define NUM_LEDS 5

#define BRIGHTNESS 100

#define SATURATION 255

#define COLOR 25

#define DELAYTIME 10

#define FADESTEPS 30

CRGB leds[NUM_LEDS];

void setup() {

delay( 3000 ); // power-up safety delay

FastLED.addLeds(leds, NUM_LEDS).setCorrection( TypicalLEDStrip );

FastLED.setBrightness( BRIGHTNESS );

}

void loop()

{

for(int i= 0; i < NUM_LEDS; i++){

for(int j = 0; j < FADESTEPS; j++){

leds[i].fadeLightBy( j* (255 / FADESTEPS ));

if(j > FADESTEPS/2){ leds[(i+2)%NUM_LEDS] = CHSV( COLOR, SATURATION, 254); }

FastLED.show(); delay(DELAYTIME); }}

}

Category: Props

Comment & Rating (0)

Please fill in your opinion
(0/5000)

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.