button Interrupt : ISR (인터럽트 핸들러) // mode : Falling, Rising, Change, Low
const int buttonPin1 = 2; //인터럽트 0 const int buttonPin2 = 3; //인터럽트 1 const int buttonPin3 = 4; void setup() { Serial.begin(9600); pinMode(buttonPin1, INPUT); pinMode(buttonPin2, INPUT); pinMode(buttonPin3, INPUT); ////////////////////////////////////////// // 0 :인터럽트 번호 (UNO 0,1 인터럽트 번호) // buttonInterrupt : ISR (인터럽트 핸들러) // mode : Falling, Rising, Change, Low //+++++++++++++++++++++++++++++++..
2020. 9. 1.