In this video guide, I will show you the steps needed to getting started with Arduino. You'll learn how to program the Arduino board, connect the Arduino to the Arduino IDE, and blink the onboard LED.
Getting started with Arduino is a lot easier than you might think!
---------------------------------------------------------------------------------------------------------------------------
Used Functions
• pinMode(Pin, Mode): sets the mode of the pin
• digitalWrite(Pin, State): changes the state of an output pin
• delay(duration): pauses the program for a set period
Pin = This argument needs to be an integer value which represents the corresponding number designated to the pin
Mode = This argument needs to be one of three keywords: OUTPUT, INPUT, or INPUT_PULLUP
State = Like the mode argument in the pinMode method, this argument will take in one of two keywords: HIGH or LOW
Duration = An integer value given in milliseconds. (1000 ms = 1 second)
---------------------------------------------------------------------------------------------------------------------------
Join the Discord server!!!
/ discord
Link to the Arduino IDE
https://www.arduino.cc/en/software
Links to everything I used in this video
Arduino Uno: https://www.amazon.com/gp/product/B00...
USB Cable: https://www.amazon.com/gp/product/B08...
#Arduino #PracticalCoding