You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using HybirdFrameworkDriver.ModbusTcpMaster;
|
|
|
|
|
|
|
|
|
|
namespace Service.Fire.Msg;
|
|
|
|
|
|
|
|
|
|
public class FireMsg
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 1房,复合探测器,光电探测器
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ModbusProperty<ushort> EqmInfo01 { get; set; } = new(1);
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 2房,复合探测器,感温探测器
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ModbusProperty<ushort> EqmInfo02 { get; set; } = new(2);
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 3房,复合探测器,光电探测器
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ModbusProperty<ushort> EqmInfo03 { get; set; } = new(3);
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 4房,复合探测器,感温探测器
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ModbusProperty<ushort> EqmInfo04 { get; set; } = new(4);
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 5房,复合探测器,光电探测器
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ModbusProperty<ushort> EqmInfo05 { get; set; } = new(5);
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 6房,复合探测器,感温探测器
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ModbusProperty<ushort> EqmInfo06 { get; set; } = new(6);
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 7房,光电探测器,光电探测器
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ModbusProperty<ushort> EqmInfo07 { get; set; } = new(7);
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 8房,手报按钮,手动按钮
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ModbusProperty<ushort> EqmInfo08 { get; set; } = new(8);
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 9房,启停按钮,启停按钮
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ModbusProperty<ushort> EqmInfo09 { get; set; } = new(9);
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 10房,声光报警器,声光报警器
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ModbusProperty<ushort> EqmInfo10 { get; set; } = new(10);
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 11房,输出模块,状态指示灯
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ModbusProperty<ushort> EqmInfo11 { get; set; } = new(11);
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 12房,火灾显示盘,区域显示盘
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ModbusProperty<ushort> EqmInfo12 { get; set; } = new(12);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|