// 아두이노 나노 보드 경우 A6 , A7은 아날로그 전용 핀입니다. 
// 코드상에  ezButton20 , 21은 작동 안하는 코드 및 핀입니다.
// 디지털 2번 ,3번으로 옮길수있지만 채널 7개도 충분한듯 싶어
// 수정 안하겠습니다. 


#include <ezButton.h>

const int numChannels = 9;
ezButton buttons[numChannels] = {ezButton(13), ezButton(14), ezButton(15), ezButton(16),
                                 ezButton(17), ezButton(18), ezButton(19), ezButton(20),
                                 ezButton(21)};
const int relayPins[numChannels] = {12, 11, 10, 9, 8, 7, 6, 5, 4};

void setup()
{
  Serial.begin(9600);

  for (int i = 0; i < numChannels; i++)
  {
    buttons[i].setDebounceTime(50);
    pinMode(relayPins[i], OUTPUT);
    digitalWrite(relayPins[i] , HIGH);
  }
}

void loop()
{
  for (int i = 0; i < numChannels; i++)
  {
    buttons[i].loop();

    if (buttons[i].isPressed())
    {
      digitalWrite(relayPins[i], LOW);
      Serial.print("Button ");
      Serial.print(i);
      Serial.println(" is pressed!");
      Serial.print("Relay ");
      Serial.print(i);
      Serial.println(": Normal Open => Normal Close");
    }

    if (buttons[i].isReleased())
    {
      digitalWrite(relayPins[i], HIGH);
      Serial.print("Button ");
      Serial.print(i);
      Serial.println(" is released!");
      Serial.print("Relay ");
      Serial.print(i);
      Serial.println(": Normal Close => Normal Open");
    }
  }
}
NOCOMNCVCCGNDINLED1PWRRelay Module
NOCOMNCVCCGNDINLED1PWRRelay Module
NOCOMNCVCCGNDINLED1PWRRelay Module
NOCOMNCVCCGNDINLED1PWRRelay Module
NOCOMNCVCCGNDINLED1PWRRelay Module
NOCOMNCVCCGNDINLED1PWRRelay Module
NOCOMNCVCCGNDINLED1PWRRelay Module
NOCOMNCVCCGNDINLED1PWRRelay Module
NOCOMNCVCCGNDINLED1PWRRelay Module