FUTEK .NET API Documentation
FUTEK_USB_DLL Assembly / FUTEK_USB_DLL Namespace / USB_DLL Class / Write_TEDS_Register Method
Type: System.IntPtr
The handle associated with the USB device.
Type: System.Byte
The high byte of the address associated with the TEDS register.
Type: System.Byte
The low byte of the address associated with the TEDS register.
Type: System.Byte
The data to assign the TEDS register.


In This Topic
    Write_TEDS_Register Method
    In This Topic
    Writes to the Transducer Electronic Data Sheet (TEDS) register.
    Syntax
    'Declaration
     
    
    Public Function Write_TEDS_Register( _
       ByVal DeviceHandle As IntPtr, _
       ByVal HighAddress As Byte, _
       ByVal LowAddress As Byte, _
       ByVal Data As Byte _
    ) As String
    'Usage
     
    
    Dim instance As USB_DLL
    Dim DeviceHandle As IntPtr
    Dim HighAddress As Byte
    Dim LowAddress As Byte
    Dim Data As Byte
    Dim value As String
     
    value = instance.Write_TEDS_Register(DeviceHandle, HighAddress, LowAddress, Data)
    public string Write_TEDS_Register( 
       IntPtr DeviceHandle,
       byte HighAddress,
       byte LowAddress,
       byte Data
    )

    Parameters

    DeviceHandle
    Type: System.IntPtr
    The handle associated with the USB device.
    HighAddress
    Type: System.Byte
    The high byte of the address associated with the TEDS register.
    LowAddress
    Type: System.Byte
    The low byte of the address associated with the TEDS register.
    Data
    Type: System.Byte
    The data to assign the TEDS register.

    Return Value

    Type: System.String
    A value equal to 0; otherwise Error
    Remarks
    Requirements

    Target Platforms: Windows 10, Windows 11

    Target Framework: .NET Framework 4.8 or later

    See Also