68 lines
2.2 KiB
C#
68 lines
2.2 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace OrpaonEMS.App.CANDrive
|
||
{
|
||
/// <summary>
|
||
/// https://blog.csdn.net/qq_41256212/article/details/95477467
|
||
/// 协议数据执行Motorola LSB格式;数据类型= Unsigned;
|
||
/// </summary>
|
||
public class Msg_0x18008040
|
||
{
|
||
/// <summary>
|
||
/// TMS 工作状态
|
||
/// 0:关机模式;1:制冷模式;2:制热模式;3:自循环模式;4:自动模式
|
||
/// </summary>
|
||
public int WorkState { get; set; }
|
||
|
||
/// <summary>
|
||
/// 出水温度
|
||
/// 分辨率:1℃/bit 偏移量:-40℃范围:-40~210℃255(无效)例如:发送数据0x32(50),温度为:50-40=10℃
|
||
/// </summary>
|
||
public double OutTemp { get; set; }
|
||
|
||
/// <summary>
|
||
/// 回水温度
|
||
/// 分辨率:1℃/bit 偏移量:-40℃范围:-40~210℃255(无效)例如:发送数据0x32(50),温度为:50-40=10℃
|
||
/// </summary>
|
||
public double InTemp { get; set; }
|
||
|
||
/// <summary>
|
||
/// 环境温度
|
||
/// 分辨率:1℃/bit 偏移量:-40℃范围:-40~210℃255(无效)例如:发送数据0x32(50),温度为:50-40=10℃
|
||
/// </summary>
|
||
public double SysEnvTemp { get; set; }
|
||
|
||
/// <summary>
|
||
/// 回水压力
|
||
/// 分辨率:0.1bar/bit 偏移量:0bar 255(无效)例如:发送数据 0x32(50),温度为:50-40=10℃
|
||
/// </summary>
|
||
public double InPress { get; set; }
|
||
|
||
/// <summary>
|
||
/// 供水压力
|
||
/// 分辨率:0.1bar/bit 偏移量:0bar 255(无效)例如:发送数据 0x32(50),温度为:50-40=10℃
|
||
/// </summary>
|
||
public double OutPress { get; set; }
|
||
|
||
/// <summary>
|
||
/// 变频器故障代码
|
||
/// </summary>
|
||
public int InverterErrCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 故障码
|
||
/// </summary>
|
||
public int ErrCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 故障等级
|
||
/// </summary>
|
||
public int ErrLevel { get; set; }
|
||
|
||
}
|
||
}
|