基于arduino的一个自动感应垃圾桶的程序,,
答案:2 悬赏:0 手机版
解决时间 2021-03-27 12:32
- 提问者网友:感性作祟
- 2021-03-26 14:12
基于arduino的一个自动感应垃圾桶的程序,,
最佳答案
- 五星知识达人网友:我住北渡口
- 2021-03-26 14:44
你需要根据你提供的设计方案(电路图、结构、传动装置、传感器类型等等)才能写程序!
全部回答
- 1楼网友:上分大魔王
- 2021-03-26 16:03
#include
#include "SR04.h"
Servo myservo; // create servo object to control a servo
#define TRIG_PIN 2
#define ECHO_PIN 3
SR04 sr04 = SR04(ECHO_PIN, TRIG_PIN);
long a;
void setup() {
myservo.attach(9); // attaches the servo on pin 9 to the servo object
}
void loop() {
a = sr04.Distance();
delay(200);
if (a <= 40)
{
myservo.write(180); // sets the servo position according to the scaled value
delay(1000);
}
else
{
delay(1000);
myservo.write(0);
delay(15);
}
// waits for the servo to get there
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