Creative Code

02_LED_ON_OFF-(1) 본문

Arduino(C,C++)

02_LED_ON_OFF-(1)

빛하루 2023. 8. 10. 09:14
const int LED = 13; // 첫번째 LED 13번 핀에 연결
const int LED2 = 12;  // 두번째 LED 12번 핀에 연결

void setup() {
  // put your setup code here, to run once:
  pinMode(LED,OUTPUT);   //첫번째 LED 출력모드
  pinMode(LED2,OUTPUT);  // 두번째 LED 출력모드
}

void loop() {
  // put your main code here, to run repeatedly:
  for (int i = 1; i<=500; i++) {
    digitalWrite(LED,LOW);    // LED 끄기
    delayMicroseconds(1000-i);   // LED duty비 조절
    digitalWrite(LED,HIGH);  // LED 켜기
    delayMicroseconds(i);   // LED duty비 조절
  }
  for (int i = 1; i<=500; i++) {
    digitalWrite(LED2,LOW);
    delayMicroseconds(1000-i);
    digitalWrite(LED2,HIGH);
    delayMicroseconds(i);
  }
}

'Arduino(C,C++)' 카테고리의 다른 글

04_Serial_Read  (0) 2023.08.10
EX02_DC_MOTOR  (0) 2023.08.10
02_LED_ON_OFF-(3)  (0) 2023.08.10
02_LDE_ON_OFF -(2)  (0) 2023.08.10
01_Serial_print.ino  (0) 2023.08.10