조도센서
About Lesson

기본설정

  1. 아두이노 설치 및 환경설정이 완료된 상태여야 합니다.

2. 아래 소스코드를 보드설정-컴파일-업로드 과정을 진행 후 실행하세요

소스 코드

– 코드설명 : 실시간 조도센서 값을 아두이노 시리얼모니터에 출력합니다.

				
					const int sensorPin = A0; // 조도 센서의 핀 번호

void setup() {
  Serial.begin(9600); // 시리얼 통신 시작
}

void loop() {
  int sensorValue = analogRead(sensorPin); // 조도 센서의 값 읽기
  Serial.print("Light Sensor Value: "); // 시리얼 모니터에 출력
  Serial.println(sensorValue); // 시리얼 모니터에 조도 센서 값 출력
  delay(1000); // 1초 대기
}