Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / test / main.c @ 952

History | View | Annotate | Download (256 Bytes)

1 789 dsschult
extern int testlcd();
2 791 dsschult
extern int testrangefinders();
3 800 jsexton
extern int testanalog();
4 848 dsschult
extern int testtokenring();
5 789 dsschult
6
int main(void) {
7 791 dsschult
  //testlcd();
8 800 jsexton
  //testrangefinders();
9 848 dsschult
  //testanalog();
10 867 justin
  //testtokenring();
11 944 cmar
  //testencoders();
12
  testlights();
13 789 dsschult
14
        return 0;
15
}
16