Klantenservice
0
Sluiten

Categorieën

Filters

    LJTick-DAC

    Merk: LabJack
    €95,-
    €87,49Excl. btw Op voorraad
    Provides a pair of 14-bit analog outputs with a range of +/- 10 volts. Plugs into any digital I/O block, and thus up to 10 of these can be used per LabJack to add 20 analog outputs. Works with any UD family device (U3/U6/UE9), except for U3 hardware ...... Toon meer
    • B2B Industrial Supplier since 1999
    • Shipping from our own warehouse in NL !
    • Shipping in EU with DPD Traceable
    • Reliable SSL & Secure Payments

    Productomschrijving

    Compatibility : 

    • U3HV
    • U3LV
    • U6
    • U6-Pro
    • UE9
    • UE9-Pro

    The LJTick-DAC works with any UD family device (U3/U6/UE9), except for U3 hardware revision 1.20 (U3A), as that U3 did not support I2C. It does work with U3 hardware revision 1.21 and 1.30 (-LV or -HV). It does not work with the U12 (which is not a UD family device).

    The LJTick-DAC (LJTDAC) is an analog output expansion module. It provides a pair of 14-bit analog outputs with a range of ±10 volts. The 4-pin design plugs into any of the standard DIO/DIO/GND/VS screw terminal blocks on the LabJack, and thus up to 10 of these can be used per device to add 20 analog outputs.

    The update rate of the LJTDAC is limited by the communication time between the host and the device. See Section 3.1 of the U3/U6/UE9 User’s Guide for detailed information, but it generally takes about 1 ms to do an update via USB “high-high” or Ethernet, while it takes about 4 ms via other USB connections. Only 1 DAC channel can be updated per low-level communication. That means, for instance, that if updates are done at the 1 ms rate to build a 100 Hz sine wave, there will only be about 5 updates per half-cycle of the waveform and it will appear to be a smooth sine. With a 10 Hz sine wave, however, there will be about 50 updates per half-cycle and the waveform will appear much smoother.

    The pins shown on the right side of the LJTDAC (Figure 1) connect to the LabJack. The VS/GND pins power the LJTDAC, while the DIOA/DIOB pins are used for digital communication (I2C) between the LJTDAC and LabJack. DIOA is the serial clock (SCL) and DIOB is the serial data (SDA). Following are descriptions of the screw-terminal connections:

    GND: Connected directly to LabJack ground (GND).

    VS: This is the same 5 volt output as the VS terminals on the LabJack itself. This is an output terminal, not an input. It can be used to provide 5 volt (nominal) power as needed.

    DACA/DACB: Output of each 14-bit digital-to-analog converter.

    Low-Level Communication

    The LJTDAC has a non-volatile 128-byte EEPROM (Microchip 24C01C) on the I2C bus with a 7-bit address of 0x50 (d80), and thus an 8-bit address byte of 0xA0 (d160). Bytes 0-63 are available to the user, while bytes 64-127 are reserved.

     

    EEPROM AddressDescriptionNominal Value
    0-63User Area 
    64-71DACA Slope3.1586E+03 bits/volt
    72-79DACA Offset3.2624E+04 bits
    80-87DACB Slope3.1586E+03 bits/volt
    88-95DACB Offset3.2624E+04 bits
    96-99Serial Number 
    100-127Reserved 

     

     

    The slopes and offsets are stored in 64-bit fixed point format (signed 32.32, little endian, 2’s complement). The serial number is simply an unsigned 32-bit value where byte 96 is the LSB and byte 99 is the MSB.

    The DAC (digital-to-analog converter) chip on the LJTDAC is the LTC2617 (linear.com) with a 7-bit address of 0x12 (d18), and thus an 8-bit address byte of 0x24 (d36). The data is justified to 16 bits, so a binary value of 0 (actually 0-3) results in minimum output (~-10.3 volts) and a binary value of 65535 (actually 65532-65535) results in maximum output (~10.4 volts).

    For more information about low-level communication with the LJTDAC, see the I2C example in the VC6_LJUD archive or see the Linux example.

    UD Communication

    The LJTick-DAC works with any UD family device (U3/U6/UE9), except for U3 hardware revision 1.20 (U3A), as that U3 did not support I2C. It also does not work with the U12 (which is not a UD family device).

    The LabJack UD driver for Windows (V2.76+) has special support for the LJTDAC. First, the following special channel is used with the put config IOType to specify where the LJTDAC is connected to the LabJack:

     


     

    LJ_chTDAC_SCL_PIN_NUM //Used with LJ_ioPUT_CONFIG 

     

    Then there is one IOType used for all further communication with the LJTDAC. The value of the Channel parameter used with this IOType is always one of the following 7 special channels:


     


    LJ_ioTDAC_COMMUNICATION //Main IOType. LJ_chTDAC_SERIAL_NUMBER //Read-only. LJ_chTDAC_READ_USER_MEM //x1 is array of 64 bytes. LJ_chTDAC_WRITE_USER_MEM //x1 is array of 64 bytes. LJ_chTDAC_READ_CAL_CONSTANTS //x1 is array of 4 doubles. LJ_chTDAC_WRITE_CAL_CONSTANTS //x1 is array of 4 doubles. LJ_chTDAC_UPDATE_DACA //Pass DAC voltage in Value parameter. LJ_chTDAC_UPDATE_DACB //Pass DAC voltage in Value parameter.

     


     

     

    Typical operation consists of simply setting the pin number for SCL and then updating DAC channel A and/or B:


     

    //Tell the driver that SCL is on FIO0. The driver then assumes that SDA is on FIO1. //This is just setting a parameter in the driver, and not actually talking //to the hardware, and thus executes very fast. ePut(lngHandle, LJ_ioPUT_CONFIG, LJ_chTDAC_SCL_PIN_NUM,0,0); //Set DACA to 1.2 volts. If the driver has not previously talked to an LJTDAC //on FIO0/FIO1, it will first retrieve and store the cal constants. The //low-level I2C command can only update 1 DAC channel at a time, so there //is no advantage to doing two updates within a single add-go-get block. ePut(lngHandle, LJ_ioTDAC_COMMUNICATION, LJ_chTDAC_UPDATE_DACA, 1.2, 0); //Set DACB to 2.3 volts. ePut(lngHandle, LJ_ioTDAC_COMMUNICATION, LJ_chTDAC_UPDATE_DACB, 2.3, 0); 

     


    For more information about UD communication with the LJTDAC, see the LJTDAC example in the VC6_LJUD archive.

     

    Specificaties

    Artikelnummer
    LJTick-DAC
    SKU
    LJTick-DAC
    LJTick-DAC
    € 95,-
    € 87,49
    Excl. btw
    LJTick-DAC
    LJTick-DAC
    Op voorraad
    Toevoegen aan winkelwagen

    Recent bekeken

    Vergelijk 0

    Voeg nog een product toe (max. 5)

    Start vergelijking

    Wij slaan cookies op om onze website te verbeteren. Is dat akkoord? JaNeeMeer over cookies »