Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use AMC1400EVM: Examples, Pinouts, and Specs

Image of AMC1400EVM
Cirkit Designer LogoDesign with AMC1400EVM in Cirkit Designer

AMC1400EVM Documentation

1. Introduction

The AMC1400EVM is an evaluation module designed by Texas Instruments to facilitate the testing and evaluation of the AMC1400, a precision isolated amplifier. The AMC1400 is engineered for high-performance applications requiring accurate signal isolation, low noise, and high linearity. This evaluation module provides a convenient platform for engineers and developers to explore the capabilities of the AMC1400 in various use cases.

Key Features:

  • High-precision isolated amplifier with ±250 mV input range.
  • High common-mode transient immunity (CMTI) of 15 kV/µs (typical).
  • Low offset drift and high linearity for accurate signal processing.
  • Galvanic isolation for safety-critical applications.

Common Applications:

  • Industrial Automation: Motor control, current sensing, and power monitoring.
  • Medical Equipment: Patient monitoring and diagnostic devices.
  • Renewable Energy Systems: Solar inverters and battery management systems.
  • Test and Measurement Equipment: High-precision signal acquisition.

2. Technical Specifications

The following table outlines the key technical specifications of the AMC1400EVM:

Parameter Value
Input Voltage Range ±250 mV
Output Voltage Range 0.5 V to 4.5 V
Supply Voltage (VDD1) 3.0 V to 5.5 V
Supply Voltage (VDD2) 3.0 V to 5.5 V
Isolation Voltage 5 kV RMS
Common-Mode Transient Immunity (CMTI) 15 kV/µs (typical)
Operating Temperature Range -40°C to +125°C
Package Type SOIC-8 (AMC1400)

Pin Configuration and Descriptions

The AMC1400EVM provides access to the AMC1400's pins via test points and connectors. Below is the pin configuration for the AMC1400:

Pin Name Description
1 VIN+ Non-inverting analog input (connect to the positive side of the input signal).
2 VIN- Inverting analog input (connect to the negative side of the input signal).
3 GND1 Ground reference for the input side.
4 VDD1 Power supply for the input side (3.0 V to 5.5 V).
5 GND2 Ground reference for the output side.
6 VOUT Analog output signal (proportional to the input signal).
7 REFOUT Reference voltage output (typically 2.5 V).
8 VDD2 Power supply for the output side (3.0 V to 5.5 V).

3. Usage Instructions

Connecting the AMC1400EVM to a Circuit

  1. Power Supply:

    • Connect a regulated power supply to the VDD1 and VDD2 pins.
    • Ensure both sides are powered within the range of 3.0 V to 5.5 V.
    • Connect GND1 and GND2 to their respective ground references.
  2. Input Signal:

    • Apply the differential input signal to the VIN+ and VIN- pins.
    • Ensure the input signal does not exceed the ±250 mV range.
  3. Output Signal:

    • Measure the output signal at the VOUT pin.
    • The output voltage will be proportional to the input signal, scaled by the internal gain.
  4. Reference Voltage:

    • Use the REFOUT pin to access the internal reference voltage (2.5 V typical).

Important Considerations:

  • Isolation: The AMC1400 provides galvanic isolation between the input and output sides. Ensure proper grounding to maintain isolation integrity.
  • Input Signal Conditioning: Use appropriate filtering or signal conditioning to prevent noise from affecting the input signal.
  • Thermal Management: Operate the module within the specified temperature range (-40°C to +125°C) to ensure reliable performance.

4. Example Application with Arduino UNO

The AMC1400EVM can be interfaced with an Arduino UNO for signal acquisition and processing. Below is an example of how to read the output signal from the AMC1400EVM using the Arduino's ADC.

Circuit Diagram:

  • Connect VOUT from the AMC1400EVM to an analog input pin (e.g., A0) on the Arduino UNO.
  • Power the AMC1400EVM using a 5 V supply from the Arduino's 5V and GND pins.

Arduino Code:

// AMC1400EVM Example with Arduino UNO
// Reads the output voltage from the AMC1400EVM and displays it via Serial Monitor.

const int analogPin = A0; // Analog pin connected to VOUT of AMC1400EVM
const float referenceVoltage = 5.0; // Arduino UNO reference voltage (5V)
const int adcResolution = 1024; // 10-bit ADC resolution (0-1023)

void setup() {
  Serial.begin(9600); // Initialize serial communication at 9600 baud
  pinMode(analogPin, INPUT); // Set the analog pin as input
}

void loop() {
  int adcValue = analogRead(analogPin); // Read the ADC value
  float outputVoltage = (adcValue * referenceVoltage) / adcResolution; 
  // Convert ADC value to voltage
  
  Serial.print("Output Voltage: ");
  Serial.print(outputVoltage, 3); // Print voltage with 3 decimal places
  Serial.println(" V");
  
  delay(500); // Wait for 500 ms before the next reading
}

Notes:

  • Ensure the Arduino's ADC reference voltage matches the VDD2 supply voltage of the AMC1400EVM.
  • Use a voltage divider or level shifter if the output voltage exceeds the Arduino's ADC range.

5. Troubleshooting and FAQs

Common Issues and Solutions

Issue Possible Cause Solution
No output signal at VOUT. Power supply not connected or incorrect. Verify VDD1 and VDD2 connections and ensure proper voltage levels.
Output signal is noisy or unstable. Input signal is noisy or improperly grounded. Use proper filtering and ensure correct grounding on both sides.
Output voltage exceeds expected range. Input signal exceeds ±250 mV range. Ensure the input signal is within the specified range.
Arduino reads incorrect voltage. Mismatch in reference voltage or wiring. Verify the Arduino's reference voltage and check all connections.

