summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLDeviceLevelStatus.h
blob: fb6a58d24e627c2d00ace8f8c09e0a581336cfee (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
41
42
//  SDLDeviceLevelStatus.h
//


#import "SDLEnum.h"

/**
 * Reflects the reported battery status of the connected device, if reported. Used in DeviceStatus.
 *
 * @since SDL 2.0
 */
typedef SDLEnum SDLDeviceLevelStatus SDL_SWIFT_ENUM;

/**
 * Device battery level is zero bars
 */
extern SDLDeviceLevelStatus const SDLDeviceLevelStatusZeroBars;

/**
 * Device battery level is one bar
 */
extern SDLDeviceLevelStatus const SDLDeviceLevelStatusOneBar;

/**
 * Device battery level is two bars
 */
extern SDLDeviceLevelStatus const SDLDeviceLevelStatusTwoBars;

/**
 * Device battery level is three bars
 */
extern SDLDeviceLevelStatus const SDLDeviceLevelStatusThreeBars;

/**
 * Device battery level is four bars
 */
extern SDLDeviceLevelStatus const SDLDeviceLevelStatusFourBars;

/**
 * Device battery level is unknown
 */
extern SDLDeviceLevelStatus const SDLDeviceLevelStatusNotProvided;