Files
YuPu-OrpaonEMS/OrpaonEMS.App/CANDrive/Msg_0x18008040.cs
2025-02-28 22:23:13 +08:00

68 lines
2.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}