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.

main.c 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * main.c
  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. #include <avr/io.h>
  24. #include <stdint.h>
  25. #include <util/delay.h>
  26. #include <avr/interrupt.h>
  27. #include <avr/wdt.h>
  28. #include "adc.h"
  29. #include "eq.h"
  30. #include "twislave.h"
  31. #ifndef F_CPU
  32. #define F_CPU 16000000L
  33. #endif
  34. int main(void) {
  35. uint8_t *music = result;
  36. MCUCSR = 0;
  37. wdt_disable();
  38. DDRB = 6; // LEDs as Output
  39. DDRC = 12; // MSGEQ7 Pins as Output
  40. DDRD = 0; // Nothing on this Port!
  41. twiInit(0x42); // All TWI action happens completely in the background.
  42. adcInit();
  43. equalizerInit();
  44. sei(); // Enable interrupts
  45. wdt_enable(WDTO_500MS); // Enable watchdog reset after 500ms
  46. twiSetDataToSend(music);
  47. while (1) {
  48. if (twiDataWasSent()) {
  49. PORTB ^= (1 << PB2); // Toggle for every transaction
  50. music = equalizerGet();
  51. twiSetDataToSend(music);
  52. }
  53. wdt_reset();
  54. }
  55. return 0;
  56. }