pressure6 2.2.0
pressure6


Pressure 6 Click

Pressure 6 Click demo application is developed using the NECTO Studio, ensuring compatibility with mikroSDK's open-source libraries and tools. Designed for plug-and-play implementation and testing, the demo is fully compatible with all development, starter, and mikromedia boards featuring a mikroBUS™ socket.


Click Library

  • Author : MikroE Team
  • Date : Dec 2019.
  • Type : I2C type

Software Support

Example Description

The example gets the pressure and temperature values from the sensors and logs on terminal.

Example Libraries

  • MikroSDK.Board
  • MikroSDK.Log
  • Click.Pressure6

Example Key Functions

Application Init

Driver initialization and powering ON procedure to wake up the sensor and seting up the measurement mode.

void application_init ( void )
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, "---- Application Init ----" );
// Click initialization.
PRESSURE6_MAP_MIKROBUS( cfg, MIKROBUS_1 );
pressure6_init( &pressure6, &cfg );
}
#define PRESSURE6_MAP_MIKROBUS(cfg, mikrobus)
Definition pressure6.h:62
void application_init(void)
Definition main.c:35

Application Task

Read Pressure data and Temperature data and logs data to USBUART every 1 sec.

void application_task ( void )
{
// Task implementation.
Pressure = pressure6_get_pressure( &pressure6 );
Temperature = pressure6_get_temperature( &pressure6 );
log_printf( &logger, "Pressure: %u\r\n", pressure);
log_printf( &logger, "Temperature: %u\r\n", temperature);
Delay_ms ( 1000 );
}
void pressure6_waiting_for_new_data(pressure6_t *ctx)
Waits for new data.
void application_task(void)
Definition main.c:62

Application Output

This Click board can be interfaced and monitored in two ways:

  • Application Output - Use the "Application Output" window in Debug mode for real-time data monitoring. Set it up properly by following this tutorial.
  • UART Terminal - Monitor data via the UART Terminal using a USB to UART converter. For detailed instructions, check out this tutorial.

Additional Notes and Information

The complete application code and a ready-to-use project are available through the NECTO Studio Package Manager for direct installation in the NECTO Studio. The application code can also be found on the MIKROE GitHub account.