uv 2.0.0.0
Main Page

UV click

‍Design devices that warn you of excesive ultraviolet radiation levels with UV click. This click boards carries the ML8511 IC that is sensitive to UV-A (365-315 nm) and UV-B (315-280 nm) rays.

click Product page


Click library

  • Author : MikroE Team
  • Date : Dec 2019.
  • Type : SPI type

Software Support

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

Standard key functions :

  • uv_cfg_setup Config Object Initialization function.
    void uv_cfg_setup ( uv_cfg_t *cfg );
    void uv_cfg_setup(uv_cfg_t *cfg)
    Config Object Initialization function.
    Click configuration structure definition.
    Definition uv.h:110
  • uv_init Initialization function.
    err_t uv_init ( uv_t *ctx, uv_cfg_t *cfg );
    err_t uv_init(uv_t *ctx, uv_cfg_t *cfg)
    Initialization function.
    Click context object definition.
    Definition uv.h:90

Example key functions :

  • uv_read_adc_voltage ADC Voltage Reading function.
    err_t uv_read_adc_voltage ( uv_t *ctx, float *data_out );
    err_t uv_read_adc_voltage(uv_t *ctx, float *data_out)
    ADC Voltage Reading function.
  • uv_calc_index UV Index Calculation function.
    void uv_calc_index ( uv_t *ctx, float data_in, uint8_t *data_out );
    void uv_calc_index(uv_t *ctx, float data_in, uint8_t *data_out)
    UV Index Calculation function.

Examples Description

‍This is a example which demonstrates the use of UV Click board.

The demo application is composed of two sections :

Application Init

‍Configuration of the click and log objects.

void application_init ( void )
{
log_cfg_t log_cfg;
uv_cfg_t cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, "---- Application Init ----" );
// Click initialization.
uv_cfg_setup( &cfg );
UV_MAP_MIKROBUS( cfg, MIKROBUS_1 );
if ( SPI_MASTER_ERROR == uv_init( &uv, &cfg ) )
{
log_info( &logger, "---- Application Init Error ----" );
log_info( &logger, "---- Please, run program again ----" );
for ( ; ; );
}
Delay_ms ( 1000 );
uv_voltage = 0;
uv_index = 0;
log_info( &logger, "---- Application Init Done ----\r\n" );
}
#define UV_MAP_MIKROBUS(cfg, mikrobus)
Definition uv.h:65
void uv_device_enable(uv_t *ctx)
Device Power ON function.
void uv_set_callback_handler(uv_t *ctx, uv_callback_t handler)
Callback Handler Setting function.
void application_init(void)
Definition main.c:44
void application_callback(uint8_t *message)
Definition main.c:37

Application Task

‍Reads the result of AD conversion once per second and calculates the UV index based on that. Results are being sent to the USB UART where you can track their changes.

void application_task ( void )
{
if ( SPI_MASTER_ERROR != uv_read_adc_voltage( &uv, &uv_voltage ) )
{
uv_calc_index( &uv, uv_voltage, &uv_index );
log_printf( &logger, " UV Index [0-15] : %u\r\n", ( uint16_t ) uv_index );
log_printf( &logger, " UV ADC Voltage [V] : %.2f\r\n", uv_voltage );
log_printf( &logger, "------------------------------\r\n" );
}
Delay_ms ( 1000 );
}
void application_task(void)
Definition main.c:79

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

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.