Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (278 Bytes)

1 958 cmar
#include <dragonfly_lib.h>
2
3
int testmotors(void) {
4
    dragonfly_init(ALL_ON); // orbs will work if you only init ORBS
5
    //usb_init();
6
    usb_puts("usb turned on\n");
7
    delay_ms(1000);
8
9
    motor1_set(1, 220);
10
    motor2_set(1, 220);
11
    delay_ms(1000);
12
13
    return 0;
14
}
15