surfacetemp2 2.0.0.0
Main Page

Surface Temp 2 click

Surface temp 2 Click is a compact add-on board that contains a high accuracy temperature sensor offering breakthrough performance over a wide industrial temperature range.

click Product page


Click library

  • Author : MikroE Team
  • Date : Sep 2020.
  • Type : I2C type

Software Support

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

Standard key functions :

  • Get Temperature function

    ‍float surfacetemp2_get_temperature ( surfacetemp2_t *ctx );

    - Set Critical Temperature Threshold function

    ‍void surfacetemp2_set_crit_trsh ( surfacetemp2_t *ctx, float trsh );

  • Get CT pin state function

    ‍uint8_t surfacetemp2_get_ct_pin ( surfacetemp2_t *ctx );

    Examples Description

‍This example demonstrates the use of Surface Temp 2 Click.

The demo application is composed of two sections :

Application Init

‍Initalizes the driver and configures the click board.

void application_init ( void )
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init( &logger, &log_cfg );
log_info( &logger, "---- Application Init ----" );
// Click initialization.
SURFACETEMP2_MAP_MIKROBUS( cfg, MIKROBUS_1 );
surfacetemp2_init( &surfacetemp2, &cfg );
surfacetemp2_setup ( &surfacetemp2, setup_val );
surfacetemp2_set_high_trsh( &surfacetemp2, 40.00 );
surfacetemp2_set_low_trsh( &surfacetemp2, 10.00 );
surfacetemp2_set_crit_trsh( &surfacetemp2, 70.00 );
surfacetemp2_set_hys_val( &surfacetemp2, 5 );
log_info( &logger, "---- Application Task ----" );
Delay_ms ( 1000 );
}
#define SURFACETEMP2_CFG_CT_MODE
Definition surfacetemp2.h:135
#define SURFACETEMP2_CFG_RES_16
Definition surfacetemp2.h:141
#define SURFACETEMP2_CFG_FLT_Q_4
Definition surfacetemp2.h:129
#define SURFACETEMP2_MAP_MIKROBUS(cfg, mikrobus)
Definition surfacetemp2.h:66
void surfacetemp2_cfg_setup(surfacetemp2_cfg_t *cfg)
Config Object Initialization function.
uint8_t surfacetemp2_setup(surfacetemp2_t *ctx, uint8_t setup)
Setup function.
void surfacetemp2_set_hys_val(surfacetemp2_t *ctx, uint8_t hys_val)
Set Hysteresis function.
void surfacetemp2_set_high_trsh(surfacetemp2_t *ctx, float trsh)
Set Over Temperature Threshold function.
void surfacetemp2_set_low_trsh(surfacetemp2_t *ctx, float trsh)
Set Under Temperature Threshold function.
SURFACETEMP2_RETVAL surfacetemp2_init(surfacetemp2_t *ctx, surfacetemp2_cfg_t *cfg)
Initialization function.
void surfacetemp2_set_crit_trsh(surfacetemp2_t *ctx, float trsh)
Set Critical Temperature Threshold function.
void application_init(void)
Definition main.c:35
uint8_t setup_val
Definition main.c:30
Click configuration structure definition.
Definition surfacetemp2.h:198

Application Task

‍Reads the temperature in Celsius and displays the value on the USB UART each second.

void application_task ( void )
{
log_printf( &logger, " Temperature : %.2f C \r\n", temperature );
Delay_ms ( 1000 );
}
float surfacetemp2_get_temperature(surfacetemp2_t *ctx)
Get Temperature function.
void application_task(void)
Definition main.c:69
float temperature
Definition main.c:31

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

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.