LabJack LJTick-DAC – Analog Outputs for U3 U6 UE9 T4 T7 Series

Availability:

Stok 5


Provides a pair of 14-bit analog outputs with a range of +/- 10 volts. Plugs into any digital I/O block (e.g. FIO4/FIO5), and thus up to 10 of these can be used per LabJack to add 20 analog outputs. Works with T-Series devices (T4/T7/T8) and any UD family device (U3/U6/UE9).

Status Barang: Ready

Kondisi: Baru

Minimal Order: 5 pcs

Bagikan:

Provides a pair of 14-bit analog outputs with a range of +/- 10 volts. Plugs into any digital I/O block (e.g. FIO4/FIO5), and thus up to 10 of these can be used per LabJack to add 20 analog outputs. Works with T-Series devices (T7, T4) and any UD family device (U3/U6/UE9). For more information, see the LJTick-DAC Datasheet and our LJTickDAC utility, an optional a cross-platform setup/testing application available for UD family devices.

Compatible Products:
◆ U3 Series
◆ T7 Series
◆ U6 Series
◆ UE9 Series
◆ T4 Series

EACH UNIT INCLUDES WITH:
◆ LJTick-DAC only

SKU: LJ-TickDAC Kategori: Brand:
Berat0,2 kg

The LJTick-DAC works with the T-series (T4/T7/T8) and with any UD family device (U3/U6/UE9), except for the oldest U3 hardware revision 1.20 (U3A, pre 2007), as that U3 did not support I2C.  The LJTick-DAC does not work with the U12.

The LJTick-DAC connects to a digital I/O block (e.g. FIO6/FIO7), not to the DAC0/DAC1 terminals.

LJTDAC-figure1.png
Figure 1: LJTick-DAC

LJTick-DAC_with_U3-LV.jpg
Figure 2: LJTick-DAC with U3

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 or data rates for T-Series devices 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 I2C 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. The desired pin # is passed in the Value parameter.

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.

Note that the _CAL_CONSTANTS special channels above are floating point doubles.  The UD library converts to/from the fixed point format stored on the LJTick-DAC.

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 FIO6. The driver then assumes that SDA is on FIO7.
//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,6,0);

//Set DACA to 1.2 volts. If the driver has not previously talked to an LJTDAC
//on FIO6/FIO7, it will first retrieve and store the calibration 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.

T-series (T4/T7/T8) & LJM Communication

T-series devices have special registers available for controlling the LJTick-DAC. The TDAC# registers that you write to should correspond to the DIO numbers that the TDAC is connected to. See the DIO mapping tables in the T-Series datasheet for conversions from FIO/EIO/CIO/MIO numbers to DIO#.

Updating an output through the LJM library is easy.  For example, the following line of code sets the voltage on the DACB channel associated with DIO11 (aka EIO3).  That means DACA on the LJTick-DAC would be connected to DIO10 (aka EIO2):

err = LJM_eWriteName(handle, "TDAC11", 7.5)

MIO2 (DIO22) does not support the LJTick-DAC.

Specifications: (25 deg C, VS = 5 volts)

ParameterConditionsMinTypicalMaxUnits
      
General     
Supply Voltage 4.555.5V
Supply CurrentVout = 0, No load 5 mA
 Both Outputs @ 3mA 29 mA
Operating Temperature 0 70°C
      
DIO     
Pull-up ResistorsTo VS 5100 Ω
Low Level Input Voltage   0.3*VSV
High Level Input Voltage 0.7*VS  V
Low Level Output VoltageSink Current = 3mA0 0.4V
Clock Frequency (DIOA)   400kHz
      
DAC Outputs     
Typical Output Range -10.3 10.4V
Power-up Output Voltage  0.05 V
Resolution   14bits
    1.22mV
Accuracy  0.050.5% FS
Differential Linearity Error   ±1counts
Integral Linearity Error  ±5±16counts
Temperature Drift  20 ppm/°C
Update Time (1)  1 ms
Update Rate (1)  1000 Hz
Slew Rate  0.1 V/μs
Output Impedance  0.1 Ω
Output Current (2)Total for both channels  10mA

(1) The update time is similar to the numbers found in Section 3.1 of the U3/UE9 User’s Guide. The time is typically about 1 ms over Ethernet or USB “high-high”, and typically about 4 ms over USB “other”.
(2) This is the current limit for both channels combined.  The first thing you notice as you get close to the current limit is that the minimum output voltage increases, and this effect will be worse if your VS supply voltage is low.  For example, at 10 mA, the minimum output is typically about -9.5 volts.

LJTickDAC Testing Utility

For your convenience, the LJTickDAC testing utility for UD family devices is available for download.

Based on 0 reviews

0.0 overall
0
0
0
0
0

Be the first to review “LabJack LJTick-DAC – Analog Outputs for U3 U6 UE9 T4 T7 Series”

There are no reviews yet.

SHOPPING CART

close
Hi, There!

How can I help you?

Chat

Select at least 2 products
to compare