Xsens DOT iOS SDK  ©2022 Xsens Technologies - Version: 2022.0.0
XsensDotBatteryInfo.h
Go to the documentation of this file.
1 //
2 // XsensDotBatteryInfo.h
3 // XsensDotSdk
4 //
5 // Created by Nick Yang on 2019/5/13.
6 // Copyright © 2019 Xsens. All rights reserved.
7 //
8 
13 #import <Foundation/Foundation.h>
14 
15 NS_ASSUME_NONNULL_BEGIN
16 
17 @interface XsensDotBatteryInfo : NSObject
18 
22 @property (assign, nonatomic, readonly) BOOL chargeState;
23 
27 @property (assign, nonatomic, readonly) NSInteger value;
28 
34 + (instancetype)infoWithChargeState:(BOOL)chargeState value:(NSInteger)value;
35 
40 - (NSString *)description;
41 
42 @end
43 
44 NS_ASSUME_NONNULL_END
Definition: XsensDotBatteryInfo.h:18
NSInteger value
Definition: XsensDotBatteryInfo.h:27
NSString * description()
BOOL chargeState
Definition: XsensDotBatteryInfo.h:22