Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (215 Bytes)

1
#include <dragonfly_lib.h>
2

    
3
int main(void)
4
{
5
  int i;
6
  dragonfly_init(ALL_ON);
7

    
8
  motor1_set(1, 200);
9
  motor2_set(1, 150);
10

    
11
  usb_puts("Hello, I am a robot\n");
12

    
13
  while(1){
14
    simulator_do();
15
  }
16
  return 0;
17
}
18