“Sensor-PIR/zh”的版本间的差异
502748957@qq.com(讨论 | 贡献) |
502748957@qq.com(讨论 | 贡献) |
||
第69行: | 第69行: | ||
*该例程效果为:当PIR检测到热量运动时,LED灯点亮,当一段时间检测不到热量运动时,LED灯熄灭 | *该例程效果为:当PIR检测到热量运动时,LED灯点亮,当一段时间检测不到热量运动时,LED灯熄灭 | ||
<source lang="cpp"> | <source lang="cpp"> | ||
+ | #define PIR_PIN 6 | ||
+ | #define LED_PIN 8 | ||
void setup() { | void setup() { | ||
// put your setup code here, to run once: | // put your setup code here, to run once: | ||
− | pinMode( | + | pinMode(PIR_PIN, INPUT); //PIR传感器接口 |
− | pinMode( | + | pinMode(LED_PIN, OUTPUT); //LED接口 |
} | } | ||
void loop() { | void loop() { | ||
// put your main code here, to run repeatedly: | // put your main code here, to run repeatedly: | ||
− | if (digitalRead( | + | if (digitalRead(PIR_PIN)) //如果传感器返回高(即有热量运动) |
{ | { | ||
− | digitalWrite( | + | digitalWrite(LED_PIN, HIGH); //亮灯 |
}else{ | }else{ | ||
− | digitalWrite( | + | digitalWrite(LED_PIN, LOW); //灭灯 |
} | } | ||
} | } |
2017年12月15日 (五) 09:07的版本
| |
|
技术规格
引脚
技术参数
编程手册 您可以通过Getting Started了解使用Arduino IDE编程控制模块。
#define PIR_PIN 6
#define LED_PIN 8
void setup() {
// put your setup code here, to run once:
pinMode(PIR_PIN, INPUT); //PIR传感器接口
pinMode(LED_PIN, OUTPUT); //LED接口
}
void loop() {
// put your main code here, to run repeatedly:
if (digitalRead(PIR_PIN)) //如果传感器返回高(即有热量运动)
{
digitalWrite(LED_PIN, HIGH); //亮灯
}else{
digitalWrite(LED_PIN, LOW); //灭灯
}
}
文档
注意事项
示例教程
Q&A
历史
图库 |