Project

General

Profile

Statistics
| Revision:

root / branches / simulator / projects / simulator / libsim / orbs.c @ 942

History | View | Annotate | Download (633 Bytes)

1
#include "lights.h"
2
#include "util.h"
3

    
4
void orb_init(void)
5
{
6
        UNIMPLEMENTED
7
}
8

    
9
void orb_set(unsigned char red_led, unsigned char green_led,
10
                unsigned char blue_led)
11
{
12
        UNIMPLEMENTED
13
}
14

    
15
void orb1_set(unsigned char red_led, unsigned char green_led,
16
                unsigned char blue_led)
17
{
18
        UNIMPLEMENTED
19
}
20

    
21
void orb2_set(unsigned char red_led, unsigned char green_led,
22
                unsigned char blue_led)
23
{
24
        UNIMPLEMENTED
25
}
26

    
27
void orb_set_color(int col)
28
{
29
        UNIMPLEMENTED
30
}
31

    
32
void orb1_set_color(int col)
33
{
34
        UNIMPLEMENTED
35
}
36

    
37
void orb2_set_color(int col)
38
{
39
        UNIMPLEMENTED
40
}
41

    
42
void orb_disable(void)
43
{
44
        UNIMPLEMENTED
45
}
46

    
47
void orb_enable(void)
48
{
49
        UNIMPLEMENTED
50
}
51