56 lines
1.1 KiB
Objective-C
56 lines
1.1 KiB
Objective-C
//
|
|
// xuanduo3fModel.h
|
|
// Ifish
|
|
//
|
|
// Created by 祝发冬 on 2020/4/6.
|
|
// Copyright © 2020 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
#if 0
|
|
01
|
|
08
|
|
bcddc2450947
|
|
bcddc2450947
|
|
24 — 36字节
|
|
0101 照明
|
|
0201 换气
|
|
0301 杀菌
|
|
0401 恒温
|
|
024e 温度
|
|
0140 加热温度
|
|
007d 杀菌倒计时
|
|
01 报警开关
|
|
00c8 最低报警温度
|
|
012c 最高报警温度
|
|
2244 crc16校验码
|
|
#endif
|
|
@interface Xuanduo3fModel : NSObject
|
|
/// 换气 -- 气泵
|
|
@property (nonatomic, strong) NSString *gasPump;
|
|
/// 灯1
|
|
@property (nonatomic, strong) NSString *light;
|
|
|
|
/// 杀菌灯
|
|
@property (nonatomic, strong) NSString *uvLamp;
|
|
/// 杀菌倒计时PH
|
|
@property (nonatomic, strong) NSString *vuPHstatus;
|
|
/// 恒温
|
|
@property (nonatomic, strong) NSString *constTmep;
|
|
///温度
|
|
@property (nonatomic, strong) NSString *temperature;
|
|
/// 加热温度
|
|
@property (nonatomic, strong) NSString *heatingTemperature;
|
|
|
|
/// 报警开关
|
|
@property (nonatomic, strong) NSString *alarmSwitch;
|
|
/// 最低温
|
|
@property (nonatomic, strong) NSString *miniTemp;
|
|
/// 最高温
|
|
@property (nonatomic, strong) NSString *maxTemp;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|