Популярное

Arduino Project : 1 | LED blinking by using Arduino UNO | LED controlled by C program

93 Просмотры
Размещено
#ArduinosoftwareinstallationinwindowsOS #LEDblinkingprogramusingarduino #LEDblinking #arduinoprogram #arduinoUNOprogtam
Hi Guys,
In this video we are going to see Arduino software installation and LED blinking basic program by using Arduino UNO.
If you are having any doubts regarding this please comment in the comment section.
PROGRAM :
void setup() {
// put your setup code here, to run once:
pinMode(11, OUTPUT);
}

void loop() {
// put your main code here, to run repeatedly:
digitalWrite(11,HIGH);
delay(500);
digitalWrite(11,LOW);
delay(500);
}
Категория
Ардуино
Комментариев нет.