“声音检测传感器”的版本间的差异
(→实验:检测声音大小) |
(→准备) |
||
第42行: | 第42行: | ||
===准备=== | ===准备=== | ||
− | *Setup | + | *Setup 1:将MIC声音传感器和Hub的模拟口(A0)接起来,这个就是检测MIC的引脚,因为MIC是模拟量传感器,所以用户可自己更改成其他的模拟口(A2,A6)。 |
[[file:mCookie-Sound-sensor.JPG|600px|center]] | [[file:mCookie-Sound-sensor.JPG|600px|center]] | ||
*Setup 2:将CoreUSB,Hub,Sound连接在一起。通过USB数据线将接入电脑。 | *Setup 2:将CoreUSB,Hub,Sound连接在一起。通过USB数据线将接入电脑。 |
2016年3月21日 (一) 14:07的版本
概述声音检测传感器模块。能检测声音的强弱,不能识别指定的声音。
规格
开发设备
准备
实验:检测声音大小
#define mic_pin A0
int sensorValue;
// the setup routine runs once when you press reset:
void setup() {
// initialize serial communication at 9600 bits per second:
Serial.begin(9600);
pinMode(mic_pin, INPUT);
}
// the loop routine runs over and over again forever:
void loop() {
// read the input on analog pin 0:
sensorValue = analogRead(mic_pin);
// print out the value you read:
Serial.print("Sound:");
Serial.println(sensorValue);
delay(100); // delay in between reads for stability
}
程序调试
视频 |