Temperature Measurement Using STS21 and Particle Photon

26600

Intro: Temperature Measurement Using STS21 and Particle Photon

STS21 Digital Temperature Sensor offers superior performance and a space saving footprint. It provides calibrated, linearized signals in digital, I2C format. Fabrication of this sensor is based on CMOSens technology, which attributes to the superior performance and reliability of STS21. The resolution of STS21 can be changed by command, low battery can be detected and a checksum helps to improve communication reliability.

In this tutorial the interfacing of the STS21 sensor module with particle photon has been illustrated. To read the temperature values, we have used photon 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. STS21

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 STS21 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 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>// STS21 I2C address is 0x4A(74)</p><p>#define addr 0x4A</p><p>float cTemp = 0.0;
</p><p>void setup()   </p><p>{             </p><p>// Set variable    </p><p>Particle.variable("i2cdevice", "STS21");    </p><p>Particle.variable("cTemp", cTemp);           </p><p>// Initialise I2C communication as MASTER    </p><p>Wire.begin();      </p><p>// Start serial communication, set baud rate = 9600    </p><p>Serial.begin(9600);    </p><p>delay(300);</p><p>}  </p><p>void loop() </p><p>{    </p><p>unsigned int data[2];    </p><p>// Start I2C Transmission     </p><p>Wire.beginTransmission(addr);       </p><p>// Select no hold master    </p><p>Wire.write(0xF3);    </p><p>// End I2C Transmission    </p><p>Wire.endTransmission();    </p><p>delay(500);        </p><p>// Request 2 bytes of data    </p><p>Wire.requestFrom(addr, 2);              </p><p>// Read 2 bytes of data    </p><p>if (Wire.available() == 2)     </p><p>{                             </p><p>data[0] = Wire.read();        </p><p>data[1] = Wire.read();    </p><p>}        </p><p>// Convert the data    </p><p>int rawtmp = data[0] * 256 + data[1];    </p><p>int value = rawtmp & 0xFFFC;    </p><p>cTemp = -46.85 + (175.72 * (value / 65536.0));    </p><p>float fTemp = cTemp * 1.8 + 32;        </p><p>// Output data to dashboard          </p><p>Particle.publish("Temperature in Celsius : ", String(cTemp));    </p><p>Particle.publish("Temperature in Fahrenheit: ", String(fTemp));    </p><p>delay(1000); 
}</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:

STS21 Digital Temperature Sensor can be employed in systems which require high accuracy temperature monitoring. It can be incorporated in various computer equipments, medical equipments and industrial control systems with the requisite of temperature measurement with proficient accuracy.