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.

mem.h 276B

12345678910111213141516
  1. /*
  2. * mem.c - HardwareEmulator
  3. * frame is represented as 65 bytes.
  4. * 0 - 63: frame data
  5. * 64: duration, 0 => 1/24th second
  6. */
  7. // return != 0 if error
  8. int addFrame(char *frame);
  9. // returns NULL if error
  10. char *getFrame(int index);
  11. int framesStored();
  12. void clearMemory();