Software for programming LED

Is there any software for programming the LED creating own animation with writing code takes way too much time.

It will take less time as you get better at it.
I don't know of any pre-written code for animations.

What kind of LEDs?

Have you heard of NeoPixels?

.

I am using WS2801 in this case I have seen a software called LED Edit but I dont know if it works for arduino also.

Seems like Google has a few hits.

Here

look up fadecandy, pixelpusher and ledlab if you want something fancy like that.

If you are ready instead to control your LEDs, look up fastLED or Adafruit neopixel LED library.
I also am writting a LED library called FAB_LED.

With my library, you'll need to declare the LED strip you're using, a pixel array, update the pixels and then write the array to the LED strip, for example:

ws2812b<D,6> strip;
grb pix[numPixels];

for(int i=0; i < numPixels; i++) {
pix*.red = random(255);*
_ pix*.green = random(255);_
_ pix.blue = random(255);
}*_

* strip.draw(numPix, pix);*
* delay(1000);*