Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (169 Bytes)

1
extern int testlcd();
2
extern int testrangefinders();
3
extern int testanalog();
4

    
5
int main(void) {
6
  //testlcd();
7
  //testrangefinders();
8
  testanalog();
9
  
10
        return 0;
11
}
12

    
13