添加项目文件。

This commit is contained in:
2025-02-28 22:23:13 +08:00
parent d4ad2fe2de
commit 547a1b3bf6
416 changed files with 72830 additions and 0 deletions

View File

@@ -0,0 +1,67 @@
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; }
}
}