“声音检测传感器”的版本间的差异
853387039@qq.com(讨论 | 贡献) (→概述) |
(→实验:检测声音大小) |
||
第72行: | 第72行: | ||
</source> | </source> | ||
*编译完成后在Arduino IDE的工具(Tools)→端口(Serial Port)里面选择正确的端口号,然后直接下载程序。 | *编译完成后在Arduino IDE的工具(Tools)→端口(Serial Port)里面选择正确的端口号,然后直接下载程序。 | ||
− | [[file:upload.JPG| | + | [[file:upload.JPG|600px|center]] |
*下载完毕你可以打开串口监视器,显示的数值大小即反应了当前传感器检测的声音强度。 | *下载完毕你可以打开串口监视器,显示的数值大小即反应了当前传感器检测的声音强度。 | ||
− | [[file:mCookie-Sound-res.JPG| | + | [[file:mCookie-Sound-res.JPG|600px|center]] |
===程序调试=== | ===程序调试=== |
2015年11月4日 (三) 08:56的版本
概述声音检测传感器模块。能检测声音的强弱,不能识别指定的声音。
规格
开发设备
准备
实验:检测声音大小
#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
}
程序调试
视频 |