Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (299 Bytes)

1
extern int testlcd();
2
extern int testrangefinders();
3
extern int testanalog();
4
extern int testtokenring();
5
extern int testmotors();
6

    
7
int main(void) {
8
  //testlcd();
9
  //testrangefinders();
10
  //testanalog();
11
  //testtokenring();
12
  //testencoders();
13
  //testlights();
14
  testmotors();
15
  
16
        return 0;
17
}
18

    
19