Get Lift view guesture
Function table
__IDO_FUNCTABLE__.funcTable30Model.getUpHandGesture
Lift view guesture model description
- IDOSetHandUpInfoBuletoothModel
| Parameter | Description | Notes |
|---|---|---|
| isOpen | switch | bool |
| isHasTimeRange | Is there a time gap | bool |
| showSecond | Display time | 3~10 second |
| startHour | start (hour) | int |
| startMinute | start(minute) | int |
| endHour | end (hour) | int |
| endMinute | end (minute) | int |
Command code
Objc:
[IDOFoundationCommand getHandUpGestureCommand:^(int errorCode, IDOSetHandUpInfoBuletoothModel * _Nullable data) {
if (errorCode == 0) {
//get success
}else if (errorCode == 6) {
//device not supported
}else {
//get failed
}
}];
Swift:
IDOFoundationCommand.getHandUpGestureCommand { (errorCode, model) in
if errorCode == 0 {
//get success
}else if errorCode == 6 {
//device not supported
}else {
//get failed.
}
};