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.

main.c 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. uint8_t i, mem[7] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
  34. PORTB |= (1 << PB2);
  35. PORTB &= ~(1 << PB1);
  36. eqLed(mem);
  37. _delay_ms(250);
  38. PORTB &= ~(1 << PB2);
  39. PORTB |= (1 << PB1);
  40. for (i = 0; i < 7; i++) {
  41. mem[i] = 0x00;
  42. }
  43. eqLed(mem);
  44. _delay_ms(250);
  45. }
  46. void showMusicOnLED(void) {
  47. uint8_t *music;
  48. uint8_t i, val;
  49. music = equalizerGet();
  50. val = 0;
  51. for (i = 0; i < 7; i++) {
  52. val += music[i];
  53. }
  54. val /= 7;
  55. free(music);
  56. if (val >= 20) {
  57. PORTB |= (1 << PB2);
  58. } else {
  59. PORTB &= ~(1 << PB2);
  60. }
  61. }
  62. void showPotOnLED(void) {
  63. uint8_t val = 0;
  64. adcStartConversion(0x01); // 0x0E -> 1,3 V Ref.
  65. val = adcGetByte();
  66. if (val >= 127) {
  67. PORTB |= (1 << PB1);
  68. } else {
  69. PORTB &= ~(1 << PB1);
  70. }
  71. }
  72. int main(void) {
  73. DDRB = 0x3F;
  74. DDRC = 0x0C;
  75. DDRD = 0xFF;
  76. adcInit();
  77. equalizerInit();
  78. blinkStatus();
  79. blinkStatus();
  80. // Blink led :)
  81. while (1) {
  82. //showPotOnLED();
  83. showMusicOnLED();
  84. // Heartbeat
  85. PORTB ^= (1 << PB1);
  86. _delay_ms(1);
  87. }
  88. return 0;
  89. }