TOP Contributors

  1. MIKROE (2780 codes)
  2. Alcides Ramos (376 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (118 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 (139574 times)
  2. FAT32 Library (72042 times)
  3. Network Ethernet Library (57259 times)
  4. USB Device Library (47631 times)
  5. Network WiFi Library (43229 times)
  6. FT800 Library (42567 times)
  7. GSM click (29932 times)
  8. mikroSDK (28312 times)
  9. PID Library (26934 times)
  10. microSD click (26309 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

RMS to DC 2 Click

Rating:

0

Author: MIKROE

Last Updated: 2024-10-31

Package Version: 2.1.0.6

mikroSDK Library: 2.0.0.0

Category: Measurements

Downloaded: 96 times

Not followed.

License: MIT license  

RMS to DC 2 Click is a compact add-on board that converts the RMS of the input signal into a DC voltage. This board features the AD8436, a low-cost, low-power, true RMS-to-DC converter from Analog Devices. The AD8436 is a translinear precision, low-power, true RMS-to-DC converter that delivers true RMS or average rectified value of AC waveform. It features high accuracy, a wide dynamic input range (100μV rms to 3V rms), a wide bandwidth of up to 1MHz, and more. This Click board™ makes the perfect solution for the development of various true RMS digital multimeter applications, panel meters and gauges, AC + DC measurement applications, a true RMS measurement of an audio signal, and other similar applications that require accurate RMS value readings.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "RMS to DC 2 Click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "RMS to DC 2 Click" changes.

Do you want to report abuse regarding "RMS to DC 2 Click".

  • Information
  • Comments (0)

mikroSDK Library Blog


RMS to DC 2 Click

RMS to DC 2 Click is a compact add-on board that converts the RMS of the input signal into a DC voltage. This board features the AD8436, a low-cost, low-power, true RMS-to-DC converter from Analog Devices. The AD8436 is a translinear precision, low-power, true RMS-to-DC converter that delivers true RMS or average rectified value of AC waveform. It features high accuracy, a wide dynamic input range (100μV rms to 3V rms), a wide bandwidth of up to 1MHz, and more. This Click board™ makes the perfect solution for the development of various true RMS digital multimeter applications, panel meters and gauges, AC + DC measurement applications, a true RMS measurement of an audio signal, and other similar applications that require accurate RMS value readings.

rmstodc2_click.png

Click Product page


Click library

  • Author : Stefan Filipovic
  • Date : Apr 2023.
  • Type : ADC/I2C type

Software Support

We provide a library for the RMS to DC 2 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 RMS to DC 2 Click driver.

Standard key functions :

  • rmstodc2_cfg_setup Config Object Initialization function.

    void rmstodc2_cfg_setup ( rmstodc2_cfg_t *cfg );
  • rmstodc2_init Initialization function.

    err_t rmstodc2_init ( rmstodc2_t *ctx, rmstodc2_cfg_t *cfg );

Example key functions :

  • rmstodc2_set_vref This function sets the voltage reference for RMS to DC 2 Click driver.

    err_t rmstodc2_set_vref ( rmstodc2_t *ctx, float vref );
  • rmstodc2_read_voltage This function reads raw ADC value and converts it to proportional voltage level.

    err_t rmstodc2_read_voltage ( rmstodc2_t *ctx, float *voltage );

Example Description

This example demonstrates the use of the RMS to DC 2 Click board by measuring the RMS voltage of the input signal.

The demo application is composed of two sections :

Application Init

Initializes the driver and logger.


void application_init ( void )
{
    log_cfg_t log_cfg;  /**< Logger config object. */
    rmstodc2_cfg_t rmstodc2_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.
    rmstodc2_cfg_setup( &rmstodc2_cfg );
    RMSTODC2_MAP_MIKROBUS( rmstodc2_cfg, MIKROBUS_1 );
    err_t init_flag = rmstodc2_init( &rmstodc2, &rmstodc2_cfg );
    if ( ( ADC_ERROR == init_flag ) || ( I2C_MASTER_ERROR == init_flag ) )
    {
        log_error( &logger, " Communication init." );
        for ( ; ; );
    }

    log_info( &logger, " Application Task " );
}

Application Task

Reads the RMS voltage of the input signal and displays the results on the USB UART approximately once per second.


void application_task ( void )
{
    float voltage = 0;
    if ( RMSTODC2_OK == rmstodc2_read_voltage ( &rmstodc2, &voltage ) ) 
    {
        log_printf( &logger, " RMS voltage : %.3f[V]\r\n\n", voltage * RMSTODC2_RMS_VOLTAGE_COEF );
        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.RMStoDC2

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

Charger 19 Click

0

Charger 19 Click is a compact add-on board that contains a battery charger. This board features the nPM1100, an integrated power management IC from Nordic Semiconductor. It has a highly efficient DC/DC buck regulator with automatic selection between hysteretic and PWM modes.

[Learn More]

Fever Click

0

Fever Click features a specially designed sensor, which is capable of accurate measurement of human body temperature.

[Learn More]

LTE Cat.4 Click

0

LTE Cat.4 Click (for Europe) is a compact add-on board made specially for 4G M2M and IoT applications in Europe. This board features the EG95EXGA-128-SGNS, an IoT/M2M-optimized LTE Cat.4 module that meets the 3GPP Release 11 standard from Quectel. It supports multiple wireless standards, including LTE-FDD, WCDMA, and GSM, ensuring broad network compatibility. Key features include multi-band LTE support (B1/B3/B7/B8/B20/B28), RX diversity for bands B1 and B8, and multi-constellation GNSS (GPS, GLONASS, BeiDou/Compass, Galileo, QZSS). It also integrates a 16-bit mono audio codec for voice functionality with support for CTIA standard headphones. Additionally, it offers a USB Type C connector for power and data transfer, AT command communication, and firmware upgrades.

[Learn More]