LED flasher using Arduino Nano and 132 LEDs
LED chaser using Arduino Nano and 132 LEDs. Parts list: 1-Aluminum plate with 0.7mm thickness 2-Drill bit 5.2 mm(for 5mm LEDs) https://goo.gl/5KMRg6 3-LEDs 5mm blue, white, red, green, yellow https://goo.gl/SPCY5o 4-Black color spray 5-100 ohm resistors (Resistor kit https://goo.gl/p4JvQY ) 6-Connecting Wires https://goo.gl/BVC3pM 7-Arduino Nano https://goo.gl/Gox61E 8-Power supply 5v 1 to 2A https://goo.gl/HJwdof    Please subscribe to my YouTube channel here:  https://www.youtube.com/c/EngMousaalkaabi?sub_confirmation=1 Code: void setup(){   pinMode(2, OUTPUT);   pinMode(3, OUTPUT);   pinMode(4, OUTPUT);   pinMode(5, OUTPUT);   pinMode(6, OUTPUT);   pinMode(7, OUTPUT);   pinMode(8, OUTPUT);   pinMode(9, OUTPUT);   pinMode(10, OUTPUT);   pinMode(11, OUTPUT);   pinMode(12, OUTPUT);   pinMode(13, OUTPUT); } void loop(){     digitalWrite(4, HIGH);   delay(100);   digitalWrite(4, LOW);   delay(10...
