You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
645 B
28 lines
645 B
// |
|
// JLOxygenSturationRemindModel.h |
|
// JL_BLEKit |
|
// |
|
// Created by EzioChan on 2022/2/17. |
|
// Copyright © 2022 www.zh-jieli.com. All rights reserved. |
|
// |
|
|
|
#import "JLwSettingModel.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface JLOxygenSturationRemindModel : JLwSettingModel |
|
///开关 |
|
@property(nonatomic,assign)BOOL status; |
|
/// 测量模式 |
|
@property(nonatomic,assign)WatchOxygenMsmType rType; |
|
|
|
|
|
-(instancetype)initWithData:(NSData *)data; |
|
|
|
/// 创建一个新的传感器设置对象 |
|
/// @param type 测量类型 |
|
/// @param status 开团状态 |
|
- (instancetype)initWithModel:(WatchOxygenMsmType)type Status:(BOOL)status; |
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|