JArduino icon indicating copy to clipboard operation
JArduino copied to clipboard

interrupt0 is called when pin is PIN_3_INT1

Open marron9999 opened this issue 5 years ago • 0 comments

interrupt0 is called when pin is PIN_3_INT1

 } else if (interrupt == InterruptPin.PIN_3_INT1) {
        interruptRoutineExecutor.submit(new Runnable() {
            public void run() {
				try {
					interrupt0();
				} catch (InvalidPinTypeException e) {
					e.printStackTrace();
				}
            }
        });
    }

marron9999 avatar Dec 26 '18 07:12 marron9999