블로그 이미지
래머
오늘도 열심히 개발하는 개발자입니다.

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

Notice

2015. 5. 10. 21:04 아두이노

http://www.arduino.cc/en/Reference/DigitalRead

digitalRead()

Description

Reads the value from a specified digital pin, either HIGH or LOW.

주어진 핀으로 부터, HIGH또는 LOW값을 읽는다.

Syntax

digitalRead(pin)

Parameters

pin: the number of the digital pin you want to read (int), 읽기를 원하는 핀번호

Returns

HIGH or LOW

Example

Sets pin 13 to the same value as pin 7, declared as an input.

int ledPin = 13; // LED connected to digital pin 13
int inPin = 7;   // pushbutton connected to digital pin 7
int val = 0;     // variable to store the read value

void setup()
{
  pinMode(ledPin, OUTPUT);      // sets the digital pin 13 as output
  pinMode(inPin, INPUT);      // sets the digital pin 7 as input
}

void loop()
{
  val = digitalRead(inPin);   // read the input pin
  digitalWrite(ledPin, val);    // sets the LED to the button's value
}

Note

If the pin isn't connected to anything, digitalRead() can return either HIGH or LOW (and this can change randomly).

만일 핀에 아무것도 연결하지 않았다면, digitalRead()함수는 HIGH또는 LOW중하나를 리턴할 수있다(그리고 이것은 랜덤하게 바뀐다).

The analog input pins can be used as digital pins, referred to as A0, A1, etc.

아날로그 입력핀은 디지털핀으로 사용될 수 있으며, A0, A1, 등과 같이 참조된다.

See also

Reference Home

Corrections, suggestions, and new documentation should be posted to the Forum.

The text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.

'아두이노' 카테고리의 다른 글

아두이노 tone()함수  (0) 2015.05.12
HC-SR04 초음파센서  (0) 2015.05.11
아두이노 digitalWrite() 함수  (0) 2015.05.10
아두이노 나노  (0) 2015.05.07
L9110S 소형모터 드라이버  (0) 2015.05.07
posted by 래머