Skip to main content
Skip table of contents

EI-1050 Datasheet

End Of Life (EOL) Notice

The EI-1050 from Electronic Innovations Corporation has been discontinued as Sensirion no longer makes the sensor used in the EI-1050.

Available alternatives are probes based on the SHT3X digital output sensor, such as the SHT35 which is more accurate than the SHT11 that was used in the EI-1050.  We might start selling a digital SHT3X probe at some point, but you can get probes using the SHT35 on Amazon right now:

https://smile.amazon.com/gp/product/B07RSYB6C4

https://smile.amazon.com/gp/product/B07ZGD8FKB

The SHT3X uses I2C, which is slightly different (i.e. not drop-in compatible) than the SBUS protocol used by the SHT11.  Available support:

  •  LJM (T4, T7) - We can provide code examples right now, including Lua script.  This quarter we plan to add higher level support to LJM so these are as easy to use as the EI-1050.

  •  UD (U3, U6, UE9) - We will likely be able to provide code examples on demand for most languages, but doubt that device firmware or the UD driver will be changed to provide higher level support than that.

  •  U12 - No support for SHT3X, as the U12 does not support I2C.

Overview

The EI-1050 is made by EIC.  It is a digital relative humidity and temperature probe intended for use with any LabJack DAQ device. It combines a single chip sensor module with a selector chip and buffering components on a small PC board. The single chip sensor is manufactured by Sensirion and provides a 14-bit/12-bit (temperature/humidity) serial digital output for each reading. It is housed in a plastic tube (4.5 in by 0.625 in) with a 6 ft cable. The device includes two calibrated microsensors for relative humidity and temperature. Since the output is serial digital data, this results in superior signal quality, a fast response time and insensitivity to external disturbances (EMC). Each sensor is calibrated by Sensirion in a precision humidity chamber and the calibration coefficients are programmed into the OTP memory. These coefficients are used internally during measurements to calibrate the signals from the sensors. The interface to the EI-1050 is a 5-wire connection consisting of supply voltage, ground, clock, data, and enable. By using the enable line, multiple probes can be connected to a LabJack at once.

UD & LJM Device Connections

This section applies to all LabJack DAQ devices except the U12.

Supported UD-series devices:

  • U3

  • U6

  • UE9

Supported T-series devices:

  • T4

  • T7

The EI-1050 uses an SHT11 digital sensor. A key specification of this sensor is that the signal input voltage for a logic-high is 80%-100% of the supply voltage.  80%-100% of a supply voltage of 5.0V is 4.0-5.0V, but all LabJacks (except the U12) have 3.3V logic—a digital output-high is 3.3V.  This is not a problem for the Data line, since to get a high on the serial bus the I/O line is set to input and the 22k pull-up brings the line above 4 volts, but the Clock line is driven output-high/output-low.  Thus for a direct digital output from the LabJack (U12 excepted) to provide the clock signal, the EI-1050 must be powered by 3.3V instead of 5.0V.

Red Wire (Power): Need to supply 3.3 volts. The simplest way to get 3.3 volts is by using a digital line configured as output-high. An analog output (DAC) can also be used. Note that a single FIO line can only provide enough power for up to 4 probes. An EIO/CIO/MIO line or DAC line can provide power for up to 20 probes.

Black Wire (Ground): Connect to any GND terminal.

Green Wire (Data): Any digital I/O line can be used.

White Wire (Clock): Any digital I/O line can be used.

