Humidity and Temperature Measurement Using HIH6130 and Particle Photon

44400

Intro: Humidity and Temperature Measurement Using HIH6130 and Particle Photon

HIH6130 is a humidity and temperature sensor with digital output. These sensors provide an accuracy level of ±4% RH. With industry-leading long-term stability, true temperature-compensated digital I2C, Industry-leading reliability, Energy efficiency and Ultra-small package size and options.

In this tutorial the interfacing of the HIH6130 sensor module with particle photon has been illustrated. To read the temperature and humidity values, we have used arduino with an I2c adapter.This I2C adapter makes the connection to the sensor module easy and more reliable.

STEP 1: Hardware Required:

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

1. HIH6130

2. Particle Photon

3. I2C Cable

4. I2C Shield for particle photon

STEP 2: Hardware Hookup:

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

The HIH6130 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: Code for Humidity and Temperature Measurement:

Let's start with the particle code now.

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

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

<p>#include<application.h> </p><p>#include<spark_wiring_i2c.h> </p><p>// HIH6130 I2C address is 0x27(39)</p><p>#define Addr 0x27</p><p>double cTemp = 0.0, fTemp = 0.0, humidity = 0.0;</p><p>int temp = 0;</p><p>void setup()</p><p>{  </p><p>// Set variable  </p><p>Particle.variable("i2cdevice", "HIH6130");  </p><p>Particle.variable("humidity", humidity);  </p><p>Particle.variable("cTemp", cTemp);</p><p>// Initialise I2C communication  </p><p>Wire.begin();  </p><p>// Initialise Serial Communication, set baud rate = 9600  </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>// Stop I2C Transmission  </p><p>Wire.endTransmission();</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>}</p><p>// Convert the data to 14-bits  </p><p>humidity = (((data[0] & 0x3F) * 256) + data[1]) / 16384.0 * 100.0;  </p><p>temp = (((data[2] * 256) + (data[3] & 0xFC)) / 4);  </p><p>cTemp = (temp / 16384.0) * 165.0 - 40.0;  </p><p>fTemp = cTemp * 1.8 + 32;</p><p>// Output data to dashboard  </p><p>Particle.publish("Relative Humidity : ", String(humidity));  </p><p>delay(1000);  </p><p>Particle.publish("Temperature in Celsius : ", String(cTemp));  </p><p>delay(1000);  </p><p>Particle.publish("Temperature in Fahrenheit : ", String(fTemp));  </p><p>delay(1000);</p><p>}</p>

Particle.variable() function creates the variables to store the output of the sensor and Particle.publish() function displays the output on the dashboard of the site.

The sensor output is shown in the picture above for your reference.

STEP 4: Applications:

HIH6130 can be used to provide precise relative humidity and temperature measurement in air conditioners, enthalpy sensing, thermostats, humidifiers/de-humidifiers, and humidistats to maintain occupant comfort. It can also be employed in air compressors, weather stations and telecom cabinets.