package com.hdl.sdk.ttl.HDLAppliances.Config;
|
|
/**
|
* Created by Tommy on 2018/4/22.
|
*/
|
|
public class HDLApConfig {
|
|
public static final int TYPE_LIGHT_DIMMER = 101;//调光回路
|
public static final int TYPE_LIGHT_RELAY = 102;//开关回路
|
public static final int TYPE_LIGHT_MIX_DIMMER = 103;//混合调光类
|
public static final int TYPE_LIGHT_MIX_RELAY = 104;//混合开关类
|
public static final int TYPE_LIGHT_CCT = 105;//逻辑灯控制CCT
|
public static final int TYPE_LIGHT_RGB = 106;//逻辑灯RGB
|
public static final int TYPE_LIGHT_DALI = 107;//DALI(目前CCT用这个)
|
public static final int TYPE_LIGHT_DMX = 108;//DMX(目前dmx多用这个)
|
|
public static final int TYPE_CURTAIN_GLYSTRO = 201;
|
public static final int TYPE_CURTAIN_ROLLER = 202;
|
public static final int TYPE_CURTAIN_MODULE = 203;
|
|
public static final int TYPE_AC_HVAC = 301;
|
public static final int TYPE_AC_COOLMASTER = 302;
|
public static final int TYPE_AC_INFRARED = 303;
|
public static final int TYPE_AC_PANEL = 304;
|
public static final int TYPE_AC_TECHSYS = 305;
|
|
|
public static final int TYPE_MUSIC_MODULE = 401;
|
public static final int TYPE_MUSIC_THIRD_PARTY_MODULE = 402;
|
public static final int TYPE_MUSIC_NEW_MODULE = 403;
|
|
public static final int TYPE_LOGIC_MODULE = 501;
|
public static final int TYPE_GLOBAL_LOGIC_MODULE = 502;
|
|
//2019-7-29 新增安防功能模块
|
public static final int TYPE_SECURITY_MODULE = 1001;
|
// public static final int SECURITY_CONTROL_PANEL = 1002;
|
|
public static final int TYPE_SENSOR_DRY_CONTACT = 601;//2019-07-03 屏蔽
|
public static final int TYPE_SENSOR_MOVEMENT_DETECTOR = 602;
|
public static final int TYPE_SENSOR_TEMP = 603;
|
public static final int TYPE_SENSOR_HUMIDITY = 604;
|
public static final int TYPE_SENSOR_ILLUMINACE = 605;
|
public static final int TYPE_SENSOR_VOC = 606;
|
public static final int TYPE_SENSOR_PM_2_POINT_5 = 607;
|
public static final int TYPE_SENSOR_C02 = 608;
|
public static final int TYPE_SENSOR_LPG = 609;
|
public static final int TYPE_SENSOR_CO_H2 = 610;
|
public static final int TYPE_SENSOR_CH4 = 611;
|
public static final int TYPE_SENSOR_SMOG = 612;
|
public static final int TYPE_SENSOR_WIND_SPEED = 613;
|
public static final int TYPE_SENSOR_WIND_PRESSURE = 614;
|
public static final int TYPE_SENSOR_LIQUID_FLOW = 615;
|
public static final int TYPE_SENSOR_LIQUID_PRESSURE = 616;
|
public static final int TYPE_SENSOR_LIQUID_DEPTH = 617;
|
public static final int TYPE_SENSOR_RAIN_FALL = 618;
|
public static final int TYPE_SENSOR_WEIGHT = 619;
|
public static final int TYPE_SENSOR_HEIGHT_LENGTH = 620;
|
public static final int TYPE_SENSOR_OBJECT_SPEED = 621;
|
public static final int TYPE_SENSOR_SHAKE = 622;
|
public static final int TYPE_SENSOR_VOLTAGE = 623;
|
public static final int TYPE_SENSOR_ELECTRICITY = 624;
|
public static final int TYPE_SENSOR_POWER = 625;
|
|
public static final int TYPE_SENSOR_FLOODING = 626; //水浸//2019-11-4 新增
|
public static final int TYPE_SENSOR_DOOR_MAGNET= 627; //门磁、窗磁
|
public static final int TYPE_SENSOR_EMERGENCY_BUTTON = 628; //紧急按钮
|
|
//2020-07-20
|
public static final int TYPE_GEOTHERMAL_MODULE = 801; //地热模块(0) 回路号,备注,地热状态
|
public static final int TYPE_GEOTHERMAL_JINMAO = 802; //金茂定制地热模块(1) 回路号,备注,地热状态
|
public static final int TYPE_FRESH_AIR = 1901; //新风系统(0)
|
public static final int TYPE_FRESH_AIR_JINMAO = 1902; //金茂新风(1)
|
|
//2023-08-22
|
public static final int TYPE_DOOR_MACHINE = 1404; //门锁(4)
|
|
public static final int TYPE_COMMON_SWITCH = 10001;//通用开关
|
|
}
|