TOP Contributors

  1. MIKROE (2784 codes)
  2. Alcides Ramos (405 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (133 codes)
  5. Bugz Bensce (97 codes)
  6. S P (73 codes)
  7. dany (71 codes)
  8. MikroBUS.NET Team (35 codes)
  9. NART SCHINACKOW (34 codes)
  10. Armstrong Subero (27 codes)

Most Downloaded

  1. Timer Calculator (141846 times)
  2. FAT32 Library (74967 times)
  3. Network Ethernet Library (59330 times)
  4. USB Device Library (49322 times)
  5. Network WiFi Library (45134 times)
  6. FT800 Library (44678 times)
  7. GSM click (31293 times)
  8. mikroSDK (30242 times)
  9. microSD click (27670 times)
  10. PID Library (27568 times)
Libstock prefers package manager

Package Manager

We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]

< Back
mikroSDK Library

TempHum 18 Click

Rating:

0

Author: MIKROE

Last Updated: 2024-10-31

Package Version: 2.1.0.11

mikroSDK Library: 2.0.0.0

Category: Temperature & humidity

Downloaded: 318 times

Not followed.

License: MIT license  

Temp&Hum 18 Click is a compact add-on board that represents temperature and humidity sensing solutions. This board features the HS3003, a highly accurate, fully calibrated relative humidity and temperature sensor from Renesas. It features proprietary sensor-level protection, ensuring high reliability and long-term stability. Integrated calibration and temperature-compensation logic provides fully corrected RH and temperature values via standard I2C output. No user calibration of the output data is required. The high accuracy, fast measurement response time, and long-term stability make this Click board™ ideal for various temperature and humidity-related applications and a vast number of applications ranging from portable devices to products designed for harsh environments.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "TempHum 18 Click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "TempHum 18 Click" changes.

Do you want to report abuse regarding "TempHum 18 Click".

  • Information
  • Comments (0)

mikroSDK Library Blog


Temp&Hum 18 Click

Temp&Hum 18 Click is a compact add-on board that represents temperature and humidity sensing solutions. This board features the HS3003, a highly accurate, fully calibrated relative humidity and temperature sensor from Renesas. It features proprietary sensor-level protection, ensuring high reliability and long-term stability. Integrated calibration and temperature-compensation logic provides fully corrected RH and temperature values via standard I2C output. No user calibration of the output data is required. The high accuracy, fast measurement response time, and long-term stability make this Click board™ ideal for various temperature and humidity-related applications and a vast number of applications ranging from portable devices to products designed for harsh environments.

temphum18_click.png

Click Product page


Click library

  • Author : Nenad Filipovic
  • Date : Oct 2021.
  • Type : I2C type

Software Support

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

Standard key functions :

  • temphum18_cfg_setup Config Object Initialization function.

    void temphum18_cfg_setup ( temphum18_cfg_t *cfg );
  • temphum18_init Initialization function.

    err_t temphum18_init ( temphum18_t *ctx, temphum18_cfg_t *cfg );
  • temphum18_default_cfg Click Default Configuration function.

    err_t temphum18_default_cfg ( temphum18_t *ctx );

Example key functions :

  • temphum18_get_temp_hum Temp&Hum 18 get temperature and humidity function.

    err_t temphum18_get_temp_hum ( temphum18_t *ctx, uint8_t resolution, float *temperature, float *humidity );
  • temphum18_wake_up Temp&Hum 18 wake up function.

    err_t temphum18_wake_up ( temphum18_t *ctx );
  • temphum18_get_raw_data Temp&Hum 18 get raw data function.

    err_t temphum18_get_raw_data ( temphum18_t *ctx, uint8_t resolution, int16_t *temp, uint16_t *hum, uint8_t *status );

Example Description

This library contains API for the Temp&Hum 18 Click driver. This demo application shows an example of relative humidity and temperature measurement.

The demo application is composed of two sections :

Application Init

Initialization of I2C module and log UART. After driver initialization and default settings, the app display retrieves the sensor parameters such as temperature and relative humidity.


void application_init ( void ) 
{
    log_cfg_t log_cfg;  /**< Logger config object. */
    temphum18_cfg_t temphum18_cfg;  /**< Click config object. */

    /** 
     * Logger initialization.
     * Default baud rate: 115200
     * Default log level: LOG_LEVEL_DEBUG
     * @note If USB_UART_RX and USB_UART_TX 
     * are defined as HAL_PIN_NC, you will 
     * need to define them manually for log to work. 
     * See @b LOG_MAP_USB_UART macro definition for detailed explanation.
     */
    LOG_MAP_USB_UART( log_cfg );
    log_init( &logger, &log_cfg );
    log_info( &logger, " Application Init " );

    // Click initialization.
    temphum18_cfg_setup( &temphum18_cfg );
    TEMPHUM18_MAP_MIKROBUS( temphum18_cfg, MIKROBUS_1 );
    if ( I2C_MASTER_ERROR == temphum18_init( &temphum18, &temphum18_cfg ) ) 
    {
        log_error( &logger, " Communication init." );
        for ( ; ; );
    }

    if ( TEMPHUM18_ERROR == temphum18_default_cfg ( &temphum18 ) )
    {
        log_error( &logger, " Default configuration." );
        for ( ; ; );
    }

    log_info( &logger, " Application Task " );
    log_printf( &logger, "-------------------------\r\n" );
    Delay_ms ( 100 );
}

Application Task

This is an example that shows the use of a Temp&Hum 18 Click board™. Logs the temperature [ degree Celsius ] and relative humidity [ % ] data. Results are being sent to the Usart Terminal where you can track their changes.


void application_task ( void ) 
{
    static float temperature;
    static float humidity;

    if ( temphum18_get_temp_hum( &temphum18, TEMPHUM18_RESOLUTION_14_BITS, &temperature, &humidity ) == TEMPHUM18_STATUS_VALID_DATA ) 
    {
        log_printf( &logger, "  Temperature : %.02f C\r\n  Humidity    : %.02f %%\r\n", temperature, humidity );
    } 
    else 
    {
        log_printf( &logger, "     Measurement Error\r\n\tStale Data\r\n" );    
    }

    log_printf( &logger, "-------------------------\r\n" );
    Delay_ms ( 1000 );
}

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

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.


ALSO FROM THIS AUTHOR

RS232 Isolator 2 Click

0

RS232 Isolator 2 Click is a compact add-on board that contains a fully isolated transceiver used to provide secure and easy UART to RS232 conversion. This board features the ICL3221, a 3.3V powered RS232 transmitter/receiver that provides ±15kV ESD protection on its RS232 pins from Renesas. This Click board™ is characterized by an assured minimum data rate of 250kbps. It features an automatic power-down function and uses high-speed digital optocouplers to isolate the RS232 interface for 3.75kV isolation. It also possesses an LED indicator that indicates a valid RS232 signal at any of the receiver inputs. This Click board™ is suitable for isolation of RS232 signals, portable equipment, and where the low operational power consumption and even lower standby power consumption are critical.

[Learn More]

WiFly click - Example

5

WiFly click is the simplest way to add WiFi to your devices. This click features the well-known RN131 802.11 b/g Wi-Fi module from Microchip. The click communicates with the MCU over UART and runs on a 3.3V power supply. It has an onboard ceramic chip antenna and a connector for an external antenna.

[Learn More]

Angle 2 Click

0

The MA700 sensor IC features quadrature encoded outputs so that it can directly replace similar mechanical devices. The advantages of a contactless quadrature encoder are many, therefore Angular 2 Click is equipped with a three-pin header, offering an easy access to these outputs.

[Learn More]