DLT645HelperReadDouble 方法 |
读取指定地址的所有的double数据信息,一般来说,一个地址只有一个数据,但是少部分的地址存在多个数据,然后全部转换为double数据信息
Read all the double data information of the specified address, in general, an address has only one data, but a small number of addresses exist multiple data,
and then all converted to double data information
命名空间:
HslCommunication.Instrument.DLT.Helper
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static OperateResult<double[]> ReadDouble(
IDlt645 dlt,
string address,
ushort length
)
Public Shared Function ReadDouble (
dlt As IDlt645,
address As String,
length As UShort
) As OperateResult(Of Double())
public:
static OperateResult<array<double>^>^ ReadDouble(
IDlt645^ dlt,
String^ address,
unsigned short length
)
static member ReadDouble :
dlt : IDlt645 *
address : string *
length : uint16 -> OperateResult<float[]>
参数
- dlt
- 类型:HslCommunication.Instrument.DLT.HelperIDlt645
DLT通信对象 - address
- 类型:SystemString
数据标识,具体需要查找手册来对应 - length
- 类型:SystemUInt16
读取的数据长度信息
返回值
类型:
OperateResultDouble[缺少 "M:HslCommunication.Instrument.DLT.Helper.DLT645Helper.ReadDouble(HslCommunication.Instrument.DLT.Helper.IDlt645,System.String,System.UInt16)" 的 <returns> 文档]
备注
地址可以携带地址域信息,例如 "s=2;00-00-00-00" 或是 "s=100000;00-00-02-00",关于数据域信息,需要查找手册,例如:00-01-00-00 表示: (当前)正向有功总电能
地址也可以携带是否数据翻转的标记,例如 "reverse=false;00-00-00-00" 解析数据的时候就不发生反转的操作
参见