2017年9月5日 星期二

Lesson 1. arduino Blink LED

The Arduino UNO R3 board has rows of connectors along both sides that are used to connect to several electronic devices and plug-in 'shields' that extends its capability. It also has a single LED that you can control from your sketches. This LED is built onto the UNO R3 board and is often referred to as the 'L' LED as this is how it is labeled on the board.

this is to show you how to control LED .you can think of it as a output device .after you practice this one .later you would know how to control and interact with other components. 



code ( please copy and upload sketch to your board )

Everything between /* and */ or after // is a block comment; it explains what the sketch is for. 

/*
  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

}


Component Required: 

(1) x Sintron Arduino-Compatible Uno R3
Share:

3 則留言:

  1. The information is very useful. I am searching for this information for a long time. Thanks for sharing. LED Sign Boards in Chennai Name Board Makers in Chennai

    回覆刪除
    回覆
    1. you are welcome, and thanks for lettings us know it's useful !

      刪除
  2. Hard Rock Hotel and Casino Las Vegas - MapYRO
    Information, hours and contact 문경 출장마사지 information for Hard Rock 포항 출장샵 Hotel and Casino Las Vegas, 37002 충주 출장샵 Las Vegas Blvd S, Las Vegas, NV, 출장샵 89109. 여수 출장샵

    回覆刪除

Sintron

Search This Blog

技術提供:Blogger.

Blog Archive

Arduino Super Mario tone with Buzzer