使用Arduino进行简单的继电器控制

时间:2014-10-30 22:37:32

标签: matlab arduino switch-statement controls

我是Arduino编码的新手。我以前做过Java和Matlab。

我设计了一个简单的重播电路,如下所示:  enter image description here

我认为它设置正确,但如果没有,请告诉我。

我基本上需要简单的代码来无限期地触发继电器开启和关闭1秒的时间间隔,或直到我断开电源。

任何帮助都会很棒。

谢谢!

1 个答案:

答案 0 :(得分:1)

您可以简单地使用Arduino IDE附带的Blink示例。将继电器输出控制器连接到引脚13(黄色线),然后就可以了。

   /*
  Blink
  Turns on an LED on for one second, then off for one second, repeatedly.

  This example code is in the public domain.
 */

// Pin 13 has an LED connected on most Arduino boards.
// give it a name:
int led = 13;

// the setup routine runs once when you press reset:
void setup() {                
  // initialize the digital pin as an output.
  pinMode(led, OUTPUT);     
}

// the loop routine runs over and over again forever:
void loop() {
  digitalWrite(led, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);               // wait for a second
  digitalWrite(led, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);               // wait for a second
}

更好的是使用闪烁而没有延迟的例子