본문 바로가기
임베디드 컴퓨팅/Arduino

[ARDUINO] 아두이노 튜토리얼 07 : 컬러 플래시

by makepluscode 2022. 7. 2.
반응형

아두이노 튜토리얼 07 : 컬러 플래시

아두이노 기초 튜토리얼 목표

이번 튜토리얼에서는 ARDUINO 아두이노로 컬러 플래시를 제어하는 코드를 작성하고 실습한다.

아두이노로 컬러플래시를 조정해보자!

Arduino Basic #007 : Color Flash Control (아두이노, 37센서 영상강좌)

실습코드

아두이노 스케치를 설치하고 다음의 코드를 작성한다.

void setup() {
    // put your setup code here, to run once:
    pinMode(12, OUTPUT);  // 7 color flash 연결 Port
    digitalWrite(12, LOW);    // 7 color flash 연결 Port에 기본 값 적용
}

void loop() {
    // put your main code here, to run repeatedly:
    digitalWrite(12, HIGH);   // 7 color flash ON 
    delay(7000);              //  7초 유지
    digitalWrite(12, LOW);    // 7 color flash ON 
    delay(1000);              //  1초 유지
}

위 코드의 간단한 설명은 다음과 같다.

  1. 아두이노의 12번 포트와  Color Flash 센서를 연결한다.
  2. 7초와 1초 간격으로 Color Flash 센서에 High, Low 신호를 번갈아가면서 보낸다.

동영상 튜토리얼

전체 코딩과 실습은 다음 동영상을 참고한다.

https://youtu.be/-tkpWMA5Qww?list=PL46rwaN5jZCnwEoje4n_-rWZJqCbebBeF 

Arduino Basic #007 : Color Flash Control (아두이노, 37센서 영상강좌)

작성 코드는 makepluscode github 를 참고한다.

https://github.com/makepluscode/arduino-tutorial-basic

 

GitHub - makepluscode/arduino-tutorial-basic: Repositories for Arduino Tutorial Basic.

Repositories for Arduino Tutorial Basic. Contribute to makepluscode/arduino-tutorial-basic development by creating an account on GitHub.

github.com

반응형