color12  2.1.0.0
Main Page

Color 12 click

PRVIH_PAR_RECENICA_SA_PRODUCT_PAGE_DA_ISPRATE_CELINU

[click Product page](CLICK_PRODUCT_PAGE_LINK)


Click library

  • Author : Nenad Filipovic
  • Date : Apr 2023.
  • Type : I2C type

Software Support

We provide a library for the Color 12 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 Color 12 Click driver.

Standard key functions :

Example key functions :

Example Description

This library contains API for the Color 12 Click driver. The demo application sets sensor configuration and reads and displays RGB/IR measurement results.

The demo application is composed of two sections :

Application Init

Initialization of I2C module and log UART. After the driver init, the app executes a default configuration.

void application_init ( void )
{
log_cfg_t log_cfg;
color12_cfg_t color12_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
// Click initialization.
color12_cfg_setup( &color12_cfg );
COLOR12_MAP_MIKROBUS( color12_cfg, MIKROBUS_1 );
if ( I2C_MASTER_ERROR == color12_init( &color12, &color12_cfg ) )
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
if ( COLOR12_ERROR == color12_default_cfg ( &color12 ) )
{
log_error( &logger, " Default configuration." );
for ( ; ; );
}
log_info( &logger, " Application Task " );
log_printf( &logger, " ---------------------- \r\n" );
Delay_ms( 100 );
}

Application Task

This example demonstrates the use of the Color 12 Click boardâ„¢. Reads and displays the results of the RGB/IR measurements. Results are being sent to the UART Terminal, where you can track their changes.

void application_task ( void )
{
if ( COLOR12_OK == color12_get_color_data( &color12, COLOR12_DATA_RED, &color_data ) )
{
log_printf( &logger, " Red : %u\r\n", color_data );
}
if ( COLOR12_OK == color12_get_color_data( &color12, COLOR12_DATA_GREEN, &color_data ) )
{
log_printf( &logger, " Green : %u\r\n", color_data );
}
if ( COLOR12_OK == color12_get_color_data( &color12, COLOR12_DATA_BLUE, &color_data ) )
{
log_printf( &logger, " Blue : %u\r\n", color_data );
}
if ( COLOR12_OK == color12_get_color_data( &color12, COLOR12_DATA_IR, &color_data ) )
{
log_printf( &logger, " IR : %u\r\n", color_data );
}
log_printf( &logger, " ---------------------- \r\n" );
Delay_ms( 1000 );
}

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.Color12

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.


color12_color_sel_t
color12_color_sel_t
Color 12 Click color selection value data.
Definition: color12.h:242
color12_t
Color 12 Click context object.
Definition: color12.h:198
COLOR12_ERROR
@ COLOR12_ERROR
Definition: color12.h:233
color4_get_config
err_t color4_get_config(color12_t *ctx, color12_config_t *config)
Color 12 gets the configuration function.
application_task
void application_task(void)
Definition: main.c:71
COLOR12_DATA_BLUE
@ COLOR12_DATA_BLUE
Definition: color12.h:245
color12_cfg_setup
void color12_cfg_setup(color12_cfg_t *cfg)
Color 12 configuration object setup function.
COLOR12_DATA_RED
@ COLOR12_DATA_RED
Definition: color12.h:243
color12_default_cfg
err_t color12_default_cfg(color12_t *ctx)
Color 12 default configuration function.
color12_init
err_t color12_init(color12_t *ctx, color12_cfg_t *cfg)
Color 12 initialization function.
color12_set_config
err_t color12_set_config(color12_t *ctx, color12_config_t config)
Color 12 sets the configuration function.
COLOR12_DATA_GREEN
@ COLOR12_DATA_GREEN
Definition: color12.h:244
COLOR12_MAP_MIKROBUS
#define COLOR12_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition: color12.h:185
application_init
void application_init(void)
Definition: main.c:33
color12_get_color_data
err_t color12_get_color_data(color12_t *ctx, color12_color_sel_t color_sel, uint16_t *color_data)
Color 12 gets the color measurement result function.
COLOR12_OK
@ COLOR12_OK
Definition: color12.h:232
color12_config_t
Color 12 Click sensor configuration object.
Definition: color12.h:255
color12_cfg_t
Color 12 Click configuration object.
Definition: color12.h:215
COLOR12_DATA_IR
@ COLOR12_DATA_IR
Definition: color12.h:246