********** Knowledge Area Made by Mahabub ***********
Pages
Home
AVR
Arduino
PIC
Electronics
Instruments
PMP
FAQ
Software
Privacy Policy
About
Contact
Arduino
Functions
Variables
Structure
Electrical
Electrical-1
Electrical-2
Battery
Sensor
Sensor-1
Sensor-2
Sensor-3
Power Plant
Solar
Power Plant-2
Power Plant-3
Islam
Quran
Amal&Fojilat
Hadith
Programming
C
C++
Python
Java
Visual Basic
Turbine
GT
ST
Control System
Control System-1
Control System-2
Control System-3
Foreing Affairs
China
Germany
Canada
UK
Monday, November 13, 2017
Arduino LED blinking
This is very simple arduino project
Digita pin no. 5 will blink only.
Code
:
void setup()
{
pinMode(5,OUTPUT);
}
void loop()
{
digitalWrite(5,HIGH);
delay(1000);
digitalWrite(5,LOW);
delay(1000);
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment