Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

PassThroughAnalog.ino 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #include <Audio.h>
  2. #include <Wire.h>
  3. #include <SD.h>
  4. // Create the Audio components. These should be created in the
  5. // order data flows, inputs/sources -> processing -> outputs
  6. //
  7. AudioInputAnalog analogPinInput(A2); // analog A2 (pin 16)
  8. AudioOutputI2S audioOutput; // audio shield: headphones & line-out
  9. AudioOutputPWM pwmOutput; // audio output with PWM on pins 3 & 4
  10. // Create Audio connections between the components
  11. //
  12. AudioConnection c1(analogPinInput, 0, audioOutput, 0);
  13. AudioConnection c2(analogPinInput, 0, audioOutput, 1);
  14. AudioConnection c3(analogPinInput, 0, pwmOutput, 0);
  15. // Create an object to control the audio shield.
  16. //
  17. AudioControlSGTL5000 audioShield;
  18. void setup() {
  19. // Audio connections require memory to work. For more
  20. // detailed information, see the MemoryAndCpuUsage example
  21. AudioMemory(12);
  22. // Enable the audio shield and set the output volume.
  23. audioShield.enable();
  24. audioShield.volume(60);
  25. }
  26. void loop() {
  27. // Do nothing here. The Audio flows automatically
  28. // When AudioInputAnalog is running, analogRead() must NOT be used.
  29. }