features:1.新绚多设备适配
2.修复品牌展示页&摄像头页面适配bug
This commit is contained in:
+73
@@ -0,0 +1,73 @@
|
||||
//
|
||||
// Xuanduo2Model.h
|
||||
// Ifish
|
||||
//
|
||||
// Created by Alex on 2019/4/20.
|
||||
// Copyright © 2019 lianlian. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
#if 0
|
||||
01
|
||||
08
|
||||
807d3a42a200
|
||||
807d3a42a200
|
||||
2c — 44字节
|
||||
0101 增氧
|
||||
0201 灯1
|
||||
0301 灯2
|
||||
0401 循环泵
|
||||
0501 杀菌
|
||||
0601 造浪
|
||||
0701 加热制冷
|
||||
01 加热控制状态
|
||||
00e1 水温
|
||||
00fa 加热温度
|
||||
00 护理灯开关
|
||||
007d 电量
|
||||
00 报警开关
|
||||
00c8 最低报警温度
|
||||
012c 最高报警温度
|
||||
bfec crc16校验码
|
||||
#endif
|
||||
|
||||
@interface Xuanduo2Model : NSObject
|
||||
|
||||
/// 增氧泵 -- 气泵
|
||||
@property (nonatomic, strong) NSString *gasPump;
|
||||
/// 灯1
|
||||
@property (nonatomic, strong) NSString *light1;
|
||||
/// 灯2
|
||||
@property (nonatomic, strong) NSString *light2;
|
||||
/// 循环泵 -- 水泵
|
||||
@property (nonatomic, strong) NSString *waterPump;
|
||||
/// 杀菌灯
|
||||
@property (nonatomic, strong) NSString *uvLamp;
|
||||
/// 造浪泵
|
||||
@property (nonatomic, strong) NSString *waveMakingPump;
|
||||
/// 加热制冷状态
|
||||
@property (nonatomic, strong) NSString *status;
|
||||
/// 加热状态
|
||||
@property (nonatomic, strong) NSString *heatStatus;
|
||||
/// 水温
|
||||
@property (nonatomic, strong) NSString *waterTemperature;
|
||||
/// 加热温度
|
||||
@property (nonatomic, strong) NSString *heatingTemperature;
|
||||
/// 护理灯开关
|
||||
@property (nonatomic, strong) NSString *huliLight;
|
||||
/// 电量
|
||||
@property (nonatomic, strong) NSString *electricity;
|
||||
/// 报警开关
|
||||
@property (nonatomic, strong) NSString *alarmSwitch;
|
||||
/// 最低温
|
||||
@property (nonatomic, strong) NSString *miniTemp;
|
||||
/// 最高温
|
||||
@property (nonatomic, strong) NSString *maxTemp;
|
||||
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
Reference in New Issue
Block a user