TOP Contributors

  1. MIKROE (2779 codes)
  2. Alcides Ramos (376 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (118 codes)
  5. Bugz Bensce (97 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 (139566 times)
  2. FAT32 Library (72041 times)
  3. Network Ethernet Library (57256 times)
  4. USB Device Library (47615 times)
  5. Network WiFi Library (43219 times)
  6. FT800 Library (42566 times)
  7. GSM click (29930 times)
  8. mikroSDK (28292 times)
  9. PID Library (26933 times)
  10. microSD click (26309 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

AccelPressure Click

Rating:

0

Author: MIKROE

Last Updated: 2024-10-31

Package Version: 2.1.0.5

mikroSDK Library: 2.0.0.0

Category: Motion

Downloaded: 77 times

Not followed.

License: MIT license  

Accel&Pressure Click is a compact add-on board representing a rate-of-climb sensing solution for your application. This board features the FXLS8974CF, a 3-axis low-g accelerometer, and the MPL3115A2, a precision pressure sensor with altimetry, both from NXP Semiconductor. Those two sensors are high-performance, low-power devices covering all of Earth's surface elevations. By combining the acceleration and the barometric pressure data, you can easily determine the vertical velocity (the rate of climb) of the device on which the Accel&Pressure Click is integrated.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "AccelPressure Click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "AccelPressure Click" changes.

Do you want to report abuse regarding "AccelPressure Click".

  • Information
  • Comments (0)

mikroSDK Library Blog


AccelPressure Click

Accel&Pressure Click is a compact add-on board representing a rate-of-climb sensing solution for your application. This board features the FXLS8974CF, a 3-axis low-g accelerometer, and the MPL3115A2, a precision pressure sensor with altimetry, both from NXP Semiconductor. Those two sensors are high-performance, low-power devices covering all of Earth's surface elevations. By combining the acceleration and the barometric pressure data, you can easily determine the vertical velocity (the rate of climb) of the device on which the Accel&Pressure Click is integrated.

accelpressure_click.png

Click Product page


Click library

  • Author : Nenad Filipovic
  • Date : Nov 2023.
  • Type : I2C type

Software Support

We provide a library for the AccelPressure 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 AccelPressure Click driver.

Standard key functions :

  • accelpressure_cfg_setup Config Object Initialization function.

    void accelpressure_cfg_setup ( accelpressure_cfg_t *cfg );
  • accelpressure_init Initialization function.

    err_t accelpressure_init ( accelpressure_t *ctx, accelpressure_cfg_t *cfg );
  • accelpressure_default_cfg Click Default Configuration function.

    err_t accelpressure_default_cfg ( accelpressure_t *ctx );

Example key functions :

  • accelpressure_get_axes_data This function reads the accelerometer sensor axes data.

    err_t accelpressure_get_axes_data ( accelpressure_t *ctx, accelpressure_axes_t *axes );
  • accelpressure_get_pressure This function reads the sensor pressure data conversion in mbar.

    err_t accelpressure_get_pressure ( accelpressure_t *ctx, float *pressure );
  • accelpressure_get_temperature This function reads the conversion of sensor pressure data in degrees Celsius.

    err_t accelpressure_get_temperature ( accelpressure_t *ctx, float *temperature );

Example Description

This library contains API for the AccelPressure Click driver. The library initializes and defines the I2C drivers to write and read data from registers, as well as the default configuration for reading the accelerator, pressure, and temperature data.

The demo application is composed of two sections :

Application Init

The initialization of the I2C module, log UART, and additional pins. After the driver init, the app executes a default configuration.

void application_init ( void ) 
{
    log_cfg_t log_cfg;  /**< Logger config object. */
    accelpressure_cfg_t accelpressure_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.
    accelpressure_cfg_setup( &accelpressure_cfg );
    ACCELPRESSURE_MAP_MIKROBUS( accelpressure_cfg, MIKROBUS_1 );
    if ( I2C_MASTER_ERROR == accelpressure_init( &accelpressure, &accelpressure_cfg ) ) 
    {
        log_error( &logger, " Communication init." );
        for ( ; ; );
    }

    if ( ACCELPRESSURE_ERROR == accelpressure_default_cfg ( &accelpressure ) )
    {
        log_error( &logger, " Default configuration." );
        for ( ; ; );
    }

    log_info( &logger, " Application Task " );
    log_printf( &logger, "_________________\r\n" );
}

Application Task

This example demonstrates the use of the AccelPressure Click board. Measures and displays acceleration data for the X-axis, Y-axis, and Z-axis [mg], pressure [mBar], and temperature [degree Celsius] data. Results are being sent to the UART Terminal, where you can track their changes.

void application_task ( void ) 
{
    accelpressure_axes_t acc_axis;
    float pressure = 0, temperature = 0;
    if ( ACCELPRESSURE_OK == accelpressure_get_axes_data( &accelpressure, &acc_axis ) )
    {
        log_printf( &logger, " Accel X: %.2f mg\r\n", acc_axis.x );
        log_printf( &logger, " Accel Y: %.2f mg\r\n", acc_axis.y );
        log_printf( &logger, " Accel Z: %.2f mg\r\n", acc_axis.z );
    }
    log_printf( &logger, "_________________\r\n" );
    Delay_ms ( 100 );

    if ( ACCELPRESSURE_OK == accelpressure_get_pressure( &accelpressure, &pressure ) )
    {
        log_printf( &logger, " Pressure: %.2f mbar\r\n", pressure );
    }
    Delay_ms ( 100 );

    if ( ACCELPRESSURE_OK == accelpressure_get_temperature( &accelpressure, &temperature ) )
    {
        log_printf( &logger, " Temperature: %.2f mbar\r\n", temperature );
    }
    log_printf( &logger, "_________________\r\n" );
    Delay_ms ( 1000 );
}

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.AccelPressure

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

GPS2 click - Example

0

Simple example which demonstrates usage of the GPS2 Click board with QUECTEL L30 GPS module. It displays a map of the world on the TFT and shows the location of the GPS module on it.

[Learn More]

LTE Cat.1 3 EX Click

0

LTE Cat.1 3 Click (for Europe) is a compact add-on board for reliable 4G wireless communication. This board features the EG91EXGA-128-SGNS, an LTE Cat 1 IoT module that meets the 3GPP Release 11 standard from Quectel. It supports multiple wireless standards, including LTE-FDD, WCDMA, and GSM, ensuring broad network compatibility. Key features include multi-band LTE support (B1/B3/B7/B8/B20/B28), RX diversity for bands B1 and B8, and multi-constellation GNSS (GPS, GLONASS, BeiDou/Compass, Galileo, QZSS). It also integrates a 16-bit mono audio codec for voice functionality with support for CTIA standard headphones.

[Learn More]

EERAM 3 Click

0

EERAM 3 Click is a compact add-on board that contains EERAM memory designed to retain data during power loss without the aid of external batteries. This board features the 48L256, a serial EERAM with SRAM memory core, including hidden EEPROM backup from Microchip Technology.

[Learn More]