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.

adc.c 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * adc.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 "adc.h"
  26. void adcInit(void) {
  27. DDRC &= ~(3);
  28. ADMUX = 0;
  29. ADMUX |= (1 << REFS0); // Ref. Voltage: Vcc
  30. ADCSRA |= (1 << ADPS2) | (1 << ADPS0); // Prescaler 64
  31. ADCSRA |= (1 << ADEN); // Enable adc
  32. adcStartConversion(0);
  33. adcGetResult();
  34. }
  35. void adcStartConversion(uint8_t channel) {
  36. ADMUX &= 0xF0; // Clear channel selection bits
  37. ADMUX |= (channel & 0x0F); // Set channel
  38. ADCSRA |= (1 << ADSC); // start conversion
  39. }
  40. uint8_t adcIsFinished(void) {
  41. // Return 1 if ADSC is 0
  42. if (ADCSRA & (1 << ADSC)) {
  43. return 0;
  44. } else {
  45. return 1;
  46. }
  47. }
  48. uint16_t adcGetResult(void) {
  49. while (adcIsFinished() == 0);
  50. ADCSRA &= ~(1 << ADSC);
  51. return ADCW;
  52. }
  53. uint8_t adcGetByte(void) {
  54. uint16_t tmp = adcGetResult();
  55. tmp = tmp >> 2;
  56. return tmp;
  57. }