Simple single-color 8x8x8 LED Cube with AVRs
Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
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();
|