Frequently Asked Questions (FAQs)

  1. Can the AMC1400EVM be used with a 3.3 V system?

    • Yes, the AMC1400EVM supports supply voltages as low as 3.0 V, making it compatible with 3.3 V systems.
  2. What is the purpose of the REFOUT pin?

    • The REFOUT pin provides a stable 2.5 V reference voltage, which can be used for external circuits or as a reference for ADCs.
  3. How do I ensure proper isolation?

    • Maintain separate ground planes for GND1 and GND2. Avoid connecting them directly to preserve isolation.
  4. Can the AMC1400EVM measure AC signals?

    • Yes, the AMC1400EVM can measure AC signals within the ±250 mV input range.

This documentation provides a comprehensive guide to using the AMC1400EVM. For further details, refer to the official Texas Instruments AMC1400EVM User Guide.

Explore Projects Built with AMC1400EVM

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Cellular-Enabled IoT Device with Real-Time Clock and Power Management
Image of LRCM PHASE 2 BASIC: A project utilizing AMC1400EVM in a practical application
This circuit features a LilyGo-SIM7000G module for cellular communication and GPS functionality, interfaced with an RTC DS3231 for real-time clock capabilities. It includes voltage sensing through two voltage sensor modules, and uses an 8-channel opto-coupler for isolating different parts of the circuit. Power management is handled by a buck converter connected to a DC power source and batteries, with a fuse for protection and a rocker switch for on/off control. Additionally, there's an LED for indication purposes.
Cirkit Designer LogoOpen Project in Cirkit Designer
ESP32C3 and SIM800L Powered Smart Energy Monitor with OLED Display and Wi-Fi Connectivity
Image of SERVER: A project utilizing AMC1400EVM in a practical application
This circuit is a power monitoring system that uses an ESP32C3 microcontroller to collect power usage data from slave devices via WiFi and SMS. The collected data is displayed on a 0.96" OLED screen, and the system is powered by an AC-DC converter module. Additionally, the circuit includes a SIM800L GSM module for SMS communication and LEDs for status indication.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino Nano-Based GPS Tracker with GSM Communication and IR Obstacle Detection
Image of circuit1: A project utilizing AMC1400EVM in a practical application
This circuit features an Arduino Nano interfaced with a SIM800L EVB GSM module for cellular communication, a GPS NEO 6M module for location tracking, and three TCRT 5000 IR sensors for object detection or line tracking. The Arduino facilitates data exchange between the GPS and GSM modules and processes signals from the IR sensors. The provided code skeleton suggests that the Arduino is programmed to perform tasks in a loop, but specific functionality is not detailed in the code.
Cirkit Designer LogoOpen Project in Cirkit Designer
ESP8266 and SIM800L Based GPS Tracker with I2C LCD Display and Battery Power
Image of Little Innovator Competition: A project utilizing AMC1400EVM in a practical application
This circuit integrates an ESP8266 NodeMCU microcontroller with a SIM800L GSM module, a GPS NEO 6M module, and a 16x2 I2C LCD display for communication and location tracking. It also includes a pushbutton for user input, a piezo buzzer for audio alerts, and is powered by a 2x 18650 battery pack through an LM2596 step-down module.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with AMC1400EVM

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of LRCM PHASE 2 BASIC: A project utilizing AMC1400EVM in a practical application
Cellular-Enabled IoT Device with Real-Time Clock and Power Management
This circuit features a LilyGo-SIM7000G module for cellular communication and GPS functionality, interfaced with an RTC DS3231 for real-time clock capabilities. It includes voltage sensing through two voltage sensor modules, and uses an 8-channel opto-coupler for isolating different parts of the circuit. Power management is handled by a buck converter connected to a DC power source and batteries, with a fuse for protection and a rocker switch for on/off control. Additionally, there's an LED for indication purposes.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of SERVER: A project utilizing AMC1400EVM in a practical application
ESP32C3 and SIM800L Powered Smart Energy Monitor with OLED Display and Wi-Fi Connectivity
This circuit is a power monitoring system that uses an ESP32C3 microcontroller to collect power usage data from slave devices via WiFi and SMS. The collected data is displayed on a 0.96" OLED screen, and the system is powered by an AC-DC converter module. Additionally, the circuit includes a SIM800L GSM module for SMS communication and LEDs for status indication.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of circuit1: A project utilizing AMC1400EVM in a practical application
Arduino Nano-Based GPS Tracker with GSM Communication and IR Obstacle Detection
This circuit features an Arduino Nano interfaced with a SIM800L EVB GSM module for cellular communication, a GPS NEO 6M module for location tracking, and three TCRT 5000 IR sensors for object detection or line tracking. The Arduino facilitates data exchange between the GPS and GSM modules and processes signals from the IR sensors. The provided code skeleton suggests that the Arduino is programmed to perform tasks in a loop, but specific functionality is not detailed in the code.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Little Innovator Competition: A project utilizing AMC1400EVM in a practical application
ESP8266 and SIM800L Based GPS Tracker with I2C LCD Display and Battery Power
This circuit integrates an ESP8266 NodeMCU microcontroller with a SIM800L GSM module, a GPS NEO 6M module, and a 16x2 I2C LCD display for communication and location tracking. It also includes a pushbutton for user input, a piezo buzzer for audio alerts, and is powered by a 2x 18650 battery pack through an LM2596 step-down module.
Cirkit Designer LogoOpen Project in Cirkit Designer