-
1. Introduction to Automation and Robotics
-
2. Introduction to Virtual Circuits
-
3. Circuits on Breadboard
We use electricity in our day to day life, let us understand how circuits are made and learn to make simple circuits.
-
4. Breadboard - Type of Circuit
-
5. Some Projects with Electronics
-
6. Introduction to Arduino
-
7. Arduino - My first Program
-
8. Know about Block Coding
-
9. Program control Circuit
-
10. Patterns with LED
-
11. Make your own Traffic Light
-
12. Loops and conditions in Arduino
-
13. Analog vs Digital
Today we learn what Arduino is and how to use it to create a simple LED blinking circuit.
-
14. More patterns with LED
More Fun with LEDs
-
15. Electronic Dice
-
16. Debugging a Program
-
17. Disco Light and Sound
-
18. Sound Sensor and Clap Switch
-
19. Automatic Street Light
-
20. Make an Emergency Lamp
-
21. Make a Morning Alarm
-
22. Learn about Variables
Today we learn about Analog and Digital Signals
-
23. Servo Motor
-
24. Rain Sensor
-
25. Wind Screen Wiper
-
26. Magnetic Object Detector
-
27. Door Alarm
-
28. Ultrasonic Sensor
-
29. Parking Guide
-
30. Automatic Dustbin Opener
-
31. Explore More - Dustbin opener
-
32. Introduction to Arduino Libraries
-
33. Learn to make a Type writer
-
34. Know about DHT Sensor
-
35. Design a Thermostat and Control your room Temperature
-
36. Moody Lamp Keypad Operated
-
37. LCD
-
38. Password Protected Locker
-
39. Debugging Code for Password Box
-
40. Automatic irrigation
-
41. Plant Watering System
-
42. Water Dispenser
-
43. Introduction to MIT App Inventor
-
44. Make you first App
-
45. Design an App
-
46. Home Automation
-
47. Controlling a LED with Bluetooth
-
48. Know about voice command
-
49. Voice control
-
50. Control LED with Voice command
-
51. Making a prototype Color Shadow
-
52. Voice control Color Shadow
-
53. IR Sensor
-
54. Making an IR counter
-
55. Blind Man Stick
-
57. Operating car with Switch
-
56. Build your car
-
58. Operating robot with DTDP Switch
-
59. Design a Robot
-
60. Operating Robot
-
61. Light Sensing car
-
62. Light Following Car
-
63. Line following car
-
64. Obstacle Avoiding car
-
65. More with Obstacle Avoider
-
66. Bluetooth Control Car
-
67. Blue tooth car
-
68. Bluetooth car
-
69. Voice control Color Shadow
-
70. RFID Sensor
Elaborate 2: Scattering Pattern with LEDs
Objective:
Blink Five LED in scattering Pattern
Schematics:
Connections:
Reference Picture:
Ardublock
Click on Ardublock to open the Ardublock window and put the following blocks together.
Arduino Code
void setup(){ pinMode(2,OUTPUT); //Set pins D2 to D6 as outputs pinMode(3,OUTPUT); pinMode(4,OUTPUT); pinMode(5,OUTPUT); pinMode(6,OUTPUT); } void loop(){ digitalWrite(4,HIGH); //Turn ON middle LED delay(1000); digitalWrite(3,HIGH); //Turn ON next 2 LEDs digitalWrite(5,HIGH); delay(1000); digitalWrite(2,HIGH); //Turn ON next 2 LEDs digitalWrite(6,HIGH); delay(1000); digitalWrite(2,LOW); //Turn OFF all LEDs digitalWrite(3,LOW); digitalWrite(4,LOW); digitalWrite(5,LOW); digitalWrite(6,LOW); delay(1000); }
Output
Upload the following program on Arduino after connecting the Arduino to laptop and making changes in board and port tab, you will see the 5 LED in scattering pattern
Explanation:
We start by lighting only the center LED. Then we turn on its neighbors. Then we light the end LEDs. The we switch everything off and repeat the step over.