“尖叫拍照”的版本间的差异
(→下载程序) |
Zhangfengfeng(讨论 | 贡献) (→设备) |
||
(未显示同一用户的2个中间版本) | |||
第22行: | 第22行: | ||
| [[mCookie-BM/zh]]||1||电池管理 | | [[mCookie-BM/zh]]||1||电池管理 | ||
|- | |- | ||
− | | [[ | + | | [[Sensor-MIC/zh]]||1||声音检测传感器 |
|- | |- | ||
− | | [[ | + | | [[Sensor-IR Sensor/zh]]||1||红外发送传感器 |
|} | |} | ||
[[File: take_photo-module.jpg|600px|center]] | [[File: take_photo-module.jpg|600px|center]] |
2017年5月31日 (三) 07:45的最新版本
Language | English |
---|
目的对着MIC大声说“Cheese!”会发射红外信号,相机就会拍摄一张照片。 原理设备
下载程序
软件调试
#define PHOTO 0xB4B8F
#define mic_pin A0
#define IR_pin 6
#define voice 400#define voice 400
if (voice_data > voice && take == false)
{
time = millis();
num++;
delay(10);
Serial.println(num);
if (num > 20)
{
take = true;
takePhoto();
Serial.println("takePhoto...");
}
}
else if (millis() - time > 1000 )//1s之后才可以再次拍摄
{
voice_data = analogRead(mic_pin);
if (voice_data < voice)
{
num = 0;
take = false;
}
time = millis();
}
void takePhoto()
{
for (int i = 0; i < 3; i++)
{
irsend.sendSony(PHOTO, 20); // Sony code
delay(10);
}
}
搭建硬件
注意结果冲着MIC传感器大喊,可以触发相机拍照。 视频 |