“声音检测传感器”的版本间的差异
853387039@qq.com(讨论 | 贡献) (→实验:检测声音大小) |
(→准备) |
||
(未显示2个用户的5个中间版本) | |||
第42行: | 第42行: | ||
===准备=== | ===准备=== | ||
− | *Setup | + | *Setup 1:将MIC声音传感器和Hub的模拟口(A0)接起来,这个就是检测MIC的引脚,因为MIC是模拟量传感器,所以用户可自己更改成其他的模拟口(A2,A4)。 |
[[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数据线将接入电脑。 | ||
第71行: | 第71行: | ||
} | } | ||
</source> | </source> | ||
− | *编译完成后在Arduino IDE的工具(Tools)→端口(Serial | + | *编译完成后在Arduino IDE的工具(Tools)→端口(Serial Port)里面选择正确的端口号。 |
− | [[file:upload.JPG| | + | [[file:upload.JPG|600px|center]] |
+ | *编译通过后下载程序。 | ||
+ | [[file:upload-sound.JPG|600px|center]] | ||
*下载完毕你可以打开串口监视器,显示的数值大小即反应了当前传感器检测的声音强度。 | *下载完毕你可以打开串口监视器,显示的数值大小即反应了当前传感器检测的声音强度。 | ||
− | [[file:mCookie-Sound-res.JPG| | + | [[file:mCookie-Sound-res.JPG|600px|center]] |
===程序调试=== | ===程序调试=== |
2016年3月21日 (一) 14:10的最新版本
概述声音检测传感器模块。能检测声音的强弱,不能识别指定的声音。
规格
开发设备
准备
实验:检测声音大小
#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
}
程序调试
视频 |