Code explanation:🎉 Void setup(){ //Here you should write the line of condes that executes once and also here you should declare inputs and outputs here pinMode(8,OUTPUT); //8th pin of arduino is output now } Void loop(){ //Here the code executes infinite times whenever the power is fed to arduino digitalwrite(8,HIGH); //led connected to 8th terminal is HIGH delay(1000); //led high upto 1 second digitalwrite(8,LOW); //led connected to 8th terminal is LOW delay(1000); //led LOW upto 1 second }
So clear tutorial ,thanks for explaining clearly,❤🎉
1:51 Also you need 2 100ohm resistors
Thank you sir ❤
So nice of you
Code explanation:🎉
Void setup(){
//Here you should write the line of condes that executes once and also here you should declare inputs and outputs here
pinMode(8,OUTPUT); //8th pin of arduino is output now
}
Void loop(){
//Here the code executes infinite times whenever the power is fed to arduino
digitalwrite(8,HIGH); //led connected to 8th terminal is HIGH
delay(1000); //led high upto 1 second
digitalwrite(8,LOW); //led connected to 8th terminal is LOW
delay(1000); //led LOW upto 1 second
}