Boost performance and protect your system with our high-quality isolated A/D converter
A
A
Hardware Overview
How does it work?
ISO ADC 3 Click is based on the AMC1100, a precision isolation amplifier from Texas Instruments with an output separated from the input circuitry by a silicon dioxide barrier highly resistant to magnetic interference. The AMC1100 can be used in conjunction with isolated power supplies to prevent noise currents on a high common-mode voltage line from entering the local ground and interfering with or damaging sensitive circuitry. It offers features such as linearity, high input common-mode rejection, and low DC errors and drift, which makes it a high-performance isolation amplifier for industrial applications where users and subsystems must be protected from high voltage potentials. The AMC1100 consists of a delta-sigma modulator input stage, including an internal reference and clock generator. The modulator and clock signal output are differentially transmitted over the integrated capacitive isolation barrier that separates
the high-voltage and low-voltage domains. The silicon dioxide capacitive isolation barrier supports a high level of magnetic field immunity. These isolators transfer data signals differentially across the isolation barrier through two capacitors formed with a top metal plate and conductive silicon bottom plate on each side of a silicon dioxide dielectric. The received bitstream and clock signals are synchronized and processed by a third-order analog filter with a nominal gain of 8 on the low side and presented as a differential output. An analog signal from the AMC1100 can be applied directly to the MCP3221, a successive approximation A/D converter with a 12-bit resolution from Microchip, which ISO ADC 3 Click uses to communicate with MCU through a 2-wire I2C compatible interface. This device provides one single-ended input with low power consumption. Data can be transferred at 100kbit/s in the Standard and 400kbit/s in the Fast Mode.
Also, maximum sample rates of 22.3kSPS with the MCP3221 are possible in a Continuous-Conversion Mode with a clock rate of 400 kHz. It also possesses two input terminals labeled VIN and VEXT. VEXT represents the high-side power supply of the amplifier, while the other represents the noninverting analog input of the AMC1100. Both input terminals allow Normal operation with values of applied input voltage up to 5.5V maximum. 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
Flip&Click PIC32MZ is a compact development board designed as a complete solution 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, the PIC32MZ2048EFH100 from Microchip, four mikroBUS™ sockets for Click board™ connectivity, two USB connectors, LED indicators, buttons, debugger/programmer connectors, and two headers compatible with Arduino-UNO pinout. Thanks to innovative manufacturing technology,
it allows you to build gadgets with unique functionalities and features quickly. Each part of the Flip&Click PIC32MZ development kit contains the components necessary for the most efficient operation of the same board. In addition, there is the possibility of choosing the Flip&Click PIC32MZ programming method, using the chipKIT bootloader (Arduino-style development environment) or our USB HID bootloader using mikroC, mikroBasic, and mikroPascal for PIC32. This kit includes a clean and regulated power supply block through the USB Type-C (USB-C) connector. All communication
methods that mikroBUS™ itself supports are on this board, including the well-established mikroBUS™ socket, user-configurable buttons, and LED indicators. Flip&Click PIC32MZ development kit allows 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)
2048
Silicon Vendor
Microchip
Pin count
100
RAM (Bytes)
524288
Used MCU Pins
mikroBUS™ mapper
Take a closer look
Click board™ Schematic

Step by step
Project assembly
Track your results in real time
Application Output
1. Application Output - In Debug mode, the 'Application Output' window enables real-time data monitoring, offering direct insight into execution results. Ensure proper data display by configuring the environment correctly using the provided tutorial.

2. UART Terminal - Use the UART Terminal to monitor data transmission via a USB to UART converter, allowing direct communication between the Click board™ and your development system. Configure the baud rate and other serial settings according to your project's requirements to ensure proper functionality. For step-by-step setup instructions, refer to the provided tutorial.

3. Plot Output - The Plot feature offers a powerful way to visualize real-time sensor data, enabling trend analysis, debugging, and comparison of multiple data points. To set it up correctly, follow the provided tutorial, which includes a step-by-step example of using the Plot feature to display Click board™ readings. To use the Plot feature in your code, use the function: plot(*insert_graph_name*, variable_name);. This is a general format, and it is up to the user to replace 'insert_graph_name' with the actual graph name and 'variable_name' with the parameter to be displayed.

Software Support
Library Description
This library contains API for ISO ADC 3 Click driver.
Key functions:
uint16_t isoadc3_read_data ( );
- Function is used to read raw data from MCP3221.uint16_t isoadc3_read_voltage ( uint16_t v_ref );
- Function is used to calculate the ADC's voltage level.
Open Source
Code example
The complete application code and a ready-to-use project are available through the NECTO Studio Package Manager for direct installation in the NECTO Studio. The application code can also be found on the MIKROE GitHub account.
/*!
* @file main.c
* @brief ISOADC3 Click example
*
* # Description
* This example shows the capabilities of the ISO ADC 3 click.
*
* The demo application is composed of two sections :
*
* ## Application Init
* Initalizes I2C driver and makes an initial log.
*
* ## Application Task
* Measures ADC voltage level and prints it via USB UART terminal.
* @author Stefan Ilic
*
*/
#include "board.h"
#include "log.h"
#include "isoadc3.h"
static isoadc3_t isoadc3;
static log_t logger;
uint16_t voltage;
void application_init ( void ) {
log_cfg_t log_cfg; /**< Logger config object. */
isoadc3_cfg_t isoadc3_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.
isoadc3_cfg_setup( &isoadc3_cfg );
ISOADC3_MAP_MIKROBUS( isoadc3_cfg, MIKROBUS_1 );
err_t init_flag = isoadc3_init( &isoadc3, &isoadc3_cfg );
if ( I2C_MASTER_ERROR == init_flag ) {
log_error( &logger, " Application Init Error. " );
log_info( &logger, " Please, run program again... " );
for ( ; ; );
}
log_info( &logger, " Application Task " );
}
void application_task ( void ) {
voltage = isoadc3_read_voltage( &isoadc3, ISOADC3_VREF_3V3 );
log_printf( &logger, " ADC voltage Level: %d mV \r\n", voltage );
log_printf( &logger, "------------------------\r\n" );
Delay_ms( 1000 );
}
void main ( void ) {
application_init( );
for ( ; ; ) {
application_task( );
}
}
// ------------------------------------------------------------------------ END