SINTEF-9012 / JArduino

Program your Arduino in Java
https://github.com/SINTEF-9012/JArduino/wiki
176 stars 63 forks source link

interrupt0 is called when pin is PIN_3_INT1 #81

Open marron9999 opened 5 years ago

marron9999 commented 5 years ago

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();
                }
            }
        });
    }