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.

30 lines
870 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Module.HMeter.ModBusTcp
{
/// <summary>
/// 温湿度仪表连接的基础信息
/// </summary>
public class CmnHumiMeterBaseInfo
{
#region 基础字段
/// <summary>
/// 监控室
/// </summary>
public static HumiMeterModbusTool HUM01 = new HumiMeterModbusTool("172.0.50.100", 401, 1, "H001");
/// <summary>
/// 舱内
/// </summary>
public static HumiMeterModbusTool HUM02 = new HumiMeterModbusTool("172.0.50.100", 402, 1, "H002");
/// <summary>
/// 充电机
/// </summary>
public static HumiMeterModbusTool HUM03 = new HumiMeterModbusTool("172.0.50.100", 403, 1, "H003");
#endregion 基础字段
}
}