00001 #ifndef TEST_H 00002 #define TEST_H 1 00003 00004 class TestClass { 00005 public: 00006 TestClass(unsigned char led) { 00007 for (int i=0; i<5; i++) { 00008 BoardController::blinkLED(led, 1, 500); 00009 } 00010 } 00011 00012 void testFunction(unsigned char led) { 00013 for (int i=0; i<5; i++) { 00014 BoardController::blinkLED(led, 1, 500); 00015 } 00016 } 00017 }; 00018 00019 00020 #endif