Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / diagnostic_station / stationCode / BOM_LED_testing / main.c @ 1061

History | View | Annotate | Download (231 Bytes)

1 1059 jsexton
#include <dragonfly_lib.h>
2
#include <encoders.h>
3
#include <bom.h>
4
5
int main(void)
6
{
7
        /* initialize components */
8
        dragonfly_init(ALL_ON);
9
        orb_enable();
10
11
        orb1_set_color(YELLOW);
12
13
        bom_set_leds(BOM_ALL);
14
15
        bom_on();
16
17
        return 0;
18
}