Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (615 Bytes)

1
#include "lights.h"
2

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

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

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

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

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

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

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

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

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