增加电量报警模块
但是只是一部分功能
This commit is contained in:
@@ -484,6 +484,15 @@ namespace Common
|
||||
}
|
||||
return result.ToString();
|
||||
}
|
||||
public static string ByteToString_NoWhiteSpace(byte[] bytesData)
|
||||
{
|
||||
StringBuilder result = new StringBuilder();
|
||||
foreach (byte r in bytesData)
|
||||
{
|
||||
result.Append(r.ToString("X2"));
|
||||
}
|
||||
return result.ToString();
|
||||
}
|
||||
/// <summary>
|
||||
/// 把int32类型的数据转存到2个字节的byte数组中
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user