Precise and accurate current sensing solution
A
A
Hardware Overview
How does it work?
Current 9 Click is based on the CT415-HSN830DR, an XtremeSense® TMR current sensor providing high-accuracy current measurements from Crocus Technology. The CT415-HSN830DR has an integrated current-carrying conductor (CCC) that handles the current from 0A up to 30A. It has high sensitivity and a wide dynamic range with excellent accuracy (low total output error), making it suitable for many consumer, enterprise, and industrial applications. When current flows through the CCC, the XtremeSense® TMR sensors inside the chip sense the field, generating a differential voltage signal that goes through the analog front-end to output a current measurement with less than ±1% full-scale total output error. The CT415-HSN830DR
is designed to enable a fast response time for the current measurement. In addition, the user can select the output voltage level of the sensor performed by the onboard SMD jumper by populating it to an appropriate position marked as 3V3 or 5V. Even with high bandwidth of 1MHz, the CT415-HSN830DR consumes minimal power. The output signal of the CT415-HSN830DR can be converted to a digital value using MCP3221, a successive approximation A/D converter with a 12-bit resolution from Microchip using a 2-wire I2C compatible interface, or can be sent directly to an analog pin of the mikroBUS™ socket labeled as AN. The selection can be made by an onboard SMD jumper labeled ADC SEL, placing it in an
appropriate position marked as EXT and INT. Also, this Click board™ should be connected in series with the load. Two onboard terminal connectors measure the current, one terminal block for the positive and the other for the negative current input. This Click board™ can operate with either 3.3V or 5V logic voltage levels selected via the VCC SEL jumper. This way, both 3.3V and 5V capable MCUs can use the communication lines properly. However, the Click board™ comes equipped with a library containing easy-to-use functions and an example code that can be used, as a reference, for further development.
Features overview
Development board
PIC32MZ Clicker is a compact starter development board that brings the flexibility of add-on Click boards™ to your favorite microcontroller, making it a perfect starter kit for implementing your ideas. It comes with an onboard 32-bit PIC32MZ microcontroller with FPU from Microchip, a USB connector, LED indicators, buttons, a mikroProg connector, and a header for interfacing with external electronics. Thanks to its compact design with clear and easy-recognizable silkscreen markings, it provides a fluid and immersive working experience, allowing access anywhere and under
any circumstances. Each part of the PIC32MZ Clicker development kit contains the components necessary for the most efficient operation of the same board. In addition to the possibility of choosing the PIC32MZ Clicker programming method, using USB HID mikroBootloader, or through an external mikroProg connector for PIC, dsPIC, or PIC32 programmer, the Clicker board also includes a clean and regulated power supply module for the development kit. The USB Micro-B connection can provide up to 500mA of current, which is more than enough to operate all onboard
and additional modules. All communication methods that mikroBUS™ itself supports are on this board, including the well-established mikroBUS™ socket, reset button, and several buttons and LED indicators. PIC32MZ Clicker is an integral part of the Mikroe ecosystem, allowing you to create a new application in minutes. Natively supported by Mikroe software tools, it covers many aspects of prototyping thanks to a considerable number of different Click boards™ (over a thousand boards), the number of which is growing every day.
Microcontroller Overview
MCU Card / MCU
Architecture
PIC32
MCU Memory (KB)
1024
Silicon Vendor
Microchip
Pin count
64
RAM (Bytes)
524288
Used MCU Pins
mikroBUS™ mapper
Take a closer look
Schematic
Step by step
Project assembly
Track your results in real time
Application Output via Debug Mode
1. Once the code example is loaded, pressing the "DEBUG" button initiates the build process, programs it on the created setup, and enters Debug mode.
2. After the programming is completed, a header with buttons for various actions within the IDE becomes visible. Clicking the green "PLAY" button starts reading the results achieved with the Click board™. The achieved results are displayed in the Application Output tab.
Software Support
Library Description
This library contains API for Current 9 Click driver.
Key functions:
current9_read_voltage
This function reads the raw ADC value and converts it to a proportional voltage level.current9_read_current
This function reads the input current level [A] based on @b CURRENT9_NUM_CONVERSIONS of voltage measurements.current9_set_vref
This function sets the voltage reference for the Current 9 Click driver.
Open Source
Code example
This example can be found in NECTO Studio. Feel free to download the code, or you can copy the code below.
/*!
* @file main.c
* @brief Current 9 Click Example.
*
* # Description
* This example demonstrates the use of Current 9 click board by reading and
* displaying the input current measurements.
*
* The demo application is composed of two sections :
*
* ## Application Init
* Initializes the driver and logger.
*
* ## Application Task
* Reads the input current measurements and displays the results on the USB UART
* approximately once per second.
*
* @note
* For better accuracy, set the voltage reference by using the @b current9_set_vref function,
* increase the number of conversions by modifying the @b CURRENT9_NUM_CONVERSIONS macro,
* and adjust the @b CURRENT9_ZERO_CURRENT_OFFSET voltage value.
*
* @author Stefan Filipovic
*
*/
#include "board.h"
#include "log.h"
#include "current9.h"
static current9_t current9; /**< Current 9 Click driver object. */
static log_t logger; /**< Logger object. */
void application_init ( void )
{
log_cfg_t log_cfg; /**< Logger config object. */
current9_cfg_t current9_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.
current9_cfg_setup( ¤t9_cfg );
CURRENT9_MAP_MIKROBUS( current9_cfg, MIKROBUS_1 );
err_t init_flag = current9_init( ¤t9, ¤t9_cfg );
if ( ( ADC_ERROR == init_flag ) || ( I2C_MASTER_ERROR == init_flag ) )
{
log_error( &logger, " Communication init." );
for ( ; ; );
}
log_info( &logger, " Application Task " );
}
void application_task ( void )
{
float current = 0;
if ( CURRENT9_OK == current9_read_current ( ¤t9, ¤t ) )
{
log_printf( &logger, " Current : %.3f[A]\r\n\n", current );
Delay_ms( 1000 );
}
}
void main ( void )
{
application_init( );
for ( ; ; )
{
application_task( );
}
}
// ------------------------------------------------------------------------ END