Blinking an LED with an Arduino UNO.

Hosted by Dailymotion. For legal issues report at the Copyright Center, report us on DMC, or use the Instant Removal tool.

Blinking an LED with an Arduino UNO.

L
Learning Microcontrollers

0 Views • Dec 08, 2024

Description

Hello guys,
Welcome to Learning Microcontrollers youtube Channel,

Guys I have also compiled course on Udemy as well. Where you will learn under my direct supervision in a more supervised way.
Here is the links to the courses I have on Udemy, By taking any of these courses you will be supporting my channel aswell.
This will help me to make more videos with better hardware in the future. I hope you look forward to it.
Courses Links:

1- https://www.udemy.com/course/pic16f877a-interface-lm35-temp-sensor-mikroc-collection
2- https://www.udemy.com/course/mikroc-for-pic-libraries-with-examples-using-pic16f877a-mcu
3- https://www.udemy.com/course/mikroc-for-pic-libraries-with-examples-using-pic16f877a-mcu
4- https://www.udemy.com/course/pic-microcontroller-using-mikroc-for-pic-from-scratch
5- https://www.udemy.com/course/learn-arduino-uno-coding-using-arduino-ide ///////////////////////////////////////////////////// Arduino IDE coding :

void setup() {
pinMode(7,OUTPUT);
digitalWrite(7,LOW);

}

void loop() {
digitalWrite(7,HIGH);
delay(500);
digitalWrite(7,LOW);
delay(500);

}