| 123456789101112131415 |
- /* pinMode(MYPIN1, INPUT_PULLUP);
- attachPinChangeInterrupt(MYPIN1, quicfunc, FALLING); // add more attachInterrupt code as required
- pinMode(MYPIN2, INPUT_PULLUP);
- attachPinChangeInterrupt(MYPIN2, quicfunc, FALLING);
- pinMode(MYPIN3, INPUT_PULLUP);
- attachPinChangeInterrupt(MYPIN3, pin3func, CHANGE);
- */
-
- // pinMode(ROTTARY_SW_sw, INPUT); //set the pin to input
- // digitalWrite(ROTTARY_SW_sw, HIGH); //use the internal pullup resistor
-
- #ifdef DISABLE_LOOP || DEBUG
- Serial.println("#included _PCINT/_PCINT_setup.h ");
- #endif
|