Arduino for Beginners: Complete
Course
This is the beginning of a complete editable textbook.
Table of Contents
1. Introduction to Arduino
2. Basic Electronics
3. Arduino IDE
4. Blink LED
Level 2: Sensors, Motors & Control Systems
Ultrasonic Sensor
Temperature Sensors
Servo and DC Motors
Motor Drivers
LCD Displays
Relay Modules
Automation
Level 3: Projects
Automatic Light
Smart Door Lock
Home Automation
Bluetooth Car
Robotic Arm
Final Innovation Project
Chapter 1: Introduction to Arduino
What is Arduino?
Arduino is an open-source electronics platform based on easy-to-use hardware and
software.
Required Parts
Arduino Uno
USB Cable
LED
220 Ohm Resistor
Breadboard
Jumper Wires
Blink Example Code
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN,HIGH);
delay(1000);
digitalWrite(LED_BUILTIN,LOW);
delay(1000);
}
Hardware Connection
Arduino Pin Connect To
D13 220Ω resistor -> LED anode
GND LED cathode