TOP Contributors

  1. MIKROE (2662 codes)
  2. Alcides Ramos (357 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (112 codes)
  5. Chisanga Mumba (90 codes)
  6. S P (73 codes)
  7. dany (71 codes)
  8. MikroBUS.NET Team (35 codes)
  9. NART SCHINACKOW (34 codes)
  10. Armstrong Subero (27 codes)

Most Downloaded

  1. Timer Calculator (137024 times)
  2. FAT32 Library (70147 times)
  3. Network Ethernet Library (56030 times)
  4. USB Device Library (46355 times)
  5. Network WiFi Library (41968 times)
  6. FT800 Library (41297 times)
  7. GSM click (29066 times)
  8. mikroSDK (26502 times)
  9. PID Library (26452 times)
  10. microSD click (25428 times)
Libstock prefers package manager

Package Manager

We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]

< Back
mikroSDK Library

Diff Press 2 click

Rating:

0

Author: MIKROE

Last Updated: 2024-04-03

Package Version: 2.1.0.7

mikroSDK Library: 2.0.0.0

Category: Pressure

Downloaded: 56 times

Not followed.

License: MIT license  

Diff Press 2 Click is a compact add-on board that contains Sensirion’s differential pressure sensor. This board features the SDP31-500PA, a small differential pressure sensor designed for high-volume applications. The SDP31-500PA comes with a configurable host interface that supports I2C serial communication and measures pressure in a range from -500Pa up to +500Pa with an accuracy of 3%. It comes as calibrated and temperature compensated with high reliability/long-term stability, has the best signal-to-noise ratio. It operates in a temperature range of -40°C to 85°C, ensuring stable operation under extreme conditions.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "Diff Press 2 click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "Diff Press 2 click" changes.

Do you want to report abuse regarding "Diff Press 2 click".

  • Information
  • Comments (0)

mikroSDK Library Blog


Diff Press 2 click

Diff Press 2 Click is a compact add-on board that contains Sensirion’s differential pressure sensor. This board features the SDP31-500PA, a small differential pressure sensor designed for high-volume applications. The SDP31-500PA comes with a configurable host interface that supports I2C serial communication and measures pressure in a range from -500Pa up to +500Pa with an accuracy of 3%. It comes as calibrated and temperature compensated with high reliability/long-term stability, has the best signal-to-noise ratio. It operates in a temperature range of -40°C to 85°C, ensuring stable operation under extreme conditions.

diffpress2_click.png

click Product page


Click library

  • Author : Luka Filipovic
  • Date : Sep 2021.
  • Type : I2C type

Software Support

We provide a library for the DiffPress2 Click as well as a demo application (example), developed using MikroElektronika compilers. The demo can run on all the main MikroElektronika development boards.

Package can be downloaded/installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.

Library Description

This library contains API for DiffPress2 Click driver.

Standard key functions :

  • diffpress2_cfg_setup Config Object Initialization function.

    void diffpress2_cfg_setup ( diffpress2_cfg_t *cfg );
  • diffpress2_init Initialization function.

    err_t diffpress2_init ( diffpress2_t *ctx, diffpress2_cfg_t *cfg );
  • diffpress2_default_cfg Click Default Configuration function.

    err_t diffpress2_default_cfg ( diffpress2_t *ctx );

Example key functions :

  • diffpress2_get_id Reads device ID's

    err_t diffpress2_get_id ( diffpress2_t *ctx );
  • diffpress2_reset Reset device

    err_t diffpress2_reset ( diffpress2_t *ctx );
  • diffpress2_trigger_measurement Pressure and temperature reading

    err_t diffpress2_trigger_measurement ( diffpress2_t *ctx, uint16_t trigger_type, 
                                         float *diff_press, float *temperature );

Example Description

This example application showcases ability for device to read and calculate mass flow or diff press pressure in Pascals and temperature in degrees Celsius.

The demo application is composed of two sections :

Application Init

Initialization of module communication(I2C, UART) and additional interrupt pin. Resets device and reads serial and product ID's and logs them.


