Project

General

Profile

Statistics
| Revision:

root / branches / simulator / projects / template / main.c @ 1078

History | View | Annotate | Download (188 Bytes)

1
#include <dragonfly_lib.h>
2

    
3
int main(void)
4
{
5
        dragonfly_init(ALL_ON);
6
        bom_leds_on(BOM_ALL);
7
        motor1_set(1, 200);
8
        motor2_set(1, 150);
9
        while(1){
10
       simulator_do();
11
  }
12
        return 0;
13
}
14

    
15