“Sensor-PIR/zh”的版本间的差异
502748957@qq.com(讨论 | 贡献) |
502748957@qq.com(讨论 | 贡献) |
||
第23行: | 第23行: | ||
|- | |- | ||
| '''接口'''||1.27mm间距的4Pin座 | | '''接口'''||1.27mm间距的4Pin座 | ||
+ | |- | ||
+ | | '''工作电流'''||12~15uA | ||
+ | |- | ||
+ | | '''工作温度'''||-20~85℃ | ||
|- | |- | ||
| '''特性描述'''||数字接口返回高或低,有热量运动时为高,没有运动时为低 | | '''特性描述'''||数字接口返回高或低,有热量运动时为高,没有运动时为低 | ||
第37行: | 第41行: | ||
**PIN1:GND | **PIN1:GND | ||
**PIN2:VCC | **PIN2:VCC | ||
− | ** | + | **PIN3:数字信号输出 |
**PIN4:NC(空) | **PIN4:NC(空) | ||
|width="35%" valign="top" align="center"| | |width="35%" valign="top" align="center"| | ||
第43行: | 第47行: | ||
|width="25%" valign="top" align="center"| | |width="25%" valign="top" align="center"| | ||
|} | |} | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
<br> | <br> | ||
---- | ---- | ||
第95行: | 第89行: | ||
<br> | <br> | ||
<p style="color: #333333;font-size:155%">'''文档'''</p> | <p style="color: #333333;font-size:155%">'''文档'''</p> | ||
− | '''[[File:Ef4055-pir am412 datasheet.pdf]]''' | + | *传感器文档:'''[[File:Ef4055-pir am412 datasheet.pdf]]''' |
+ | *传感器CAD图纸:'''[[File:Sensor_CAD.zip]]''' | ||
<br> | <br> | ||
---- | ---- |
2017年12月15日 (五) 08:57的版本
| |
|
技术规格
引脚
技术参数
编程手册 您可以通过Getting Started了解使用Arduino IDE编程控制模块。
void setup() {
// put your setup code here, to run once:
pinMode(6, INPUT); //PIR传感器接口
pinMode(8, OUTPUT); //LED接口
}
void loop() {
// put your main code here, to run repeatedly:
if (digitalRead(6) == 1) //如果传感器返回高(即有热量运动)
{
digitalWrite(8, HIGH); //亮灯
}else{
digitalWrite(8, LOW); //灭灯
}
}
文档
注意事项
示例教程
Q&A
历史
图库 |