Brown Wire (Enable): The probe is enabled when this line is pulled to the supply voltage (3.3 volts for UD-series and T-series devices). The probe is disabled when this line is pulled to ground. This allows multiple probes to be connected to a single device using the same Data and Clock lines, and only a unique Enable line is required for each probe.  (If only a single EI-1050 is being used, and you want it to be enabled all the time, the Enable line can be left unconnected because there is an internal pull-up resistor to the Power line. However, it's recommended to connect the Enable line to the same terminal as the Power line.)

If multiple probes are being used, they can all be connected to the same Power/Ground/Data/Clock terminals. The Enable line on each probe is connected to a unique digital output, and all enables are set to output-low to disable all probes. To get measurements from a particular probe, the Enable line for that probe is set to output-high, readings are taken, and then the Enable line is set back to output-low.

UD Library Communication (U3/U6/UE9):

The LabJack UD driver for Windows (V2.48+) has special support for the EI-1050. There is 1 IOType and 4 special channels:

LJ_ioSHT_GET_READING
LJ_chSHT_TEMP // Used with IOType above.
LJ_chSHT_RH // Used with IOType above.
LJ_chSHT_DATA_CHANNEL // Used with LJ_ioPUT_CONFIG.
LJ_chSHT_CLOCK_CHANNEL // Used with LJ_ioPUT_CONFIG.

The EI-1050 Sample page has examples. The following pseudocode demonstrates retrieving measurements from a single probe:

//Set FIO2 to output-high to provide power to the EI-1050.
ePut (lngHandle, LJ_ioPUT_DIGITAL_BIT, 2, 1, 0); //Red = Power = FIO2

//Specify the data and clock lines.
ePut (lngHandle, LJ_ioPUT_CONFIG, LJ_chSHT_DATA_CHANNEL, 0, 0); //Green = Data = FIO0
ePut (lngHandle, LJ_ioPUT_CONFIG, LJ_chSHT_CLOCK_CHANNEL, 1, 0); //White = Clock = FIO1

//Now, an add/go/get block to execute multiple requests.
//Request a temperature reading from the EI-1050.
AddRequest (lngHandle, LJ_ioSHT_GET_READING, LJ_chSHT_TEMP, 0, 0, 0);

//Request a humidity reading from the EI-1050.
AddRequest (lngHandle, LJ_ioSHT_GET_READING, LJ_chSHT_RH, 0, 0, 0);

//Execute the requests. Will take about 0.5 seconds with a USB high-high
//or Ethernet connection, and about 1.5 seconds with a normal USB connection.
GoOne (lngHandle);

//Get the temperature reading result.
GetResult (lngHandle, LJ_ioSHT_GET_READING, LJ_chSHT_TEMP, &dblTemperatureKelvin);

//Get the humidity reading result.
GetResult (lngHandle, LJ_ioSHT_GET_READING, LJ_chSHT_RH, &dblHumidityPercent);

If using multiple probes, you would also have the following calls:

  • Enable the desired probe before each reading

  • Disable the desired probe after each reading

T Series Communication

See the SBUS section in the T-series datasheet. The Examples section provides a basic walk-through.

U12 Connections & Communication

Multiple EI-1050 probes can be connected to a single LabJack U12. When using multiple probes, the data and clock line from every probe connect to the same LabJack terminals (IO0 and IO1). An individual connection is needed for the enable line on each probe. The enable line is pulled high inside the probe, so the probe is enabled when this line is disconnected (not recommended), connected to +5V, connected to an analog output set to 5.0 volts, connected to a digital input, or connected to a digital output set high. The probe is disabled when the enable line is connected to GND, connected to an analog output set to 0.0 volts, or connected to a digital output set low. This can be accomplished using IO2, IO3, AOx, or Dx, providing multiple enable line connections. The example programs provided by LabJack Corporation, toggle the digital lines between input and output-low to enable and disable the probe (analog outputs are toggled between 0.0 volts and 5.0 volts). When the probe is disabled, it is powered-up, but there is no communication.

There are two example applications available from LabJack Corporation to experiment with the EI-1050 probe(s): LJSHT.exe and LJSHTmulti.exe. These are installed as part of the normal U12 Legacy installation and can be found in the start menu along with LJlogger, LJtest, and others. LJSHT acquires temperature and humidity readings from 1 or 2 probes and displays the information on a chart. LJSHTmulti acquires readings from many probes and displays the current readings in a table.

LabJack U12 drivers V1.10 and later have 3 new functions for communicating with the EI-1050 (and SHT1X sensors in general):

  • SHT1X: This is the only function most programmers will use, and retrieves a temperature and/or humidity reading.

  • SHTComm: A general function that sends and receives up to 4 bytes to/from a SHT1X sensor. Allows access to advanced features of the sensors.

  • SHTCRC: Used with SHTComm. Checks the validity of a returned CRC byte.

For more information on the drivers functions, see the “LabJack U12 User’s Guide”.

LabJack U12 firmware V1.10 (serial numbers 100012000 and higher, 03/2003) and later has new functions to perform the SHT1X communication at a hardware level, such that one call to the LabJack U12 will send/receive up to 4 bytes of data. When using such hardware communication, it takes about 230 ms to get a 14 bit temperature reading and about 75 ms to get a 12 bit humidity reading. The LabJack U12 is busy during this time and unavailable for other operations.

When the LabJack U12 driver detects a firmware version earlier than V1.10, it reverts to software communication mode, and takes about 2 seconds to get a temperature or humidity reading. The LabJack U12 is busy during this time and unavailable for other operations. Firmware upgrade requires the replacement of a chip (which is socketed, not soldered). Contact LabJack Corporation for more information.

Having trouble with your EI-1050? Try running The EI-1050 Sample App.

Low-Level Interface

This information is mostly for talking to the EI-1050 with something other than a LabJack.

The EI-1050 uses the SHT11 from Sensirion. The SHT11 speaks SBUS, which is similar to I2C but not exactly the same. Details are provided by Sensirion.

The EI-1050 adds small RC filters (R=47 & C=1nF) to the Data and Clock lines.

The EI-1050 adds a MAX4514 switch to the Data line. This switch is controlled by the Enable line on the EI-1050. The Enable line has a 22k pull-up to Power.

The EI-1050 adds a 22k pull-up (to Power) to the Data line, but this is behind the switch so only connected when the probe is enabled.

Testing has shown that at least 11 sensors can run successfully off of one data/clock pair when connected to a T7 over short cable runs. The testing configurations were as follows:

  • T7 FW 1.0282

  • DAC0 set to 3.3V for power

  • FIO0 and FIO1 for data and clock lines

  • Default clock settings

  • Normal 6ft. cables

Changing the data and clock lines to use EIO/CIO/MIO lines or slowing the clock down might allow for more sensors to be used at once.

Long cable runs can cause problems with data acquisition. It has been observed that a 70ft. Ethernet cable extension between one sensor and a T7 device resulted in frequent errors and poor quality data/clock lines.

Specifications

Relative Humidity Sensor (RH)

Range: 0 to 100 % RH

Accuracy: ±3.5 %

Response Time: 4 s

Reproducibility: H % R ±0.1

Resolution: 0.03 % RH

Temperature Sensor

Range: -40°C to 120°C

Accuracy:

0.5°C @ 25°C

0.9°C from 0 to 40°C

Response Time: 20 s

Reproducibility: ±0.1 °C

Resolution: 0.01 °C

Operating Temperature: -40°C to 120°C

General Electrical

Supply Voltage Range: 2.4 to 5.5 V

Input Current During Measurement: 0.6 mA

Input Current Standby: 0.12 mA

Cable Interface (LabJack U12 Terminal):

Power: Red (3.3 V for UD-series and T-series, 5V for U12)

Ground: Black (GND)

Data: Green (FIO0 or other for UD-series and T-series, IO0 for U12)

Clock: White (FIO1 or other for UD-series and T-series, IO1 for U12)

Enable: Brown

Tube Dimensions

5/8" Outside Diameter

4 1/2" Length

Detail Specifications

More detailed specifications can be found in the SHT11 Datasheet from Sensirion.

Special Notice Regarding EI-1050 Cable

Although the temperature sensor and associated electronics are rated for 150 degrees C, the cable is only rated for 80 degrees C. We have tested the cable, probe at 150 degrees C, and have noticed the cable gets soft at the high temperatures but continues to function. When the cable and probe were returned to normal temperatures, no degrading was observed in the cable or probe. Also, at the low temperatures, the cable is only rated to -20 degrees C where the sensor and associated electronics are rated lower. Testing the probe with the wire at the lower temperatures showed normal operation and no degrading of the cable when returned to normal temperatures. Be aware that even though the probe itself can operate at the rated temperatures, the use of the cable in environments of over 80 degrees C and lower than 20 degrees C is at your own risk.

Special Notice Regarding Environmental Contamination

The tube provides protection from fingers and large contaminants, but additional protection is recommended if your environment has the risk of smaller contaminants such as insects, dust, or rain.

Manufactured by

ELECTRONIC INNOVATIONS CORP

Email:jk@designcircuit.com

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.