Okay so I don't currently have the best/simple way to word what I am trying to do which is probably one of the reasons my google searches have been futile.
So to give a little context, I am trying to build a controller for a chain of 50 RGB leds each controlled by a WS2801 chip (this string). I am using a Arduino Duemilanove (w/ atmega168) and can incorporate an SD card if necessary.
Now what I want to do is make it very easy to upload different patterns to the arduino. In the end, I want to make a simple app that can upload different patterns to the Arduino, and this is where my question comes in. I am wondering if it would be feasible to create a system like the BlinkM's sequencer. I would like to be able to create an application that a completely non-technical person can easily create patterns and upload them to the arduino.
I am thinking that the Arduino program's only function would be to read patterns from memory (onboard if possible but from an SD card if necessary) and then if it starts receiving commands on the serial port it would store the incoming pattern.
I have searched around for someone doing something similar but haven't found an example that I could start basing my project off of. It would be great if someone could point me towards someone who has done something similar or has written about the idea.
I have already looked at the new BlinkyTape software but they do it where their application creates a file to uploaded in the normal Arduino programming. I have also looked through BlinkM's software but their firmware is custom and not written with Arduino.