Understand 发表于 2017-3-29 13:18:19

萌新问题:人体红外感应模块

刚刚做了一个可以自动开合的垃圾桶但是人体红外感应模块好像有延时啊
有没有办法解决的
直接对模块进行编程

gada888 发表于 2017-3-29 17:03:49

可以把你代码放上来,大家诊断一下。

Understand 发表于 2017-3-30 12:36:30

#include <Servo.h>
int sensorPin = 2;
Servo myservo1;
Servo myservo2;
int sensorState = 0;
void setup() {
myservo1.attach(10);
myservo2.attach(11);
pinMode(sensorPin, INPUT);
}
void loop() {
sensorState = digitalRead(sensorPin);
if (sensorState == HIGH) {
    myservo1.write(90);
    myservo2.write(0);
}
else {
    myservo1.write(0);
    myservo2.write(90);
}
}

iooops 发表于 2017-3-30 21:26:17

你要不要让垃圾桶再做点什么 = =
比如说 走近的时候 说一句 撩人的“啊~~人家要开了哦~”

gray6666 发表于 2017-3-31 08:55:58

可以调节黄色螺丝试试

gada888 发表于 2017-3-31 11:09:23

Understand 发表于 2017-3-30 12:36
#include
int sensorPin = 2;
Servo myservo1;


int sensorPin = 2;换成别的Pin试试,不行换个PIR模块。

Understand 发表于 2017-4-1 12:48:26

gada888 发表于 2017-3-31 11:09
int sensorPin = 2;换成别的Pin试试,不行换个PIR模块。

好吧我试试
页: [1]
查看完整版本: 萌新问题:人体红外感应模块