Color 6 click
Color 6 click is a very accurate color sensing Click board™ which features the AS73211, an XYZ true color sensor from ams.
click Product page
Click library
- Author : MikroE Team
- Date : Nov 2019.
- Type : I2C type
Software Support
We provide a library for the Color6 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 form compilers IDE(recommended way), or downloaded from our LibStock, or found on mikroE github account.
Library Description
This library contains API for Color6 Click driver.
Standard key functions :
- Config Object Initialization function.
void color6_cfg_setup ( color6_cfg_t *cfg );
- Initialization function.
COLOR6_RETVAL color6_init ( color6_t *ctx, color6_cfg_t *cfg );
- Click Default Configuration function.
void color6_default_cfg ( color6_t *ctx );
Example key functions :
- This function write one byte in register.
void color6_write_byte ( color6_t *ctx, uint8_t reg, uint8_t r_data );
- This function reads one byte data from register.
uint8_t color6_read_byte ( color6_t *ctx, uint8_t reg );
- The measurement result is available as TEMP of the output result registers.
float color6_get_temperature ( color6_t *ctx );
Examples Description
Reads values from the X / Y / Z channel and converts to ee (input light irradiance regarding to the photodiode�s area within the conversion time interval) data.
The demo application is composed of two sections :
Application Init
Initializes driver init and configuration chip for measurement.
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, "---- Application Init ----" );
}
#define COLOR6_MAP_MIKROBUS(cfg, mikrobus)
Definition color6.h:67
void color6_software_reset(color6_t *ctx)
Functions for software reset.
void color6_cfg_setup(color6_cfg_t *cfg)
Config Object Initialization function.
void color6_go_to_measurement_mode(color6_t *ctx)
Functions for go to measurement mode.
void color6_default_cfg(color6_t *ctx)
Click Default Configuration function.
COLOR6_RETVAL color6_init(color6_t *ctx, color6_cfg_t *cfg)
Initialization function.
void application_init(void)
Definition main.c:43
Click configuration structure definition.
Definition color6.h:315
Application Task
Reads values from the X / Y / Z channel and converts to ee (input light irradiance regarding to the photodiode�s area within the conversion time interval) data. This data logs on USB UART every 2 seconds.
{
log_printf( &logger,
" Channel X : %d ",
x_data );
log_printf( &logger,
" Ee X channel data: %f ",
ee_data );
log_printf( &logger,
" Channel Y : %d ",
y_data );
log_printf( &logger,
" Ee Y channel data: %f ",
ee_data );
log_printf( &logger,
" Channel Z : %d ",
z_data );
log_printf( &logger,
" Ee Z channel data: %f ",
ee_data );
log_printf( &logger,
" Temperature : %f ",
temperature );
Delay_ms ( 1000 );
Delay_ms ( 1000 );
}
#define COLOR6_MREG_MEASUREMENT_X_CHANNEL
Definition color6.h:198
#define COLOR6_MREG_MEASUREMENT_Y_CHANNEL
Definition color6.h:199
#define COLOR6_MREG_MEASUREMENT_Z_CHANNEL
Definition color6.h:200
float color6_converting_to_ee(color6_t *ctx, uint8_t channel, uint16_t mres_data)
Functions for go to measurement mode.
uint16_t color6_read_data(color6_t *ctx, uint8_t reg)
Functions for read data from register.
void application_task(void)
Definition main.c:72
uint16_t x_data
Definition main.c:35
uint16_t y_data
Definition main.c:36
uint16_t z_data
Definition main.c:37
float ee_data
Definition main.c:38
float temperature
Definition main.c:39
The full application code, and ready to use projects can be installed directly form compilers IDE(recommneded) or found on LibStock page or mikroE GitHub accaunt.
Other mikroE Libraries used in the example:
- MikroSDK.Board
- MikroSDK.Log
- Click.Color6
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. The terminal available in all Mikroelektronika compilers, or any other terminal application of your choice, can be used to read the message.