萌新问题:人体红外感应模块
刚刚做了一个可以自动开合的垃圾桶但是人体红外感应模块好像有延时啊有没有办法解决的
直接对模块进行编程
可以把你代码放上来,大家诊断一下。 #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);
}
} 你要不要让垃圾桶再做点什么 = =
比如说 走近的时候 说一句 撩人的“啊~~人家要开了哦~”
可以调节黄色螺丝试试
Understand 发表于 2017-3-30 12:36
#include
int sensorPin = 2;
Servo myservo1;
int sensorPin = 2;换成别的Pin试试,不行换个PIR模块。 gada888 发表于 2017-3-31 11:09
int sensorPin = 2;换成别的Pin试试,不行换个PIR模块。
好吧我试试
页:
[1]