Arduino Uno Basic Setup
█▀█▀█▀█▀█▀█▀█▀█▀█▀█▀█▀█▀█▀█▀█▀█▀█▀█▀█▀█▀█▀█▀█▀█▀█▀█▀█▀█
[Synopsis]
This video shows you how to setup and use the Arduino electronic controller. A Arduino is not a computer, it is simply a programmable electronic controller to do very simple tasks with. It can be used as a sensor, it can be used to control motors, servos, and do repetitive tasks. It has about 32 KB (Kilobytes) of flash memory or storage memory, and 2 KB (Kilobytes) of SD memory. Thus it is very limited in what you can do with it. Your laptop or desktop computer has components which have electronic controllers in it, like the hard drive, the network card, etc.
I can think of some concrete applications I can use around the home, like using it to turn the sprinkler system on at a specific time, or turn on the lights at a specific time. In a industrial or commercial application, it can be used for a conveyor belt to run in a specific sequence, like move for 20 seconds, and stop. Then, start again for 20 seconds, and stop, etc. It can be used as a controller for all kinds of industrial machinery.
Since an Arduino is not a computer, you need a computer to program it with. You need to download and install a compiler for it. Once you write the code, and run it. It will be stored in the micro controllers memory and keep running it. You can turn it off or unplug it, and plug in a power supply, and it will run the same program you programmed on the computer. That is basically how it works.
In this video, you will just learn the basics of it. How to set it up, how to connect it from the controller to the bread board, and how to write a simple program to get it to do what you want.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
Code Used
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
[Example 1]
void setup () {
// put your setup code here, to run once:
pinMode(12,OUTPUT);
pinMode(11,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(12,HIGH);
delay(5000);
digitalWrite(12,LOW);
delay(2000);
digitalWrite(11,HIGH);
delay(3000);
digitalWrite(11,LOW);
delay(500);
}
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
[Last Example]
int RLED=12;
int GLED=11;
void setup () {
// put your setup code here, to run once:
pinMode(RLED,OUTPUT);
pinMode(GLED,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(RLED,HIGH);
delay(5000);
digitalWrite(RLED,LOW);
delay(2000);
digitalWrite(GLED,HIGH);
delay(3000);
digitalWrite(GLED,LOW);
delay(500);
digitalWrite(RLED,HIGH);
delay(1000);
digitalWrite(RLED,LOW);
delay(3000);
digitalWrite(GLED,LOW);
delay(8000);
}
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
[Links]
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
[Where to Download the Complier]
♠ Ardunio Uno Complier @
• https://www.arduino.cc/en/main/software
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
[Where to buy the kit, case, and power supply]
♦ ELEGOO UNO Project Super Starter Kit @ Amazon
• https://amzn.to/2S513zC
♦ 9V 1A Arduino Power Supply Adapter 110V AC @ Amazon (Optional: If you want to run the
controller independently)
• https://amzn.to/2UwVUDF
♦ DAOKI Uno R3 Case Enclosure New Transparent Gloss Acrylic Computer @ Amazon
• https://amzn.to/37UnC0B
(Video on how to assemble it)
◙ https://www.youtube.com/watch?v=S3R5tZ-4oTA&feature=youtu.be
♦ 6 feet USB 2.0 Printer Cable (If you want a longer USB cable that connects to your Arduino)
█▄█▄█▄█▄█▄█▄█▄█▄█▄█▄█▄█▄█▄█▄█▄█▄█▄█▄█▄█▄█▄█▄█▄█▄█▄█▄█▄█
Other Videos By Ace1000ks1975
2020-02-09 | War Thunder Kamov Ka-50 Test Flight |
2020-02-08 | Ms. Pac-Man Maze Madness (2000) Dreamcasts |
2020-02-08 | Arduino Uno Basics of a Capacitor |
2020-02-07 | Arduino Uno Connecting Multiple LEDs to a Single Ground Pin |
2020-02-04 | Sonic Adventure 2 (2001) Sega Dreamcast |
2020-02-03 | War Thunder Tank Assault Ardennes |
2020-02-03 | Dynamite Cop (1999) Sega Dreamcast |
2020-02-02 | Sega GT (2000) Sega Dreamcast |
2020-02-02 | Simcity 4 (2003) |
2020-02-02 | Windows 10 Memory Diagnostics |
2020-02-02 | Arduino Uno Basic Setup |
2020-01-26 | Craigslist Google Voice Verification Scam |
2020-01-26 | Dell Precision T5500 SSD Test |
2020-01-26 | Zombie Raider (1995) Arcade Playthrough Both Endings |
2020-01-26 | Zombie Raider (1995) Calibrate Gun |
2020-01-24 | How to Delete Partitions with Diskpart |
2020-01-22 | Dell Precision T3500/T5500 How to Install and Remove 5.25" Drive |
2020-01-22 | ICY DOCK Dual 2.5" SSD 1 x 3 5 HDD Device Bay to 5.25" adapter |
2020-01-21 | Lethal Enforcers 2 (1994) Arcade |
2020-01-20 | Spy Hunter (1983) Arcade |
2020-01-20 | Spy Hunter 2 (1987) Arcade |