Simple single-color 8x8x8 LED Cube with AVRs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213141516 |
- /*
- * mem.c - HardwareEmulator
- * frame is represented as 65 bytes.
- * 0 - 63: frame data
- * 64: duration, 0 => 1/24th second
- */
-
- // return != 0 if error
- int addFrame(char *frame);
-
- // returns NULL if error
- char *getFrame(int index);
-
- int framesStored();
-
- void clearMemory();
|