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.

63 lines
1.8KB

  1. /* DAP Bass enhance example SGTL5000 only
  2. This example code is in the public domain
  3. */
  4. #include <Audio.h>
  5. #include <Wire.h>
  6. #include <SD.h>
  7. const int myInput = AUDIO_INPUT_LINEIN;
  8. // const int myInput = AUDIO_INPUT_MIC;
  9. // Create the Audio components. These should be created in the
  10. // order data flows, inputs/sources -> processing -> outputs
  11. //
  12. AudioInputI2S audioInput; // audio shield: mic or line-in
  13. AudioOutputI2S audioOutput; // audio shield: headphones & line-out
  14. // Create Audio connections between the components
  15. //
  16. AudioConnection c1(audioInput, 0, audioOutput, 0); // left passing through
  17. AudioConnection c2(audioInput, 1, audioOutput, 1); // right passing through
  18. // Create an object to control the audio shield.
  19. //
  20. AudioControlSGTL5000 audioShield;
  21. void setup() {
  22. // Audio connections require memory to work. For more
  23. // detailed information, see the MemoryAndCpuUsage example
  24. AudioMemory(4);
  25. // Enable the audio shield and set the output volume.
  26. audioShield.enable();
  27. audioShield.inputSelect(myInput);
  28. audioShield.volume(0.75);
  29. audioShield.unmuteLineout();
  30. // just enable it to use default settings.
  31. audioShield.enhanceBassEnable(); // all we need to do for default bass enhancement settings.
  32. // audioShield.enhanceBass((float)lr_level,(float)bass_level);
  33. // audioShield.enhanceBass((float)lr_level,(float)bass_level,(uint8_t)hpf_bypass,(uint8_t)cutoff);
  34. // please see http://www.pjrc.com/teensy/SGTL5000.pdf page 50 for valid values for BYPASS_HPF and CUTOFF
  35. }
  36. elapsedMillis chgMsec=0;
  37. float lastVol=1024;
  38. void loop() {
  39. // every 10 ms, check for adjustment
  40. if (chgMsec > 10) { // more regular updates for actual changes seems better.
  41. float vol1=analogRead(15)/10.23;
  42. vol1=(int)vol1;
  43. if(lastVol!=vol1)
  44. {
  45. audioShield.volume(vol1);
  46. lastVol=vol1;
  47. }
  48. chgMsec = 0;
  49. }
  50. }