External Interrupt example for WIZwiki-W7500 Academy

Dependencies:   mbed

Fork of GPIOIn_INT_HelloWorld_WIZwiki-W7500 by Lawrence Lee

main.cpp

Committer:
joon874
Date:
2015-07-09
Revision:
4:296a62c9cb15
Parent:
3:f3fffb66c845
Child:
6:41c9ebdce05b

File content as of revision 4:296a62c9cb15:

/* GPIO Input Interrupt Example Program */
 
#include "mbed.h"
 
InterruptIn mysw(D10);
DigitalOut myled1(LED1);
DigitalOut myled2(LED2);
 
void exin(){
    myled2 = !myled2;
}
 
int main() {
    
    mysw.rise(&exin);    // attach the address of the exin function to the rising edge
    while(1) {           // wait around, interrupts will interrupt this!
        myled1 = !myled1;
        wait(1.0);
    }
    
}