Simple single-color 8x8x8 LED Cube with AVRs
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

cube.h 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * cube.h
  3. *
  4. * Copyright 2011 Thomas Buck <xythobuz@me.com>
  5. * Copyright 2011 Max Nuding <max.nuding@gmail.com>
  6. * Copyright 2011 Felix Bäder <baeder.felix@gmail.com>
  7. *
  8. * This file is part of LED-Cube.
  9. *
  10. * LED-Cube is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation, either version 3 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * LED-Cube is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with LED-Cube. If not, see <http://www.gnu.org/licenses/>.
  22. */
  23. /*
  24. * Call init(). A picture you set a new picture it will be displayed.
  25. * After the last part is applied to the latches, isFinished() will change
  26. * to 1. Now you can place a new picture here.
  27. */
  28. extern void init(void);
  29. // Copies the data in img into its own buffer, so free img afterwards...
  30. extern void setImage(uint8_t **img); // img[8][8]
  31. extern uint8_t isFinished(void);
  32. extern void close(void);
  33. extern void fillBuffer(uint8_t val);
  34. // For debugging, not normal operation:
  35. extern void setFet(uint8_t data);
  36. extern void setLatch(uint8_t latchNr, uint8_t data);