spectral3  2.0.0.0
Main Page

Spectral 3 click

Spectral 3 click is a multispectral sensing device, which uses the state-of-the-art sensor IC for a very accurate near-IR (NIR) sensing.

click Product page


Click library

  • Author : MikroE Team
  • Date : Apr 2020.
  • Type : UART GPS/GNSS type

Software Support

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

Standard key functions :

Example key functions :

  • Reset module.

    void spectral3_module_reset ( spectral3_t *ctx );

  • Send command.

    void spectral3_send_command ( spectral3_t *ctx, char *command );

  • Read raw X, Y, Z and NIR data as well as two special internal registers D, & C.

    void spectral3_get_data ( char *rsp, uint16_t *c_data );

Examples Description

This example reads and processes data from Spectral 3 clicks.

The demo application is composed of two sections :

Application Init

Initializes the driver and configures the sensor.

void application_init ( void )
{
log_cfg_t log_cfg;
// Logger initialization.
LOG_MAP_USB_UART( log_cfg );
log_cfg.level = LOG_LEVEL_DEBUG;
log_cfg.baud = 115200;
log_init( &logger, &log_cfg );
log_info( &logger, "---- Application Init ----" );
// Click initialization.
SPECTRAL3_MAP_MIKROBUS( cfg, MIKROBUS_1 );
spectral3_init( &spectral3, &cfg );
spectral3_module_reset( &spectral3 );
Delay_ms( 500 );
log_printf( &logger, "Configuring the sensor...\r\n" );
spectral3_process( );
spectral3_process( );
spectral3_process( );
log_printf( &logger, "The sensor has been configured!\r\n" );
Delay_ms( 1000 );
}

Application Task

Reads the values of all 6 channels and parses it to the USB UART each second.

void application_task ( void )
{
parser_application( );
}

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

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.


SPECTRAL3_CMD_MODE
#define SPECTRAL3_CMD_MODE
Definition: main.c:36
spectral3_cfg_setup
void spectral3_cfg_setup(spectral3_cfg_t *cfg)
Config Object Initialization function.
application_task
void application_task(void)
Definition: main.c:147
SPECTRAL3_MAP_MIKROBUS
#define SPECTRAL3_MAP_MIKROBUS(cfg, mikrobus)
Definition: spectral3.h:52
spectral3_module_reset
void spectral3_module_reset(spectral3_t *ctx)
Reset module.
application_init
void application_init(void)
Definition: main.c:114
spectral3_cfg_t
Click configuration structure definition.
Definition: spectral3.h:108
spectral3_send_command
void spectral3_send_command(spectral3_t *ctx, char *command)
Send command.
spectral3_init
SPECTRAL3_RETVAL spectral3_init(spectral3_t *ctx, spectral3_cfg_t *cfg)
Initialization function.
SPECTRAL3_CMD_AT
#define SPECTRAL3_CMD_AT
Definition: main.c:34
SPECTRAL3_CMD_GAIN
#define SPECTRAL3_CMD_GAIN
Definition: main.c:35