Cubic Hand project for EECS 249A course.

Dependencies:   MMA8451Q TSI cc3000_hostdriver_mbedsocket NVIC_set_all_priorities mbed Multi_WS2811

main.cpp

Committer:
kalbers
Date:
2014-12-05
Revision:
3:5f5d75cba8e1
Parent:
1:587189fb6d87
Child:
13:c701f1122797

File content as of revision 3:5f5d75cba8e1:


#include "mbed.h"
#include "main.h"
#include "DataGlove.h"


DataGlove MasterGlove;

int main() 
{
    MasterGlove.Init();
    printf("DataGlove Cube Client\r\n");
    while(true) 
    {
        MasterGlove.Receive();
        printf("Looping \r\n");
     }
}