PROGRAM FOR LED BLINKING IN ATMEGA2560

PROGRAM FOR LED BLINKING IN ATMEGA2560

Try to make your post not simply repeat the title, and don't SHOUT.

Menu - examples... blink

I don't see your code.

I gather from your post that you are sharing code the blink an LED with an ATMega2560.

I'm very interested to see your code.

http://cappels.org/dproj/simplest_LED_flasher/Simplest_LED_Flasher_Circuit.html

sir i need code for LED blinking in arduino mega 2560 micro controller

Pretty basic:

void setup(){
pinMode (13, OUTPUT);
}
void loop(){
digitalWrite (13, HIGH);
delay (500);
digitalWrite (13, LOW);
delay (500);
}

Change 13 to the pin you want to use if something else.
What part are you having trouble with?

1 Like

thank you so much sir......