Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (247 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
        while (1) {
14
        bom_set_leds(BOM_ALL);
15
16
        bom_on();
17
        }
18
19
        return 0;
20
}