Trackball based on the NXP LPC11U24 and the ADNS-9500

Dependencies:   ADNS9500 USBDevice mbed 25LCxxx_SPI

main.cpp

Committer:
xxann5
Date:
2012-11-04
Revision:
0:eb8c05a5b8a7
Child:
1:34085d7e0991

File content as of revision 0:eb8c05a5b8a7:

#include "mbed.h"

DigitalOut myled(LED1);

int main() {
    while(1) {
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);
    }
}