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