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
- pressure6_cfg_setup Config Object Initialization function.
void pressure6_cfg_setup(pressure6_cfg_t *cfg)
Config Object Initialization function.
Click configuration structure definition.
Definition pressure6.h:129
- pressure6_init Initialization function.
PRESSURE6_RETVAL pressure6_init(pressure6_t *ctx, pressure6_cfg_t *cfg)
Initialization function.
Click ctx object definition.
Definition pressure6.h:110
- pressure6_default_cfg Click Default Configuration function.
void pressure6_default_cfg(pressure6_t *ctx)
Click Default Configuration function.
- pressure6_get_temperature This function gets the temperature data from the sensor.
uint8_t pressure6_get_temperature(pressure6_t *ctx)
Temperature value.
- pressure6_power_on This function turns the sensor on.
void pressure6_power_on(pressure6_t *ctx)
Power ON.
- pressure6_get_pressure This function gets pressure data from the sensor.
uint16_t pressure6_get_pressure(pressure6_t *ctx)
Pressure value.
Application Init
Driver initialization and powering ON procedure to wake up the sensor and seting up the measurement mode.
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, "---- Application Init ----" );
}
#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.
{
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.