void application_init ( void ) 
{
    log_cfg_t log_cfg;  /**< Logger config object. */
    diffpress2_cfg_t diffpress2_cfg;  /**< Click config object. */

    /** 
     * Logger initialization.
     * Default baud rate: 115200
     * Default log level: LOG_LEVEL_DEBUG
     * @note If USB_UART_RX and USB_UART_TX 
     * are defined as HAL_PIN_NC, you will 
     * need to define them manually for log to work. 
     * See @b LOG_MAP_USB_UART macro definition for detailed explanation.
     */
    LOG_MAP_USB_UART( log_cfg );
    log_init( &logger, &log_cfg );
    log_info( &logger, " Application Init " );

    // Click initialization.
    diffpress2_cfg_setup( &diffpress2_cfg );
    DIFFPRESS2_MAP_MIKROBUS( diffpress2_cfg, MIKROBUS_1 );
    err_t init_flag = diffpress2_init( &diffpress2, &diffpress2_cfg );
    if ( I2C_MASTER_ERROR == init_flag ) 
    {
        log_error( &logger, " Application Init Error. " );
        log_info( &logger, " Please, run program again... " );
        for ( ; ; );
    }

    if ( diffpress2_default_cfg ( &diffpress2 ) ) 
    {
        log_error( &logger, " Default configuration." );
        for ( ; ; );
    }

    log_printf( &logger, " > Product ID: 0x%.8LX\r\n", diffpress2.product_id );
    log_printf( &logger, " > Serial ID: 0x%.8LX%.8LX\r\n", 
                diffpress2.serial_id[ 0 ], diffpress2.serial_id[ 1 ] );

    log_info( &logger, " Application Task " );
}

Application Task

Read and calculate differential in Pascal and temperature in degrees Celsius every 300ms.


void application_task ( void )
{
    float pressure;
    float temperature;

    if ( diffpress2_trigger_measurement( &diffpress2, DIFFPRESS2_CMD_TRIGGER_MEAS_DIFF_PRESS, 
                                         &pressure, &temperature ) )
    {
        log_error( &logger, " Read data." );
    }
    else
    {
        log_printf( &logger, " > Pressure[Pa]: %.2f\r\n", pressure );
        log_printf( &logger, " > Temperature[degC]: %.2f\r\n", temperature );
        log_printf( &logger, "*************************************\r\n" );
    }

    Delay_ms ( 300 );
}

The full application code, and ready to use projects can be installed directly from NECTO Studio Package Manager(recommended way), downloaded from our LibStock™ or found on Mikroe github account.

Other Mikroe Libraries used in the example:

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.DiffPress2

Additional notes and informations

Depending on the development board you are using, you may need USB UART click, USB UART 2 Click or RS232 Click to connect to your PC, for development systems with no UART to USB interface available on the board. UART terminal is available in all MikroElektronika compilers.


ALSO FROM THIS AUTHOR

Buck 16 click

0

Buck 16 Click is a compact add-on board that contains a DC-DC power converter that steps down the voltage from its input to its output. This board features the TPS62912, a high-efficiency, low noise, and low ripple current-mode synchronous buck converter from Texas Instruments.

[Learn More]

SPI Isolator 5 click

0

SPI Isolator 5 Click is a compact add-on board with a digital isolator optimized for a serial peripheral interface. This board features the DCL541A01, a high-speed quad-channel digital isolator from Toshiba Semiconductor. Outstanding performance characteristics of the DCL541A01 are achieved by Toshiba CMOS technology and the magnetic coupling structure. In addition, they comply with UL 1577 safety-related certification, have a withstand voltage rating of 5kVrms, and operate with the external supply voltage ranging from 2.25V to 5.5V, providing compatibility with lower voltage systems enabling voltage translation functionality across the isolation barrier.

[Learn More]

ADC 7 click

5

ADC 7 click is an advanced 32-bit analog to digital converter (ADC) which uses the LTC2500-32, a 32-bit oversampling SAR ADC with a configurable digital filter.

[Learn More]