jin young sung / Mbed 2 deprecated Led Clock Download Featured

Dependencies:   mbed

main.cpp

Committer:
darzento
Date:
2015-04-03
Revision:
4:a1cb6536f303
Parent:
3:26633efdb309
Child:
5:2ead41027963

File content as of revision 4:a1cb6536f303:

#include "mbed.h"

DigitalOut myled(LED1);
InterruptIn Hall();

void sensing();

int main() 
{
    Hall.rise(&Hall);
    
    while(1)
    {    
    
    }
}

void sensing()
{
    
    
}