“声音检测传感器”的版本间的差异
853387039@qq.com(讨论 | 贡献) |
853387039@qq.com(讨论 | 贡献) (→概述) |
||
第4行: | 第4行: | ||
==概述== | ==概述== | ||
− | + | 声音检测传感器模块。能检测声音的强弱,不能识别指定的声音。 | |
<br /> | <br /> | ||
− | + | 传感器内置一个对声音敏感的电容式驻极体话筒。声波使话筒内的驻极体薄膜振动,导致电容的变化,而产生与之对应变化的微小电压。这一电压随后被转化成0-5V的电压,可以被mCookie-CoreUSB接收并识别。 | |
==规格== | ==规格== |
2015年10月20日 (二) 08:09的版本
概述声音检测传感器模块。能检测声音的强弱,不能识别指定的声音。
规格
开发设备
准备
实验:检测声音大小
#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
}
程序调试
视频 |