Difference between revisions of "Spectrum Shield (Sparkfun) + Arduino"

From ESE205 Wiki
Jump to navigation Jump to search
Line 12: Line 12:
 
[[File:Spectrum_Shield_Example_Code.png|300px||thumb||center||This function demonstrates how to access sound data of individual frequency bands]]
 
[[File:Spectrum_Shield_Example_Code.png|300px||thumb||center||This function demonstrates how to access sound data of individual frequency bands]]
  
A complete hookup guide written by the spectrums shield's developers can be found ||[https://learn.sparkfun.com/tutorials/spectrum-shield-hookup-guide
+
A complete hookup guide written by the spectrums shield's developers can be found [https://learn.sparkfun.com/tutorials/spectrum-shield-hookup-guide here]
here]||
 
  
 
[[Category:HowTos]]
 
[[Category:HowTos]]

Revision as of 22:55, 30 April 2017

The spectrum shield for Arduino, combined with specific code allows one to separate a processed or raw audio signal into seven bands of frequency. It takes in either an analog sound input by soldering the input to the left, right, and ground visible on the board, or from the built in 1/8” auxiliary input. A similar auxiliary output allows the processed sound to be played through any compatible speaker.

Note:

  • The shield will not take in any data from the microphone input of any more modern auxiliary cable (the jack should have only three distinct partitions, or be attached to a source of processed sound).
  • The shield is only compatible with an Arduino Uno or Redboard.
  • Do not attach other components to pins A0, A1, 4, and 5 because they are required for the shields operation.

To separate the raw audio signal into seven band, you need a specific function that sends an input to and takes audio data from the two ICs visible on the board. This input is referred to as the Strobe, and it is set to pin 4 on the Arduino board. The audio data is gathered from pins A0 and A1 (left and right) on the Arduino. Each IC is gathering data from one band of frequency at a given time. When a high and low signal are written in succession to the Strobe pin, both ICs switch to passing through data from the next highest band; the ICs start at the lowest band, and will cycle through back to the lowest once switched from the highest band.

With a for loop one can cycle through gathering data from each band, or pick out specific bands for the ICs to measure. An example of this code written by the developer of the spectrum shield, Toni Klopfenstein, demonstrates how to fill two arrays of length 7 with one amplitude measure of each band.

This function demonstrates how to access sound data of individual frequency bands

A complete hookup guide written by the spectrums shield's developers can be found here