arduino作业求助!!!急~~~~-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 4357|回复: 4

[已解决] arduino作业求助!!!急~~~~

[复制链接]
回帖奖励 3 金币 回复本帖可获得 1 金币奖励! 每人限 1 次(中奖概率 50%)
发表于 2013-10-16 16:51 | 显示全部楼层 |阅读模式
以下是作业内容:
  • Create a schematic showing how to connect a two photoresistors, an LED, a motor, and a relay to Arduino. Use different inputs and outputs (you can choose which ones) for each device, and use a transistor for the motor.
  • Write a sketch which will do the following:
    • One photoresistor controls the speed of the motor
    • The other photoresistor turns on the LED if the value is about 800, and turns on the relay if the value is below 800


大概翻译如下:
1.创造一个线路图,用arduino链接两个光敏电阻,一个LED,一个马达,和一个继电器,不同元件用不同的输出和输入程序(可以自己选),然后马达要用晶体管。
2.写一段程序然后能做到以下内容:
- 一个光敏电阻控制马达的速度
- 另外一个光敏电阻到达800数值的时候打开LED,并且当低于800的时候打开继电器。




好几个物体一连起来我就完整不知道要怎么办了啊。。。救命。。。虽说应该不难。。。能帮忙的写一万个感谢啊!!!
发表于 2013-10-17 11:32 | 显示全部楼层
这个也要求助啊?很基本的东西哦
发表于 2013-10-17 14:47 | 显示全部楼层
本帖最后由 i7456 于 2013-10-17 14:58 编辑

   5V-------R1k------photoresistors_1------GND
                         |
                        A1

   5V-------R1k------photoresistors_2------GND
                         |
                        A2

   D2------R1k-------LED------GND

   D3控制电机,三极管和电机的接法参考这里(继电器换成电机)http://blog.163.com/smart_84@126 ... 735200982394947632/   
   D4控制继电器,三极管和继电器的接法参考这里 http://blog.163.com/smart_84@126 ... 735200982394947632/

发表于 2013-10-17 15:02 | 显示全部楼层

回帖奖励 +1 金币

void setup()
{
  pinMode(2, OUTPUT);
  pinMode(4, OUTPUT);  
}

void loop()
{
  analogWrite(3, analogRead(1)/4);
  
  if(abs(analogRead(2)-800)<100)
    digitalWrite(2, HIGH);   
  else digitalWrite(2, LOW);  
  
  if(analogRead(2) < 800)
    digitalWrite(4, HIGH);
  else digitalWrite(4, LOW);

}
发表于 2022-9-21 08:56 | 显示全部楼层

回帖奖励 +1 金币

本帖最后由 perfect268 于 2022-10-8 11:21 编辑

void setup()
{
  pinMode(4, OUTPUT);
  pinMode(6, OUTPUT);  
}


您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-12-1 01:30 , Processed in 0.095996 second(s), 17 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表