닫기
전체카테고리
  • 반도체/수동소자
    반도체/수동소자
  • 임베디드하드웨어
    임베디드하드웨어
  • 교육용키트
    교육용키트
  • 센서모듈
    센서모듈
  • 입출력모듈
    입출력모듈
  • 전원/파워/배터리
    전원/파워/배터리
  • 기타 하드웨어
    기타 하드웨어
  • 특가상품/리퍼상품
    특가상품/리퍼상품
  • 반도체/수동소자
    반도체/수동소자
  • 임베디드하드웨어
    임베디드하드웨어
  • 교육용키트
    교육용키트
  • 센서모듈
    센서모듈
  • 입출력모듈
    입출력모듈
  • 전원/파워/배터리
    전원/파워/배터리
  • 기타 하드웨어
    기타 하드웨어
  • 특가상품/리퍼상품
    특가상품/리퍼상품
오디오 스펙트럼 쉴드 (SparkFun Spectrum Shield) 이미지 확대 보기
  • 오디오 스펙트럼 쉴드 (SparkFun Spectrum Shield)

오디오 스펙트럼 쉴드 (SparkFun Spectrum Shield)

공유
VAT 포함 가격입니다.
판매가
68,000 (부가세 포함)
구매혜택
할인 : 적립 마일리지 :
상품코드
9555
브랜드
SparkFun
제조사
Sparkfun
구매제한
옵션당 최소 1개
오디오 스펙트럼 쉴드 (SparkFun Spectrum Shield)
0
총 상품금액
총 할인금액
총 합계금액

아두이노 스펙트럼 쉴드는 두개의 채널(좌우) 오디오 입력을 채널당 7개 밴드로 나눌 수 있습니다. 즉, 사운드 입력을 통해서 LED, 모터, 펌프, 릴레이 등을 제어할 수 있는 신기방기한 제품입니다.


같은 제품은 아니지만 동일한 칩을 이용한 예제를 보시면 대략 어떠한 제품인지 알 수 있을것입니다! 일단 영상한번 보시죠~








아두이노 코드

//Declare Spectrum Shield pin connections

#define STROBE 4

#define RESET 5

#define DC_One A0

#define DC_Two A1 



//Define LED connections on the Arduino/Shield

int LED[] = {7, 8, 9, 10, 11, 12, 13};


//Define spectrum variables

int freq_amp;

int Frequencies_One[7];

int Frequencies_Two[7]; 

int i;


/********************Setup Loop*************************/

void setup() {

  //Set LED pin configurations

  for(i=0; i<7; i++)

  {

    pinMode(LED[i], OUTPUT);

    digitalWrite(LED[i], LOW);

  }

  

  //Set spectrum Shield pin configurations

  pinMode(STROBE, OUTPUT);

  pinMode(RESET, OUTPUT);

  pinMode(DC_One, INPUT);

  pinMode(DC_Two, INPUT);  

  digitalWrite(STROBE, HIGH);

  digitalWrite(RESET, HIGH);

  

  //Initialize Spectrum Analyzers

  digitalWrite(STROBE, LOW);

  delay(1);

  digitalWrite(RESET, HIGH);

  delay(1);

  digitalWrite(STROBE, HIGH);

  delay(1);

  digitalWrite(STROBE, LOW);

  delay(1);

  digitalWrite(RESET, LOW);

}



/**************************Main Function Loop*****************************/

void loop() {

  

  Read_Frequencies();

  Graph_Frequencies();

  delay(50);

 

}



/*******************Pull frquencies from Spectrum Shield********************/

void Read_Frequencies(){

  //Read frequencies for each band

  for (freq_amp = 0; freq_amp<7; freq_amp++)

  {

    Frequencies_One[freq_amp] = analogRead(DC_One);

    Frequencies_Two[freq_amp] = analogRead(DC_Two); 

    digitalWrite(STROBE, HIGH);

    digitalWrite(STROBE, LOW);

  }

}


/*******************Light LEDs based on frequencies*****************************/

void Graph_Frequencies(){

   for( i= 0; i<7; i++)

   {

     if(Frequencies_Two[i] > Frequencies_One[i]){

        digitalWrite(LED[i], HIGH);

        delay(Frequencies_Two[i]);

        digitalWrite(LED[i], LOW);

     }

     else{

        digitalWrite(LED[i], HIGH);

        delay(Frequencies_One[i]);

        digitalWrite(LED[i], LOW);

     }

   }

}


Description: The Spectrum Shield enables your Arduino with the capability of splitting a stereo audio input into 7-bands per channel. You can then read the amplitude of each channel using the ADC on your Arduino allowing you to control everything from LEDs to motors, pumps to relays, or even fire, all with sound. With this shield you will be able to have almost any project be able to react to music or sound!

The Spectrum Shield features the MSGEQ7 graphic equalizer display filter. Two of these ICs allow you to split a stereo audio input into 7-bands (per channel) and read the amplitude of each using the ADC on your Arduino. The shield is populated with two 1/8" stereo jacks (like you would find on a pair of headphones). One serves as a stereo input and the other is a pass-through output which allows you to connect the Spectrum Shield in-line between your audio source and your stereo system without interruption. This revision of the Spectrum Shield has been updated to the Arduino R3 layout but still requires you to solder on your own headers (check the Recommended Products section below). This shield can be used to create sound visualizers, detect patterns in music or add sound activation to your microcontroller projects.

Note: This product is a collaboration with Ben Moyes of Bliptronics. A portion of each sales goes back to them for product support and continued development.

Documents:

아두이노 MP3 플레이어 쉴드 (SparkFun MP3 Player Shield) MP3 쉴드
아두이노 MP3 플레이어 쉴드 (SparkFun MP3 Player Shield) MP3 쉴드
82,500
아두이노 뮤직 인스트루먼트 쉴드 (Sparkfun Music Instrument Shield) VS1053 MIDI
아두이노 뮤직 인스트루먼트 쉴드 (Sparkfun Music Instrument Shield) VS1053 MIDI
65,000
뮤직메이커 아두이노 MP3 쉴드 w/3W Stereo Amp (VS1053B)
55,000
품절

장바구니 담기

상품이 장바구니에 담겼습니다.
바로 확인하시겠습니까?

찜 리스트 담기

상품이 찜 리스트에 담겼습니다.
바로 확인하시겠습니까?

이미지 확대보기오디오 스펙트럼 쉴드 (SparkFun Spectrum Shield)

오디오 스펙트럼 쉴드 (SparkFun Spectrum Shield)
  • 오디오 스펙트럼 쉴드 (SparkFun Spectrum Shield)
닫기

비밀번호 인증

글 작성시 설정한 비밀번호를 입력해 주세요.

닫기

장바구니 담기

상품이 장바구니에 담겼습니다.
바로 확인하시겠습니까?

찜 리스트 담기

상품이 찜 리스트에 담겼습니다.
바로 확인하시겠습니까?

  • 장바구니
  • 최근본상품
  • 위로
  • 아래로

최근 본 상품

  • 오디오 스펙트럼 쉴드 (SparkFun ...
    68,000
0/2
우측 배너
고객센터

053-588-4080평일상담 : 10:00 ~ 17:00 | 점심시간 : 12:00 ~ 13:00
주말 및 공휴일 휴무

계좌안내

신한은행100-032-613560
예금주 : (주)메카솔루션