| 1234567891011 |
- /* 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
-
|