磁控传感器
来自YFRobotwiki
产品简介
磁控传感器模块是一个发声的电子模块。
规格参数
- 供电电压:DC3.3 - 5V
- 安装孔径:3MM
- 模块尺寸:31*21*10.1MM(长*宽*高)
- 孔间距:15MM
- 模块重量:4.3g
引脚说明
- 1. G -- Gnd(地)
- 2. V -- Vcc(电源+5V)
- 3. S -- Sign(信号)
应用示例
- 电路连接示意图
- 磁控传感器模块的 G、V、S分别连接 Arduino UNO的GND、VCC(+5V)、D7引脚。
- 示例代码
//passive Buzzer test //simulate the ambulance voice by passive Buzzer int buzzer=6; //set pin void setup() { pinMode(buzzer,OUTPUT); } void loop() { unsigned char i,j; while(1) { for(i=0;i<80;i++) //make frequency of a sound { digitalWrite(buzzer,HIGH); delay(1); digitalWrite(buzzer,LOW); delay(1); } for(i=0;i<100;i++) //make another frequency of a sound { digitalWrite(buzzer,HIGH); delay(2); digitalWrite(buzzer,LOW); delay(2); } } }
程序下载地址:passiveBuzzer_test
程序运行结果:给无源蜂鸣器两种不同频率,使其发出两种声音,模拟救护车声音。
参考资料
更多建议和问题欢迎反馈至 YFRobot论坛
购买方式:YFRobot 电子工作室