TOP Contributors

  1. MIKROE (2659 codes)
  2. Alcides Ramos (356 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (112 codes)
  5. Chisanga Mumba (90 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 (136955 times)
  2. FAT32 Library (70079 times)
  3. Network Ethernet Library (56015 times)
  4. USB Device Library (46338 times)
  5. Network WiFi Library (41958 times)
  6. FT800 Library (41266 times)
  7. GSM click (29051 times)
  8. mikroSDK (26480 times)
  9. PID Library (26447 times)
  10. microSD click (25411 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

HVAC click

Rating:

5

Author: MIKROE

Last Updated: 2021-07-05

Package Version: 1.0.0.0

mikroSDK Library: 1.0.0.0

Category: Environmental

Downloaded: 1306 times

Not followed.

License: MIT license  

HVAC Click is a compact add-on board that contains Sensirion’s next-generation miniature CO2 sensor. This board features the SCD41, a carbon dioxide sensor build on the photoacoustic sensing principle, and Sensirion’s patented PASens® and CMOSens® technology to offer high accuracy at a minor form factor. On-chip signal compensation is realized with the build-in humidity and temperature sensor. It operates within a specified range from 400 to 5’000 ppm, configurable through the I2C interface with a single shot mode supported. This Click board™ is also suitable for indoor air quality applications using an additional SPS30 that allows smart ventilation systems to regulate ventilation in the most energy-efficient and human-friendly way, maintaining low CO2 concentration for a healthy, productive environment.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "HVAC click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "HVAC click" changes.

Do you want to report abuse regarding "HVAC click".

  • mikroSDK Library 2.0.0.0
  • Comments (0)
DOWNLOAD LINK RELATED COMPILER CONTAINS
mikroBasic PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc

mikroSDK Library Blog

HVAC click

HVAC click

Native view of the HVAC click board.

View full image
HVAC click

HVAC click

Front and back view of the HVAC click board.

View full image

Library Description

The library covers all the necessary functions to control the HVAC Click board.
A library performs the communication with the SCD40 Sensor via the I2C interface
and with the SPS30 via the I2C or UART interface.

Key functions:

  • void hvac_scd40_read_measurement ( measuremen_data_t *m_data ) - SCD40 read measurement function.
  • void hvac_sps30_start_measurement ( void ) -
    SPS30 starts the measurement command function.
  • void hvac_sps30_read_measured_data ( mass_and_num_cnt_data_t *m_n_c_data ) -
    TSPS30 read measured data function.

Examples description

The application is composed of three sections :

  • System Initialization - Initializes I2C or UART and start to write log.
  • Application Initialization - Initialization driver enables - I2C or UART,
     SCD40: perform factory reset, serial number, features, product type
     platform type, product version and
     SPS30: perform start measurement mode, also write log.
  • Application Task - (code snippet) This is an example which demonstrates the use of HVAC Click board.
     HVAC Click board can be used to measure :
     Concentration of CO2 in air,
     Temperature ( degree Celsius ),
     Relative Humidity ( % ),
     Mass Concentration of PM1.0, PM2.5, PM4.0, PM10 and
     Number Concentration of PM0.5, PM1.0, PM2.5, PM4.0 and PM10.
     All data logs write on USB uart changes.
void application_task ( )
{
    if ( select_communication == I2C_COMMUNICATION )
    {
        hvac_scd40_send_cmd( HVAC_MEASURE_SINGLE_SHOT );
        Delay_ms( 5000 );

        hvac_scd40_read_measurement( &hvac_data );
        Delay_ms( 100 );

        WordToStr( hvac_data.co2_concent, log_text );
        mikrobus_logWrite( " CO2 Concent = ", _LOG_TEXT );
        mikrobus_logWrite( log_text, _LOG_LINE );

        FloatToStr( hvac_data.temperature, log_text );
        mikrobus_logWrite( " Temperature = ", _LOG_TEXT );
        mikrobus_logWrite( log_text, _LOG_TEXT );
        mikrobus_logWrite( " C", _LOG_LINE );

        FloatToStr( hvac_data.r_humidity, log_text );
        mikrobus_logWrite( " R. Humidity = ", _LOG_TEXT );
        mikrobus_logWrite( log_text, _LOG_TEXT );
        mikrobus_logWrite( " %", _LOG_LINE );
        mikrobus_logWrite( "- - - - - - - - - - - - - ", _LOG_LINE );

        while ( hvac_sps30_get_ready_flag( ) != HVAC_SPS30_NEW_DATA_IS_READY );
    }
    mikrobus_logWrite( "   Mass Concentration :   ", _LOG_LINE );
    hvac_sps30_read_measured_data( &sps30_data );
    Delay_ms( 100 );

    FloatToStr( sps30_data.mass_pm_1_0, log_text );
    mikrobus_logWrite( " PM 1.0 = ", _LOG_TEXT );
    mikrobus_logWrite( log_text, _LOG_TEXT );
    mikrobus_logWrite( " ug/m3", _LOG_LINE );

    FloatToStr( sps30_data.mass_pm_2_5, log_text );
    mikrobus_logWrite( " PM 2.5 = ", _LOG_TEXT );
    mikrobus_logWrite( log_text, _LOG_TEXT );
    mikrobus_logWrite( " ug/m3", _LOG_LINE );

    FloatToStr( sps30_data.mass_pm_4_0, log_text );
    mikrobus_logWrite( " PM 4.0 = ", _LOG_TEXT );
    mikrobus_logWrite( log_text, _LOG_TEXT );
    mikrobus_logWrite( " ug/m3", _LOG_LINE );

    FloatToStr( sps30_data.mass_pm_10, log_text );
    mikrobus_logWrite( " PM 10  = ", _LOG_TEXT );
    mikrobus_logWrite( log_text, _LOG_TEXT );
    mikrobus_logWrite( " ug/m3", _LOG_LINE );
    mikrobus_logWrite( "-   -   -   -   -   -   - ", _LOG_LINE );

    mikrobus_logWrite( "  Number Concentration :  ", _LOG_LINE );
    FloatToStr( sps30_data.num_pm_0_5, log_text );
    mikrobus_logWrite( " PM 0.5 = ", _LOG_TEXT );
    mikrobus_logWrite( log_text, _LOG_TEXT );
    mikrobus_logWrite( " n/cm3", _LOG_LINE );

    FloatToStr( sps30_data.num_pm_1_0, log_text );
    mikrobus_logWrite( " PM 1.0 = ", _LOG_TEXT );
    mikrobus_logWrite( log_text, _LOG_TEXT );
    mikrobus_logWrite( " n/cm3", _LOG_LINE );

    FloatToStr( sps30_data.num_pm_2_5, log_text );
    mikrobus_logWrite( " PM 2.5 = ", _LOG_TEXT );
    mikrobus_logWrite( log_text, _LOG_TEXT );
    mikrobus_logWrite( " n/cm3", _LOG_LINE );

    FloatToStr( sps30_data.num_pm_4_0, log_text );
    mikrobus_logWrite( " PM 4.0 = ", _LOG_TEXT );
    mikrobus_logWrite( log_text, _LOG_TEXT );
    mikrobus_logWrite( " n/cm3", _LOG_LINE );

    FloatToStr( sps30_data.num_pm_10, log_text );
    mikrobus_logWrite( " PM 10  = ", _LOG_TEXT );
    mikrobus_logWrite( log_text, _LOG_TEXT );
    mikrobus_logWrite( " n/cm3", _LOG_LINE );
    mikrobus_logWrite( "--------------------------", _LOG_LINE );
    Delay_ms( 2000 );
}
}

Other mikroE Libraries used in the example:

  • I2C
  • UART
  • Conversions

Additional notes and informations

Depending on the development board you are using, you may need USB UART clickUSB 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.

ALSO FROM THIS AUTHOR

Relay click

0

Relay click is a dual relay Click board, which can be operated by the host MCU. This Click board offers an elegant and easy solution for controlling a wide range of high power applications.

[Learn More]

Wirepas click

0

Wirepas Click is a compact add-on board that allows you to implement the Wirepas Mesh wireless connectivity stack to your application. This board features the WIRL-PRO2 Thetis-I (2.1.0.1121010), a radio module with Wirepas Mesh Protocol from Würth Elektronik. It supports creating a Wirepas routing mesh protocol and is optimized for ultra-low energy consumption. The large scalability is ideal for extensive IoT networks and can work as a host-controlled device.

[Learn More]

Thermo 13 click

5

Thermo 13 Click is a Click board equipped with the sensor IC, which can digitize temperature measurements between -30°C and +95°C so that the temperature measurement data can be processed by the host MCU.

[Learn More]