using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BatCharging.Model;
namespace BatCharging.Service
{
///
/// 充电机响应尖峰平谷设置
///
public class MsgPeakResDecoder
{
///
/// 解包充电机响应尖峰平谷设置的字节列表
///
/// 接收到字节数组:00:成功 01:失败
/// 充电机响应尖峰平谷设置
public byte GetPeakTimePeriodResMsg(byte[] msgRecv)
{
byte result = 9;
if (msgRecv != null)
{
int num = msgRecv.Length;
if (num >= 26)
{
result = msgRecv[25];
}
}
return result;
}
}
}