device type iscs
This commit is contained in:
parent
9e6b16ead8
commit
5d8be55300
1
component/iscs_bas.go
Normal file
1
component/iscs_bas.go
Normal file
@ -0,0 +1 @@
|
||||
package component
|
@ -172,8 +172,126 @@ enum DeviceType {
|
||||
DeviceType_Breakers = 21;
|
||||
//电源屏
|
||||
DeviceType_PowerScreen = 22;
|
||||
//ISCS门磁
|
||||
DeviceType_DoorSensor = 23;
|
||||
//ISCS进闸机
|
||||
DeviceType_EntranceGate = 24;
|
||||
//ISCS出闸机
|
||||
DeviceType_ExitGate = 25;
|
||||
//ISCS双向闸机
|
||||
DeviceType_TwoWayGate = 26;
|
||||
//ISCS自动售票机
|
||||
DeviceType_TicketVendingMachine = 27;
|
||||
//ISCS半自动售票机
|
||||
DeviceType_SemiAutoTicketMachine = 28;
|
||||
//ISCS验票机
|
||||
DeviceType_TicketCheckingMachine = 29;
|
||||
//ISCS空气幕
|
||||
DeviceType_AirCurtain = 30;
|
||||
//ISCS冷水机组
|
||||
DeviceType_ChillerUnit = 31;
|
||||
//ISCS人防门
|
||||
DeviceType_CivilDefenseDoor = 32;
|
||||
//ISCS自动扶梯
|
||||
DeviceType_Escalator = 33;
|
||||
//ISCS垂直电梯
|
||||
DeviceType_Elevator = 34;
|
||||
//ISCS应急照明
|
||||
DeviceType_EmergencyLighting = 35;
|
||||
//ISCS风机设备(风机按用途作用又分很多子类型)
|
||||
DeviceType_Fan = 36;
|
||||
//ISCS空调(包括 空调器、组合式空调等)
|
||||
DeviceType_AirConditioner = 37;
|
||||
//ISCS流量开关
|
||||
DeviceType_FlowSwitch = 38;
|
||||
//ISCS照明导向
|
||||
DeviceType_LightingGuidance = 39;
|
||||
//ISCS电源开关导向
|
||||
DeviceType_PowerSwitchGuidance = 40;
|
||||
//ISCS扶梯导向
|
||||
DeviceType_EscalatorGuidance = 41;
|
||||
//ISCS闸机导向
|
||||
DeviceType_TicketGateGuidance = 42;
|
||||
//ISCS区间疏散导向指示
|
||||
DeviceType_SectionEvacuationGuidance = 43;
|
||||
//ISCS交换机
|
||||
DeviceType_NetworkSwitch = 44;
|
||||
//ISCS PLC控制器
|
||||
DeviceType_PlcController = 45;
|
||||
//ISCS 水泵(包括 冷冻水泵、冷却水循环泵、超声波型水泵、浮球型水泵、火警相关水泵等)
|
||||
DeviceType_WaterPump = 46;
|
||||
//ISCS 水池水箱
|
||||
DeviceType_WaterTank = 47;
|
||||
//ISCS 净化装置
|
||||
DeviceType_PurificationDevice = 48;
|
||||
//ISCS 温湿度传感器
|
||||
DeviceType_ThSensor = 49;
|
||||
//ISCS CO2传感器
|
||||
DeviceType_CO2Sensor = 50;
|
||||
//ISCS 水温传感器
|
||||
DeviceType_WaterTSensor = 51;
|
||||
//ISCS 压力传感器
|
||||
DeviceType_PressureSensor = 52;
|
||||
//ISCS 流量传感器
|
||||
DeviceType_FlowSensor = 53;
|
||||
//ISCS 温度传感器
|
||||
DeviceType_TemperatureSensor = 54;
|
||||
//ISCS 调节阀(包括 电动风阀、电动调节阀、组合式风阀、电动两通调节阀、电动蝶阀、旁通阀开关 等)
|
||||
DeviceType_ControlValve = 55;
|
||||
//ISCS 冷却塔
|
||||
DeviceType_CoolingTower = 56;
|
||||
//ISCS 水处理器
|
||||
DeviceType_WaterProcessor = 57;
|
||||
//ISCS 主机
|
||||
DeviceType_NetworkHost = 58;
|
||||
//ISCS 烟感
|
||||
DeviceType_SmokeDetector = 59;
|
||||
//ISCS 温感
|
||||
DeviceType_TemperatureDetector = 60;
|
||||
//ISCS 手动火灾报警按钮
|
||||
DeviceType_ManualFireAlarmButton = 61;
|
||||
//ISCS 气体灭火
|
||||
DeviceType_GasFireExtinguisher = 62;
|
||||
//ISCS 警铃
|
||||
DeviceType_AlarmBell = 63;
|
||||
//ISCS 防火卷帘(包括 隔断型防火卷帘、疏散型防火卷帘)
|
||||
DeviceType_FireRollerShutter = 64;
|
||||
//ISCS 火警ACS联动
|
||||
DeviceType_FasAcs = 65;
|
||||
//ISCS 火警AFC联动
|
||||
DeviceType_FasAfc = 66;
|
||||
//ISCS 非消防电源
|
||||
DeviceType_NonFirePowerSource = 67;
|
||||
//ISCS 水流指示器
|
||||
DeviceType_WaterFlowIndicator = 68;
|
||||
//ISCS 启泵按钮
|
||||
DeviceType_PumpStartButton = 69;
|
||||
//ISCS 感温电缆
|
||||
DeviceType_TemperatureSensingCable = 70;
|
||||
//ISCS 防火阀
|
||||
DeviceType_FireDamper = 71;
|
||||
//ISCS 电动防烟防火
|
||||
DeviceType_ElectricSmokeFireDamper = 72;
|
||||
//ISCS 火灾互联互通信号
|
||||
DeviceType_FireInterconnectionSignal = 73;
|
||||
//ISCS 防淹门
|
||||
DeviceType_FloodGate = 74;
|
||||
//ISCS 电力线柜
|
||||
DeviceType_IscsWireCabinet = 75;
|
||||
//ISCS 电力断路器
|
||||
DeviceType_IscsCircuitBreaker = 76;
|
||||
//ISCS 电力整流器
|
||||
DeviceType_IscsRectifier = 77;
|
||||
//ISCS 电力手车
|
||||
DeviceType_IscsHandcartSwitch = 78;
|
||||
//ISCS 变压器
|
||||
DeviceType_IscsVoltageTransformer = 79;
|
||||
//ISCS 三工位隔离开关
|
||||
DeviceType_IscsThreePositionSwitch = 80;
|
||||
|
||||
}
|
||||
|
||||
|
||||
enum Port {
|
||||
None = 0; //没有端口/未指定端口
|
||||
A = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user