Introduction: Humidity Measurement Using HYT939 and Arduino Nano

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 arduino nano. In this tutorial the interfacing of the HYT939 sensor module with arduino nano is demonstrated.

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

The communication protocol on which the sensor works is I2C. I2C stands for the inter-integrated circuit. It is a communication protocol in which the communication takes place through SDA(serial data) and SCL(serial clock) lines. It allows connecting multiple devices at the same time. It is one of the simplest and most efficient communication protocol.

Step 1: Hardware Required:

The materials that we need for accomplishing our goal includes the following hardware components:

1. HYT939

2. Arduino Nano

3. I2C Cable

4. I2C shield for Arduino nano

Step 2: Hardware Hookup:

The hardware hookup section basically explains the wiring connections required between the sensor and the arduino nano. 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: Arduino Code for Humidity Measurement:

Let's start with the Arduinoo code now.

While using the sensor module with the Arduino, we include Wire.h library. "Wire" library contains the functions which facilitate the i2c communication between the sensor and the Arduino board.

The entire Arduino code is given below for the convenience of the user:

<p>#include<Wire.h></p><p>// HYT939 I2C address is 0x28(40)</p><p>#define Addr 0x28<br></p><p>void setup()</p><p>{  </p><p>// Initialise I2C communication as MASTER  </p><p>Wire.begin();  </p><p>// Initialise Serial Communication  </p><p>Serial.begin(9600);  </p><p>delay(300);</p><p>}
void loop()</p><p>{  </p><p>unsigned int data[4]; </p><p>// Start I2C Transmission  </p><p>Wire.beginTransmission(Addr);  </p><p>// Send normal mode command  </p><p>Wire.write(0x80);  </p><p>// Stop I2C transmission  </p><p>Wire.endTransmission();  </p><p>delay(300);    </p><p>// Request 4 bytes of data  </p><p>Wire.requestFrom(Addr, 4);</p><p>// Read 4 bytes of data  </p><p>// humidity msb, humidity lsb, temp msb, temp lsb  </p><p>if(Wire.available() == 4)  </p><p>{</p><p>data[0] = Wire.read();    </p><p>data[1] = Wire.read();    </p><p>data[2] = Wire.read();    </p><p>data[3] = Wire.read();        </p><p>// Convert the data to 14-bits    </p><p>float humidity = (((data[0] & 0x3F) * 256.0) +  data[1]) * (100.0 / 16383.0);    </p><p>float cTemp = (((data[2] * 256.0) + (data[3] & 0xFC)) / 4) * (165.0 / 16383.0) - 40;    </p><p>float fTemp = (cTemp * 1.8) + 32;        </p><p>// Output data to serial monitor    </p><p>Serial.print("Relative Humidity : ");    </p><p>Serial.print(humidity);    </p><p>Serial.println(" %RH");    </p><p>Serial.print("Temperature in Celsius : ");    </p><p>Serial.print(cTemp);    </p><p>Serial.println(" C");   </p><p>Serial.print("Temperature in Fahrenheit : ");    </p><p>Serial.print(fTemp);    </p><p>Serial.println(" F");  </p><p>}  </p><p>delay(300);</p><p>}</p>

In wire library Wire.write() and Wire.read() is used to write the commands and read the sensor output. Following part of the code illustrates the reading of sensor output.

<p>// Read 4 bytes of data  <br>// humidity msb, humidity lsb, temp msb, temp lsb  
if(Wire.available() == 4)  
{
data[0] = Wire.read();    
data[1] = Wire.read();    
data[2] = Wire.read();    
data[3] = Wire.read();</p><p>}</p>

The sensor output is 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.