Water Detect 2 Click
Water Detect 2 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 : Nenad Filipovic
- Date : Jul 2023.
- Type : GPIO type
Software Support
Example Description
This library contains API for Water Detect 2 Click driver. Water Detect 2 Click is used for detecting water and other electroconductive liquids.
Example Libraries
- MikroSDK.Board
- MikroSDK.Log
- Click.WaterDetect2
Example Key Functions
- waterdetect2_cfg_setup Config Object Initialization function.
void waterdetect2_cfg_setup(waterdetect2_cfg_t *cfg)
Water Detect 2 configuration object setup function.
Water Detect 2 Click configuration object.
Definition waterdetect2.h:108
- waterdetect2_init Initialization function.
err_t waterdetect2_init(waterdetect2_t *ctx, waterdetect2_cfg_t *cfg)
Water Detect 2 initialization function.
Water Detect 2 Click context object.
Definition waterdetect2.h:97
- waterdetect2_default_cfg Click Default Configuration function.
void waterdetect2_default_cfg(waterdetect2_t *ctx)
Water Detect 2 default configuration function.
- waterdetect2_get_fluid_status Water Detect 2 get fluid status function.
uint8_t waterdetect2_get_fluid_status(waterdetect2_t *ctx)
Water Detect 2 get fluid status function.
- waterdetect2_enable Water Detect 2 enable function.
void waterdetect2_enable(waterdetect2_t *ctx)
Water Detect 2 enable function.
- waterdetect2_disable Water Detect 2 disable function.
void waterdetect2_disable(waterdetect2_t *ctx)
Water Detect 2 disable function.
Application Init
Initializes driver and performs the default configuration.
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
if ( DIGITAL_OUT_UNSUPPORTED_PIN ==
waterdetect2_init( &waterdetect2, &waterdetect2_cfg ) )
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
log_info( &logger, " Application Task " );
}
#define WATERDETECT2_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition waterdetect2.h:85
void application_init(void)
Definition main.c:29
Application Task
Reads fluid presence status and determines if there is fluid presence or not.
{
if ( fluid_status != fluid_status_old )
{
{
log_printf( &logger, " Fluid present! \r\n" );
}
else
{
log_printf( &logger, " No fluid present. \r\n" );
}
log_printf( &logger, "------------------- \r\n" );
fluid_status_old = fluid_status;
}
}
#define WATERDETECT2_FLUID_DETECTED
Definition waterdetect2.h:67
void application_task(void)
Definition main.c:60
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.