Arduino Workshop
Arduino Workshop
Anonimouse
2018
Introduction to Basic Electronics
Basic Ohms Law
Voltage = Current * Resistance
Power Source
Resistors
Breadboard
Used for easy prototyping,
easy plug in and plug out of
connecting wires
Jumper Wires
Serves as the connecting
device/tool for devices
LEDs
Used for prototyping could be a
representation of something like
relay/motors/etc.
Series and Parallel Circuits
Activity 1: Using breadboard, Circuit and Parallel
Time: 3 mins
Introduction to Basic Programming
Data types
String = group of characters to form text or words Ex. “Hello World”
char = group of characters to form text or words Ex. ‘a’ , ‘b’
int = 16 bit number Ex. (range : −32,767, +32,767)
long = 32 bit number Ex. (range : −2,147,483,647, +2,147,483,647)
bool = can be true or false; 1 or 0
Data types
String = group of characters to form text or words Ex. “Hello World”
char = group of characters to form text or words Ex. ‘a’ , ‘b’
int = 16 bit number Ex. (range : −32,767, +32,767)
long = 32 bit number Ex. (range : −2,147,483,647, +2,147,483,647)
bool = can be true or false; 1 or 0
Introduction to Arduino
What is Arduino?
Is it the board? Is it a programming language?
What is Arduino?
While(condition){
//do something till condition is satisfied
}
WHILE