tobikdw
Published © TAPR-OHL

Police lights

This project is very simple :) follow photo, schematics and code, good luck.

BeginnerWork in progress3,383
Police lights

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Jumper wires (generic)
Jumper wires (generic)
×1
5 mm LED: Red
5 mm LED: Red
×1
Resistor 100 ohm
Resistor 100 ohm
×1
LED, Blue
LED, Blue
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

LED diode
LED diode blue
Breadboard, 400 Pin
Breadboard, 400 Pin
10 Pc. Jumper Wire Kit, 20 cm Long
10 Pc. Jumper Wire Kit, 20 cm Long

Story

Read more

Schematics

2_G6WxETbKWG.jpg

connect it :)

Code

CODE:

Arduino
void setup() {
  // put your setup code here, to run once:
pinMode(9,OUTPUT);
pinMode(8,OUTPUT);
}

void loop() {
  // put your main code here, to run repeatedly:
digitalWrite(9,HIGH);
delay(70);
digitalWrite(9,LOW);
delay(70);
digitalWrite(8,HIGH);
delay(70);
digitalWrite(8,LOW);
delay(70);
}

Credits

tobikdw
0 projects • 1 follower

Comments