CPS120 is a high quality and low cost capacitive absolute pressure sensor with fully compensated output. It consumes much less power and comprises of an ultra small Micro-Electro-Mechanical Sensor (MEMS) for pressure measurement. A sigma-delta based ADC is also embodied in it to accomplish the requirement of compensated output.
In this tutorial, the interfacing of the CPS120 sensor module with Arduino Nano has been illustrated. To read the pressure 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 RequiredThe materials that we need for accomplishing our goal includes the following hardware components:
1. CPS120
2. Arduino Nano
3. I2C Cable
4. I2C Shield for Arduino Nano
The hardware hookup section basically explains the wiring connections required between the sensor and the Arduino Nano. Ensuring correct connections is a basic necessity while working on any system for the desired output. So, the requisite connections are as follows:
- The CPS120 will work over I2C. Reference the example schematic 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. These are connected with the help of an I2C cable. These connections are demonstrated in the pictures above.
Step 3: Code for Pressure MeasurementLets start with the Arduino code now.
While using the sensor module with the Arduino, we include Wire.h
library. The Wire library contains the functions which facilitate the I2C communication between the sensor and the Arduino board.
The entire Arduino code is given in the below Code section for the convenience of the user.
In the Wire library, Wire.write()
and Wire.read()
are used to write the commands and read the sensor output. Serial.print()
and Serial.println()
are used to display the output of the sensor on the serial monitor of the Arduino IDE. The output of the sensor is shown in the picture above.
CPS120 has a variety of applications. It can be employed in portable and stationary barometers, altimeters etc. Pressure is an important parameter to determine the weather conditions and considering that this sensor can be installed at weather stations too. It can be incorporated in air control systems as well as vacuum systems.
Comments
Please log in or sign up to comment.