ads-client | Beckhoff TwinCAT ADS client library for Node.js
    Preparing search index...

    Interface ReadValueResult<T>

    Return value of readValue() and readValueBySymbol()

    interface ReadValueResult<T = any> {
        dataType: AdsDataType;
        rawValue: Buffer;
        symbol: AdsSymbol;
        value: T;
    }

    Type Parameters

    • T = any

      Type of the value

    Index

    Properties

    dataType: AdsDataType

    Data type of the target symbol

    rawValue: Buffer

    Raw value as Buffer

    symbol: AdsSymbol

    Target symbol

    value: T

    Value of the symbol as converted Javascript object