LDC click
LDC Click is a compact add-on board that measures inductance change which a conductive target causes when it moves into the inductor's AC magnetic field.
click Product page
Click library
- Author : Luka Filipovic
- Date : Jul 2021.
- Type : I2C type
Software Support
We provide a library for the LDC 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 LDC Click driver.
Standard key functions :
ldc_cfg_setup
Config Object Initialization function.
void ldc_cfg_setup(ldc_cfg_t *cfg)
LDC configuration object setup function.
LDC Click configuration object.
Definition ldc.h:201
ldc_init
Initialization function.
err_t ldc_init(ldc_t *ctx, ldc_cfg_t *cfg)
LDC initialization function.
LDC Click context object.
Definition ldc.h:181
ldc_default_cfg
Click Default Configuration function.
err_t ldc_default_cfg(ldc_t *ctx)
LDC default configuration function.
Example key functions :
ldc_get_interrupt
Get interrupt pin status.
uint8_t ldc_get_interrupt(ldc_t *ctx)
Get interrupt pin status.
ldc_get_frequency
Get frequency value calculated for specific channel.
err_t ldc_get_frequency(ldc_t *ctx, uint8_t channel, uint16_t divider, float *frequency)
Get frequency value calulated for specific channel.
uint16_t divider
Definition main.c:37
ldc_calculate_inductance
Calculate inductance relative to frequency.
float ldc_calculate_inductance(float frequency)
Calculate inductance relative to frequency.
Example Description
This example showcases abillity of the device to detect
metal objects. It configures device for reading data from channel 0, checks if ID's are OK and reads data when interrupt is asserted and logs result.
The demo application is composed of two sections :
Application Init
Initialization of communication modules (I2C, UART) and
additional pins. Then configures the device for reading data from channel 0, and checks if device ID's are correctly read, and read the currently set divider.
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
err_t init_flag =
ldc_init( &ldc, &ldc_cfg );
if ( I2C_MASTER_ERROR == init_flag )
{
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
{
log_error( &logger, " Default configuration. " );
for ( ; ; );
}
uint16_t temp_data = 0;
log_printf( &logger, "> Manufacturer ID: 0x%.4X\r\n", temp_data );
{
log_error( &logger, " Manufacturer ID. " );
for ( ; ; );
}
log_printf( &logger, "> Device ID 0x%.4X\r\n", temp_data );
{
log_error( &logger, " Device ID. " );
for ( ; ; );
}
log_info( &logger, " Application Task " );
}
#define LDC_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition ldc.h:167
#define LDC_REG_CLOCK_DIVIDERS_CH0
Definition ldc.h:81
#define LDC_REG_DEVICE_ID
Definition ldc.h:91
#define LDC_REG_MANUFACTURER_ID
Definition ldc.h:90
#define LDC_MANUFACTURER_ID
LDC identification data.
Definition ldc.h:109
#define LDC_DEVICE_ID
Definition ldc.h:110
err_t ldc_generic_read(ldc_t *ctx, uint8_t reg, uint16_t *rx_data)
LDC I2C reading function.
void application_init(void)
Definition main.c:39
Application Task
Checks if interrupt pin is asserted, if so reads data from channel 0.
Calculates and returns the frequency of the sensor. If the frequency is greater than 0, then it calculates the inductance of the sensor. It will log error and error values if it occurred.
{
{
float frequency = 0.0;
float inductance = 0.0;
uint16_t status = 0;
{
if ( !ret_val )
{
log_printf( &logger, "> Freq[MHz]: %.3f\r\n", frequency );
if ( frequency > 0 )
{
}
log_printf( &logger, "> L[uH]: %.3f\r\n", inductance );
log_printf( &logger, "> ************************\r\n" );
Delay_ms ( 500 );
}
else
{
log_error( &logger, " Reading data: %ld", ret_val );
}
}
}
}
#define LDC_REG_DATA_CH0
LDC description register.
Definition ldc.h:73
#define LDC_REG_STATUS
Definition ldc.h:83
#define LDC_STATUS_DRDY
Status register.
Definition ldc.h:142
void application_task(void)
Definition main.c:97
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.LDC
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.