Audi Style Indicator Lights

 

Why we  Love Cars? 

The single biggest reason why many of us love cars, myself included, is the fact that owning one gives you an immediate and new found sense of freedom. In particular, it's the ability to grab the keys, jump behind the wheel and drive where you want, when you want and without anything or anyone standing in your way.

Cars are works of art, there’s no hiding from it or denying it and I’d throw tons of effort into challenging anyone who says anything to the contrary.  

 

What is a Supercar?

The term supercar is sometimes used interchangeably with exotic car, but the definition is ultimately subjective. Some may say a supercar is distinct due to limited availability, while others will key in on acceleration and top speed.


What Makes a Car a Supercar?

The obvious answer is speed, both in terms of top speed and acceleration. In a hierarchy that begins with sports cars and ends with hypercars, supercars are the high-performance middle, featuring vehicles that are more than capable of tearing up the track and leaving common sports cars in the dust.

I guess your favourite cars are Lamborghini, Mercedes, Audi, Porsche, Mc Laren etc.
You like those cars, and hope you like all the accessories of that super cars.


So, inspiring from those supercars I have designed Audi Style customized Indicators for your car.
 

Audi Style Customized Indicators

You can customized that indicators and get it fixed in your own vehicle.

Here is the photo of the Audi Style Indicator Lights.

 

 


 

You can Customized these car lights at home using Arduino and just some leds.

Want to make yours watch this video from below link:

 


 

Given Below are Amazon India Affiliate links.

If you want to buy components visit these links.

Links to buy components :

1. Arduino Uno : https://amzn.to/3hTSiVm
 
2. Breadboard + Jumper wires : https://amzn.to/314CXLL
 
3. LEDs yellow : https://amzn.to/314DcXb
 
4. Resistors 330 ohm : https://amzn.to/2V9zoA2


Circuit Diagram of this Project

 

 

Just copy the code and Paste it in Arduino Uno.

 

/* A simple program to sequentially turn on and turn off 12 LEDs */ 


int LED1 = 0;

int LED2 = 1;

int LED3 = 2;

int LED4 = 3;

int LED5 = 4;

int LED6 = 5;

int LED7 = 6;

int LED8 = 7;

int LED9 = 8;

int LED10 = 9;

int LED11 = 10;

int LED12 = 11;

int LED13 = 12;

int LED14 = 13;

int LED15 = A5;

int LED16 = A4;

int t=20;


void setup() {

   pinMode(LED1, OUTPUT);

   pinMode(LED2, OUTPUT);

   pinMode(LED3, OUTPUT);

   pinMode(LED4, OUTPUT);

   pinMode(LED5, OUTPUT);

   pinMode(LED6, OUTPUT);

   pinMode(LED7, OUTPUT);

   pinMode(LED8, OUTPUT);

   pinMode(LED9, OUTPUT);

   pinMode(LED10, OUTPUT);

   pinMode(LED11, OUTPUT);

   pinMode(LED12, OUTPUT);

   pinMode(LED13, OUTPUT);

   pinMode(LED14, OUTPUT);

   pinMode(LED15, OUTPUT);

   pinMode(LED16, OUTPUT);

}


void loop() {

  digitalWrite(LED1, HIGH);     

  delay(t);                  

  digitalWrite(LED2, HIGH);    

  delay(t);                    

  digitalWrite(LED3, HIGH);    

  delay(t);                  

  digitalWrite(LED4, HIGH);    

  delay(t);                  

  digitalWrite(LED5, HIGH);    

  delay(t);                 

  digitalWrite(LED6, HIGH);    

  delay(t);                  

  digitalWrite(LED7, HIGH); 

  delay(t);                 

  digitalWrite(LED8, HIGH);  

  delay(t);                  

  digitalWrite(LED9, HIGH);    

  delay(t);                 

  digitalWrite(LED10, HIGH);    

  delay(t);                 

  digitalWrite(LED11, HIGH);  

  delay(t);               

  digitalWrite(LED12, HIGH); 

  delay(t);  

  digitalWrite(LED13, HIGH);    

  delay(t);

  digitalWrite(LED14, HIGH);    

  delay(t);

  digitalWrite(LED15, HIGH);    

  delay(t);

  digitalWrite(LED16, HIGH);    

 delay(t);

  digitalWrite(LED1, LOW);   

  delay(t);                 

  digitalWrite(LED2, LOW);    

  delay(t);               

  digitalWrite(LED3, LOW);   

 delay(t);                 

  digitalWrite(LED4, LOW);  

  delay(t);                  

  digitalWrite(LED5, LOW);    

  delay(t);                

  digitalWrite(LED6, LOW);    

  delay(t);                  

  digitalWrite(LED7, LOW);   

  delay(t);               

  digitalWrite(LED8, LOW);     

  delay(t);               

  digitalWrite(LED9, LOW);  

 delay(t);                 

  digitalWrite(LED10, LOW);  

  delay(t);                  

  digitalWrite(LED11, LOW);     

  delay(t);                  

  digitalWrite(LED12, LOW);   

  delay(t); 

  digitalWrite(LED13, LOW);    

  delay(t);

  digitalWrite(LED14, LOW);    

  delay(t);

  digitalWrite(LED15, LOW);    

  delay(t);

  digitalWrite(LED16, LOW);    

  delay(t);

}

 

If you have any query regarding this project, Contact me from below :

Telegram +919557024177
Instagram id : eif.08
Facebook page  : EIF08

Post a Comment

0 Comments