Arduino Relay Interface | Control High Voltage Devices – Arduino Relay Tutorial

Опубликовано: 21 Февраль 2026
на канале: Aditya Bhagwan Late
58
7

New video Out Now "Arduino Relay Interface" hope you like it. In this video i am covered the basics of arduino. so that you all can understand what arduino actually is.
___________________________________________________________________________
Arduinodroid: https://play.google.com/store/apps/de...
Arduino Official Website: https://www.arduino.cc/
___________________________________________________________________________
MATHS SUBJECT CHANNEL:
   / @varshadhole3376  
__________________________________________________________________________
COOKING CHANNEL:
   / @_eatclickexplorerepeat_  
__________________________________________________________________________
ENGLISH SUBJECT CHANNEL:
   / learnwithsopanjadhavar  
__________________________________________________________________________
#learnarduino
#unitechofficial
#arduino
#arduniocoding
#ardunioproject
#arduinoprogramming
___________________________________________________________________________
Code:

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);

}