Introduction: Humidity Measurement Using HYT939 and Raspberry Pi

About: We are a group of makers. We work in IoT, IOS app, android app, embedded design, sensor design, raspberry pi, arduino, beaglebone, particle electron, particle photon, Bluetooth.

HYT939 is a digital humidity sensor which works on I2C communication protocol. Humidity is a pivotal parameter when it comes to medical systems and laboratories, So in order to accomplish these goals we tried to interface HYT939 with raspberry pi. In this tutorial the interfacing of the HYT939 sensor module with raspberry pi is demonstrated and its programming using Java language has also been illustrated.

To read the humidity values, we have used raspberry pi with an I2c adapter.This I2C adapter makes the connection to the sensor module easy and more reliable.

Step 1: Hardware Required:

Hardware that is required to accomplish the task is as follows:

1. HYT939

2. Raspberry Pi

3. I2C Cable

4. I2C Shield For Raspberry Pi

5. Ethernet Cable

-

Step 2: Hardware Hookup:

The hardware hookup section basically explains the wiring connections required between the sensor and the raspberry pi. Ensuring correct connections is the basic necessity while working on any system for the desired output. So, the requisite connections are as follows:

The HYT939 will work over I2C . Here is the example wiring diagram, demonstrating how to wire up each interface of the sensor.

Out-of-the-box, the board is configured for an I2C interface, as such we recommend using this hookup if you’re otherwise agnostic. All you need is four wires!

Only four connections are required Vcc, Gnd, SCL and SDA pins and these are connected with the help of I2C cable.

These connections are demonstrated in the pictures above.

Step 3: Java Code for Humidity Measurement:

The advantage of using raspberry pi is, that is provides you the flexibility of the programming language in which you want to program the board in order to interface the sensor with it. Harnessing this advantage of this board, we are demonstrating here its programming in the Java. The java code for HYT939 can be downloaded from our github community that is Dcube Store.

As well as for the ease of the users, we are explaining the code here also:

As the first step of coding you need to download the pi4j library in case of java, because this library supports the functions used in the code. So, to download the library you can visit the following link:

http://pi4j.com/install.html

You can copy the working java code for this sensor from here also:

<p>import com.pi4j.io.i2c.I2CBus;</p><p>import com.pi4j.io.i2c.I2CDevice;</p><p>import com.pi4j.io.i2c.I2CFactory;</p><p>import java.io.IOException;</p><p>public class HYT939</p><p>{	</p><p>public static void main(String args[]) throws Exception	</p><p>{		</p><p>// Create I2CBus		</p><p>I2CBus bus = I2CFactory.getInstance(I2CBus.BUS_1);		</p><p>// Get I2C device, HYT939 I2C address is 0x28(40)		</p><p>I2CDevice device = bus.getDevice(0x28);</p><p>// Send normal mode command 		</p><p>device.write((byte)0x80);		</p><p>Thread.sleep(500);</p><p>// Read 4 bytes of data		</p><p>// humidity msb, humidity lsb, temp msb, temp lsb		</p><p>byte[] data = new byte[4];		</p><p>device.read(data,0,4);</p><p>// Convert the data to 14-bits		</p><p>double humidity = (((data[0] & 0x3F) * 256) + (data[1] & 0xFF)) * (100.0 / 16383.0);		</p><p>double cTemp = ((((data[2] & 0xFF) * 256) + (data[3] & 0xFC)) / 4) * (165.0 / 16383.0) - 40;		</p><p>double fTemp = (cTemp * 1.8 ) + 32;</p><p>// Output data to screen		</p><p>System.out.printf("Relative Humidity is : %.2f %%RH %n", humidity);		</p><p>System.out.printf("Temperature in Celsius is : %.2f C %n", cTemp);		</p><p>System.out.printf("Temperature in Fahrenheit is : %.2f F %n", fTemp);	</p><p>}</p><p>}</p>

The library which facilitates i2c communication between the sensor and the board is pi4j, its various packages I2CBus, I2CDevice and I2CFactory help to establish the connection.

<p>import com.pi4j.io.i2c.I2CBus;<br>import com.pi4j.io.i2c.I2CDevice;
import com.pi4j.io.i2c.I2CFactory;
import java.io.IOException;</p>

write() and read() functions are used to write some particular commands to the sensor to make it work in a particular mode and read the sensor output respectively. Following part of the code illustrates the usage of these functions.

<p>// Send normal mode command 		<br>device.write((byte)0x80);		
Thread.sleep(500);
// Read 4 bytes of data		
// humidity msb, humidity lsb, temp msb, temp lsb		
byte[] data = new byte[4];		
device.read(data,0,4);</p>

The output of the sensor is also shown in the picture above.

Step 4: Applications:

HYT939 being an efficient digital humidity sensor are employed in Medical systems, Autoclaves. Pressure dew point measurement and Drying systems also find the usage of this sensor module.In various Laboratories where appropriate humidity level is a pivotal parameter for conducting experiments, this sensor can be deployed there for humidity measurements.