TOP Contributors

  1. MIKROE (2664 codes)
  2. Alcides Ramos (358 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 (137127 times)
  2. FAT32 Library (70240 times)
  3. Network Ethernet Library (56131 times)
  4. USB Device Library (46447 times)
  5. Network WiFi Library (42103 times)
  6. FT800 Library (41410 times)
  7. GSM click (29125 times)
  8. mikroSDK (26567 times)
  9. PID Library (26510 times)
  10. microSD click (25500 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

Pressure 14 click

Rating:

5

Author: MIKROE

Last Updated: 2021-02-12

Package Version: 1.0.0.0

mikroSDK Library: 1.0.0.0

Category: Pressure

Downloaded: 1505 times

Not followed.

License: MIT license  

Pressure 14 Click is a compact add-on board that contains a board-mount pressure sensor. This board features the ABP2LANT060PG2A3XX, a piezoresistive silicon pressure sensor offering a digital output for reading pressure over the specified full-scale pressure span and a temperature range from Honeywell Sensing and Productivity Solutions.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "Pressure 14 click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "Pressure 14 click" changes.

Do you want to report abuse regarding "Pressure 14 click".

  • mikroSDK Library 2.0.0.0
  • Comments (0)
DOWNLOAD LINK RELATED COMPILER CONTAINS
mikroBasic PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc

mikroSDK Library Blog

Pressure 14 Click

Pressure 14 Click

Native view of the Pressure 14 Click board.

View full image
Pressure 14 Click

Pressure 14 Click

Front and back view of the Pressure 14 Click board.

View full image

Library Description

The library covers all the necessary functions to control the Pressure 14 click board. The library performs a standard I2C interface communication.

Key functions:

  • void pressure14_measure_cmd ( void ) - Output Measurement Command function.
  • void pressure14_read_press_and_temp ( uint8_t *status_byte, uint32_t *pressure_data, uint32_t *temp_data ) - Read pressure and temperature function.
  • float pressure14_get_pressure ( uint32_t pressure_raw, uint8_t conv_unit ) - Calculate pressure function.

Examples description

The application is composed of three sections :

  • System Initialization - Initializes I2C and UART LOG and sets INT pin as input.
  • Application Initialization - Initialization driver enables I2C.
  • Application Task - (code snippet) This is an example that demonstrates the use of the Pressure 14 click board. In this example, the output measurement command is sent first forcing the ABP2 pressure sensor to exit standby mode and enter the operating mode. The device's busy state is evaluated via the end-of-conversion pin ( INT ) following the pressure and temperature data acquisition and calculation. The results are being sent to the Usart Terminal. This task repeats every 5 sec.
void application_task ( )
{
    pressure14_measure_cmd( );
    Delay_ms( 10 );
    
    if ( pressure14_check_busy_flag_int( ) == device_busy_false )
    {
        pressure14_read_press_and_temp( &status, &pressure_tmp,
                                         &temperature_tmp );
        Delay_ms( 100 );

        pressure = pressure14_get_pressure( pressure_tmp,
                                            PRESSURE14_CONV_UNIT_MILIBAR );                                 
        temperature = pressure14_get_temperature( temperature_tmp,
                                                  PRESSURE14_CONV_UNIT_CELSIUS );

        mikrobus_logWrite( " Pressure    : ", _LOG_TEXT );
        FloatToStr( pressure, demo_txt );
        mikrobus_logWrite( demo_txt, _LOG_TEXT );
        mikrobus_logWrite( " mbar", _LOG_LINE );

        mikrobus_logWrite( " Temperature : ", _LOG_TEXT );
        FloatToStr( temperature, demo_txt );
        mikrobus_logWrite( demo_txt, _LOG_TEXT );
        mikrobus_logWrite( " C", _LOG_LINE );
        mikrobus_logWrite( "-----------------------", _LOG_LINE );
    }
    Delay_ms( 2000 );
}

Other mikroE Libraries used in the example:

  • I2C
  • UART

Additional notes and informations

Depending on the development board you are using, you may need USB UART clickUSB UART 2 click or RS232 click to connect to your PC, for development systems with no UART to USB interface available on the board. The terminal available in all MikroElektronika compilers, or any other terminal application of your choice, can be used to read the message.

ALSO FROM THIS AUTHOR

3D Hall 10 click

0

3D Hall 10 Click is a compact add-on board used to detect the strength of a magnetic field in all three dimensions. This board features the TMAG5170, a high-precision linear 3D Hall effect sensor from Texas Instruments. The TMAG5170 features an SPI interface for configuration by MCU. The measurement data is provided in digital format of 12-bits corresponding to the magnetic field measured in each X, Y, and Z axes. It can achieve ultra-high precision at speeds up to 20kSPS for faster and more accurate real-time control and offers multiple diagnostics features to detect and report both system and device-level failures.

[Learn More]

DAC 11 click

0

DAC 11 Click is a compact add-on board that contains a highly accurate digital-to-analog converter. This board features the DAC128S085, a general-purpose OCTAL 12-bit analog voltage-output DAC from Texas Instruments.

[Learn More]

NB IoT 2 click

5

NB IoT 2 Click is a compact add-on board that contains a compact LTE Cat NB2 module with ultra-low power consumption.

[Learn More]