Introduction to Arduino
Floor 4 - Physic Lab
Outline
Outline
Basic concepts of Arduino programming
1
Arduino Exercises
2
How to hold the Arduino
Arduino Structure
Arduino Programming Blocks
void setup() {
}
void loop() {
}
Arduino Programming Blocks
pinMode( pin, mode )
Pin Number
Mode
digitalWrite( pin, signal )
Pin Number
Mode
delay( milliseconds )
Delay Milliseconds
One thousandth of a second
Input parameter 1000 represents a delay of one second
Arduino Programming Blocks
pinMode( pin, mode )
Pin Number
Mode
digitalWrite( pin, signal )
Pin Number
Mode
delay( milliseconds )
Delay Milliseconds
One thousandth of a second
Input parameter 1000 represents a delay of one second
Arduino Programming Blocks
pinMode( pin, mode )
Pin Number
Mode
digitalWrite( pin, signal )
Pin Number
Mode
delay( milliseconds )
Delay Milliseconds
One thousandth of a second
Input parameter 1000 represents a delay of one second
Ex01 - blink the builtin led
Ex01 - blink the builtin LED
Light up 2 times every second and light down for 1 second
Arduino - white board
Ex02 - blink the LED
Light up 3 times every second and light down for 1 second
Ex03 - Two LEDs
Ex04 - Two LEDs
Light up 3 times every second and light down for 1 second
Ex05 - Three LEDs
Three LEDs light up one by one.
Ex06 - Button Control
Light Up if Button is pressing, otherwise light down
digitalRead( pin )
Pin Number
Ex06 - Button Control
Light Up if Button is pressing, otherwise light down
digitalRead( pin )
Pin Number
Light on if Button is pressed, and light off if pressed again
Ex07 - Button Control
digitalRead( pin )
Pin Number
bool ledState = false;
The code above shows how to define a true or false variable in Arduino
delay( milliseconds )
To prevent the code within the `loop()` function from repeatedly executing while a button is held down, a `delay()` function can be implemented after the button press is detected.
Light on if Button is pressed, and light off if pressed again
Ex07 - Button Control
digitalRead( pin )
Pin Number
bool ledState = false;
The code above shows how to define a true or false variable in Arduino
delay( milliseconds )
To prevent the code within the `loop()` function from repeatedly executing while a button is held down, a `delay()` function can be implemented after the button press is detected.
Use Analog pin to light up a LED from low brigness to high brigness
Ex08 - Analog LEDs
analogWrite(pin, voltage);
Pin Number
Voltage
Ex09 - Analog LEDs Controls
analogWrite(pin, voltage);
Pin Number
Voltage
Ex09 - Analog LEDs Controls
analogWrite(pin, voltage);
Pin Number
Voltage
Ex10 - LEDs speed Controls