Simple single-color 8x8x8 LED Cube with AVRs
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
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();
|