#include <test.h>
Public Member Functions | |
TestClass (unsigned char led) | |
void | testFunction (unsigned char led) |
Definition at line 4 of file test.h.
TestClass::TestClass | ( | unsigned char | led | ) | [inline] |
Definition at line 6 of file test.h.
References BoardController::blinkLED().
00006 { 00007 for (int i=0; i<5; i++) { 00008 BoardController::blinkLED(led, 1, 500); 00009 } 00010 }
void TestClass::testFunction | ( | unsigned char | led | ) | [inline] |
Definition at line 12 of file test.h.
References BoardController::blinkLED().
00012 { 00013 for (int i=0; i<5; i++) { 00014 BoardController::blinkLED(led, 1, 500); 00015 } 00016 }