Simple single-color 8x8x8 LED Cube with AVRs
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

main.c 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 <stdlib.h>
  24. #include <stdint.h>
  25. #include <avr/io.h>
  26. #include <util/delay.h>
  27. #include "adc.h"
  28. #include "eq.h"
  29. #ifndef F_CPU
  30. #define F_CPU 16000000L
  31. #endif
  32. void blinkStatus(void) {
  33. PORTB |= (1 << PB2);
  34. PORTB &= ~(1 << PB1);
  35. _delay_ms(250);
  36. PORTB &= ~(1 << PB2);
  37. PORTB |= (1 << PB1);
  38. _delay_ms(250);
  39. }
  40. void showMusicOnLED(void) {
  41. uint8_t *music;
  42. uint8_t i, val;
  43. music = equalizerGet();
  44. val = 0;
  45. for (i = 0; i < 7; i++) {
  46. val += music[i];
  47. }
  48. val /= 7;
  49. free(music);
  50. if (val >= 20) {
  51. PORTB |= (1 << PB2);
  52. } else {
  53. PORTB &= ~(1 << PB2);
  54. }
  55. }
  56. void showPotOnLED(void) {
  57. uint8_t val = 0;
  58. adcStartConversion(0x01); // 0x0E -> 1,3 V Ref.
  59. val = adcGetByte();
  60. if (val >= 127) {
  61. PORTB |= (1 << PB1);
  62. } else {
  63. PORTB &= ~(1 << PB1);
  64. }
  65. }
  66. int main(void) {
  67. DDRB = 0x3F;
  68. DDRC = 0x0C;
  69. DDRD = 0xFF;
  70. adcInit();
  71. equalizerInit();
  72. blinkStatus();
  73. blinkStatus();
  74. // Blink led :)
  75. while (1) {
  76. //showPotOnLED();
  77. showMusicOnLED();
  78. // Heartbeat
  79. PORTB ^= (1 << PB1);
  80. _delay_ms(1);
  81. }
  82. return 0;
  83. }