summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLLightStatus.h
blob: ee9fc4ae683ab2d20be2a6723c6950f1efb43741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//  SDLLightStatus.h
//

#import "SDLEnum.h"

/**
 * Reflects the status of Light.
 *
 */
typedef SDLEnum SDLLightStatus SDL_SWIFT_ENUM;

/**
 * @abstract Light status currently on.
 */
extern SDLLightStatus const SDLLightStatusOn;

/**
 * @abstract Light status currently Off.
 */
extern SDLLightStatus const SDLLightStatusOFF;

/**
 * @abstract Light status currently RAMP_UP.
 */
extern SDLLightStatus const SDLLightStatusRampUp;

/**
 * @abstract Light status currently RAMP_DOWN.
 */
extern SDLLightStatus const SDLLightStatusRampDown;

/**
 * @abstract Light status currently UNKNOWN.
 */
extern SDLLightStatus const SDLLightStatusUnknown;

/**
 * @abstract Light status currently INVALID.
 */
extern SDLLightStatus const SDLLightStatusInvalid;