IR Sense 4 click
IR Sense 4 Click is a compact add-on board that can be used in short-range IR sensing applications. This board features the STHS34PF80, a low-power high-sensitivity infrared (IR) sensor from STMicroelectronics. It is a sensor for presence and motion detection and can reach up to 4m without a lens for object measuring. The sensor can detect stationary objects and distinguish them from moving objects.
click Product page
Click library
- Author : Nenad Filipovic
- Date : Jun 2023.
- Type : I2C/SPI type
Software Support
We provide a library for the IR Sense 4 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 IR Sense 4 Click driver.
Standard key functions :
irsense4_cfg_setup
Config Object Initialization function.
void irsense4_cfg_setup(irsense4_cfg_t *cfg)
IR Sense 4 configuration object setup function.
IR Sense 4 Click configuration object.
Definition irsense4.h:400
irsense4_init
Initialization function.
err_t irsense4_init(irsense4_t *ctx, irsense4_cfg_t *cfg)
IR Sense 4 initialization function.
IR Sense 4 Click context object.
Definition irsense4.h:380
irsense4_default_cfg
Click Default Configuration function.
err_t irsense4_default_cfg(irsense4_t *ctx)
IR Sense 4 default configuration function.
Example key functions :
irsense4_get_presence_data
IR Sense 4 get the presence detection data function.
err_t irsense4_get_presence_data(irsense4_t *ctx, int16_t *presence)
IR Sense 4 get the presence detection data function.
irsense4_get_motion_data
IR Sense 4 get the motion detection data function.
err_t irsense4_get_motion_data(irsense4_t *ctx, int16_t *motion)
IR Sense 4 get the motion detection data function.
irsense4_get_amb_temperature
IR Sense 4 get the ambient temperature function.
err_t irsense4_get_amb_temperature(irsense4_t *ctx, float *temperature)
IR Sense 4 get the ambient temperature function.
Example Description
This example demonstrates the use of theIR Sense 4 Click boardâ„¢, by showing parameters for detection of the presence and motion as well as ambient temperature.
The demo application is composed of two sections :
Application Init
The initialization of I2C or SPI module and log UART. After driver initialization, the app sets the default configuration.
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, " Application Init " );
if ( ( I2C_MASTER_ERROR == init_flag ) || ( SPI_MASTER_ERROR == init_flag ) )
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
{
log_error( &logger, " Default configuration." );
for ( ; ; );
}
log_info( &logger, " Application Task " );
log_printf( &logger, " ------------------------\r\n" );
}
#define IRSENSE4_MAP_MIKROBUS(cfg, mikrobus)
MikroBUS pin mapping.
Definition irsense4.h:346
@ IRSENSE4_ERROR
Definition irsense4.h:427
void application_init(void)
Definition main.c:31
Application Task
The application checks for the human presence and motion detection and display output data, using embedded algorithms, and ambient temperature in degrees Celsius. Results are being sent to the UART Terminal, where you can track their changes.
{
static float temperature = 0.0;
static int16_t detection_data = 0;
static uint8_t status = 0;
{
{
{
log_printf( &logger, " Presence: %d \r\n", detection_data );
}
{
log_printf( &logger, " Motion: %d \r\n", detection_data );
}
{
log_printf( &logger, " Temperature: %.2f C\r\n", temperature );
}
log_printf( &logger, " ------------------------\r\n" );
Delay_ms ( 100 );
}
}
}
#define IRSENSE4_STATUS_MOT_FLAG
Definition irsense4.h:277
#define IRSENSE4_STATUS_PRES_FLAG
Definition irsense4.h:278
#define IRSENSE4_STATUS_DETECT_FLAG
Definition irsense4.h:279
err_t irsense4_get_status(irsense4_t *ctx, uint8_t *status)
IR Sense 4 get status function.
err_t irsense4_wait_new_data_ready(irsense4_t *ctx)
IR Sense 4 wait new data ready function.
@ IRSENSE4_OK
Definition irsense4.h:426
void application_task(void)
Definition main.c:69
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.IRSense4
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.