EZOpenSDK  4.8.6
 全部  函数 属性
EZDetectorInfo.h
1 //
2 // EZDetectorInfo.h
3 // EzvizOpenSDK
4 //
5 // Created by DeJohn Dong on 16/1/12.
6 // Copyright © 2016年 Ezviz. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
12 @interface EZDetectorInfo : NSObject
13 
15 @property (nonatomic, copy) NSString *detectorSerial;
17 @property (nonatomic) NSInteger state;
19 @property (nonatomic, copy) NSString *type;
21 /* V("V", "视频设备"), I("I", "告警输入设备"), O("O", "告警输出设备"), PIR("PIR", "红外探测器"), FIRE("FIRE", "烟感探测器"),MAGNETOMETER("MAGNETOMETER", "门磁传感器"), GAS("GAS", "可燃气体"), WATERLOGGING("WATERLOGGING", "水浸"),CALLHELP("CALLHELP", "紧急按钮"), TELECONTROL("TELECONTROL", "遥控器"), ALERTOR("ALERTOR", "告警器"),KEYBOARD("KEYBOARD", "键盘"),CURTAIN("CURTAIN","幕帘"), MOVE_MAGNETOMETER("MOVE_MAGNETOMETER","单体门磁")
22  */
23 @property (nonatomic, copy) NSString *typeName;
25 @property (nonatomic, copy) NSString *location;
27 @property (nonatomic) NSInteger faultZoneStatus;
29 @property (nonatomic) NSInteger underVoltageStatus;
31 @property (nonatomic) NSInteger wirelessInterferenceStatus;
33 @property (nonatomic) NSInteger offlineStatus;
35 @property (nonatomic) BOOL atHomeEnable;
37 @property (nonatomic) BOOL outerEnable;
39 @property (nonatomic) BOOL sleepEnable;
40 
41 @end
NSInteger wirelessInterferenceStatus
无线干扰状态,0恢复,1产生
Definition: EZDetectorInfo.h:31
NSInteger faultZoneStatus
防区故障状态,0恢复,1产生
Definition: EZDetectorInfo.h:27
此类为探测器信息对象
Definition: EZDetectorInfo.h:12
NSInteger underVoltageStatus
电池欠压状态,0恢复,1产生
Definition: EZDetectorInfo.h:29
BOOL atHomeEnable
在家模式是否开启
Definition: EZDetectorInfo.h:35
NSString * type
探测器类型
Definition: EZDetectorInfo.h:19
NSString * location
方位信息,可用于客户自定义名称
Definition: EZDetectorInfo.h:25
NSInteger state
探测器状态,探测器与A1是否连通:0-非联通,1-联通
Definition: EZDetectorInfo.h:17
NSInteger offlineStatus
设备离线状态,0恢复,1产生
Definition: EZDetectorInfo.h:33
BOOL sleepEnable
睡眠模式是否开启
Definition: EZDetectorInfo.h:39
NSString * typeName
探测器名称
Definition: EZDetectorInfo.h:23
NSString * detectorSerial
探测器序列号
Definition: EZDetectorInfo.h:15
BOOL outerEnable
外出模式是否开启
Definition: EZDetectorInfo.h:37