arduino
아날로그 입력
수색…
통사론
-
analogRead(pin)
// 주어진 핀으로부터 읽는다.
비고
Serial.println(val)
시리얼 통신에 대한 도움말을 참조하십시오 시리얼 통신을
아날로그 값 인쇄
int val = 0; // variable used to store the value
// coming from the sensor
void setup() {
Serial.begin(9600); //Begin serializer to print out value
// Note: Analogue pins are
// automatically set as inputs
}
void loop() {
val = analogRead(0); // read the value from
// the sensor connected to A0.
Serial.println(val); //Prints the value coming in from the analog sensor
delay(10); // stop the program for
// some time
}
아날로그 핀에서 전압 가져 오기
아날로그 핀은 배터리 모니터링 또는 아날로그 장치와의 인터페이싱에 유용한 전압을 읽는 데 사용할 수 있습니다. 기본적으로 AREF 핀은 arduino의 작동 전압과 같지만 외부 적으로 다른 값으로 설정할 수 있습니다. 판독 할 전압이 입력 전압보다 큰 경우, 아날로그 전압을 낮추기 위해 전위차가 필요합니다.
#define analogPin 14 //A0 (uno)
#define AREFValue 5 //Standard for 5V Arduinos
#define ADCResolution 1023 //Standard for a 10bit ADC
int ADCValue = 0;
float voltage = 0;
void setup()
{
Serial.begin(9600);
}
void loop()
{
readADC();
Serial.print(voltage); Serial.println("V");
}
void readADC()
{
ADCValue = analogRead(analogPin);
float = ( ( (float)ADCValue/ADCRange ) * AREFValue ); //Convert the ADC value to a float, devide by the ADC resolution and multiply by the AREF voltage
}
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow