Skip to main content

AMT Encoder Explained


AMT Encoder

AMT Encoder usually refers to the AMT series of rotary encoders made by CUI Devices / Same Sky.

These are used in robotics, CNC machines, motors, and automation systems to measure:

  • Shaft position
  • Rotation speed
  • Direction
  • Angular displacement

The AMT series is known for using capacitive sensing technology instead of traditional optical sensing.

What Makes AMT Encoders Special?

1. Capacitive Sensing

Unlike optical encoders, AMT encoders are:

  • Resistant to dust, oil, and dirt
  • More rugged in industrial environments
  • Less sensitive to vibration

2. High Precision

They can provide very fine rotational measurements:

  • Incremental outputs (A/B quadrature)
  • Absolute position outputs
  • Multi-turn tracking in some models

3. Programmable Resolution

Some AMT encoders allow configurable resolutions like:

  • 48 PPR
  • 1024 PPR
  • 4096 PPR

Common AMT Encoder Types

Type Example Purpose
Incremental Encoder AMT10, AMT11, AMT12 Measures relative movement
Absolute Encoder AMT21, AMT22 Gives exact shaft angle immediately after power-up
Commutation Encoder AMT31, AMT33 Used for BLDC motor commutation

Example: Incremental AMT Encoder

An incremental AMT encoder outputs pulses as the shaft rotates.

If:

  • Encoder = 1000 PPR
  • Motor makes 1 revolution

Then the controller receives:

  • 1000 pulses (or 4000 counts using quadrature)

Used for:

  • PID speed control
  • Odometry
  • Servo feedback
  • Robotics

Example: Absolute AMT Encoder

Absolute encoders know the shaft’s exact angle even after power loss.

Example:

  • Shaft at 237°
  • Power off
  • Power on
  • Encoder still reports 237°

Useful for:

  • Robotic arms
  • CNC axes
  • Elevators
  • Positioning systems

AMT21/22 models support multi-turn tracking too.

Typical Signals / Output

Depending on model:

  • Quadrature A/B
  • PWM
  • SPI
  • SSI
  • RS-485
  • U/V/W commutation signals

Applications

AMT encoders are commonly used in:

  • Robotics
  • BLDC motors
  • Servo systems
  • CNC machines
  • Industrial automation
  • AGVs and autonomous robots
Think of an encoder like a digital ruler for rotation.

It tells the controller:

  • How far the motor turned
  • How fast it’s spinning
  • Which direction it moved

Additional Topics You Can Explore

  • Incremental vs Absolute Encoders
  • How AMT Encoders Work Internally
  • Wiring Diagrams
  • Arduino / ESP32 Interfacing
  • Reading Encoder Signals in Code
  • AMT vs Magnetic vs Optical Encoders

Technical Specifications

Feature Specification
Input Voltage 3.3V to 5V DC
Operating Temp -40°C to +125°C
Max Speed Up to 7500 RPM
Technology Capacitive ASIC
Bore Sizes 2mm to 8mm (Adjustable)

AMT Encoder Pinout (Standard 5-Pin)

Most AMT incremental encoders (like the AMT102 or AMT103) use a 5-pin connector. Here is the standard wiring:

  • Pin 1 (B): Phase B Signal
  • Pin 2 (5V): Input Power (3.3V - 5V)
  • Pin 3 (A): Phase A Signal
  • Pin 4 (GND): Ground
  • Pin 5 (I): Index (Z-pulse) - Once per revolution
Note: Always check your specific model's datasheet, as some Absolute models (AMT22) use SPI wiring (CS, SCLK, MOSI, MISO).

Interfacing with Arduino

To read an AMT encoder, use the Encoder.h library for the best performance. Below is a basic example using interrupts:


const int encoderPinA = 2;
const int encoderPinB = 3;
volatile long pulseCount = 0;

void setup() {
  Serial.begin(9600);
  pinMode(encoderPinA, INPUT_PULLUP);
  attachInterrupt(digitalPinToInterrupt(encoderPinA), handleEncoder, RISING);
}

void loop() {
  Serial.print("Position: ");
  Serial.println(pulseCount);
  delay(100);
}

void handleEncoder() {
  pulseCount++;
}

AMT (Capacitive) vs. Optical Encoders

Why choose an AMT encoder over a traditional optical one?

  • Durability: Optical encoders fail if the internal LED burns out or the disk gets dusty. AMT encoders are solid-state.
  • Customization: One AMT encoder can often be adjusted to 16 different resolutions via DIP switches.
  • Power Consumption: AMT encoders typically draw significantly less current (approx 6-10mA) than optical versions.

Frequently Asked Questions (FAQ)

Why am I getting "noisy" signals?

Capacitive encoders are resistant to dust, but they can be sensitive to electrical noise. Ensure you are using shielded cables and that the encoder ground is shared with your microcontroller ground.

Does the AMT10 series require a special tool for assembly?

No, one of the best features of the AMT series is the "One-Touch" assembly. They come with different sized sleeves (bushings) to fit various motor shaft diameters.

What is an Optical Encoder? (The Traditional Alternative)

Before capacitive technology (like AMT) became popular, Optical Encoders were the industry standard. They work using a very different physical principle:

  • Light Source: An internal LED shines a beam of light.
  • Code Disk: A glass or plastic disk with tiny slits rotates with the motor shaft.
  • Photo-sensor: A sensor on the other side "sees" the light flickering through the slits.
How it works: As the shaft turns, the disk interrupts the light beam. The sensor counts these "blinks" and converts them into electrical pulses to measure speed and distance.

The Main Weaknesses of Optical Encoders:

While very accurate, optical encoders have vulnerabilities that AMT encoders solve:

  • Contamination: If a single speck of dust or drop of oil gets on the disk, the sensor can't "see" the light, causing errors.
  • Fragility: The code disks are often made of glass, which can shatter during high-vibration or heavy-shock applications.
  • LED Decay: Like any lightbulb, the internal LED gets dimmer over time (usually after 5–10 years), eventually leading to failure.

Internal vs. External Sensing: What does the Encoder do?

It is important to distinguish between how a robot "sees" the world and how it "feels" its own movement:

  • External Sensors (LiDAR, Ultrasonic, Cameras): These help a robot find the speed and distance of other objects in its environment.
  • Internal Sensors (AMT Encoders): These are used for the robot's own movement. They are attached directly to the motors to tell the robot exactly how far its own joints or wheels have turned.
Summary: An encoder doesn't tell a robot where the wall is; it tells the robot how many centimeters its wheels have rolled toward that wall.

Using AMT Encoders in Robotic Arms

In a robotic arm, every "joint" is powered by a motor. For the arm to pick up a delicate object, the controller needs to know the exact angle of every joint.

  • Position Feedback: The encoder tells the controller if the arm is at 45° or 45.1°. This precision prevents the arm from crashing into things.
  • Repeatability: Because AMT absolute encoders (like the AMT22) remember their position, the robotic arm can start working immediately when powered on without needing to "home" or calibrate itself.
  • Smooth Motion: By measuring speed in real-time, the encoder helps the robot slow down gently before stopping, preventing "jerky" movements.

Using AMT Encoders for Distance (Odometry)

For mobile robots (like a Roomba or an industrial warehouse robot), encoders are used for Odometry.

By counting the pulses from the AMT encoder on the wheels, the robot's computer calculates:

Distance = (Total Pulses / Pulses Per Revolution) × Wheel Circumference

This allows the robot to know it has traveled exactly 5 meters and needs to turn left, even if it doesn't have GPS or cameras.

Optical Rotary Encoders vs VLC (Visible Light Communication)

1. Optical Rotary Encoders (Motion Control)

The "Optical Encoder" we discuss in robotics is an internal closed system. It doesn't "send" data through the air. The light stays inside the motor housing. Its only job is to tell a computer: "The motor just turned 1 degree."

2. VLC and Li-Fi (Data Communication)

What you may have seen regarding iPhone cameras and blinking LEDs in Japan is called Visible Light Communication (VLC) or Li-Fi.

  • Purpose: To transfer files, internet data, or ID codes through the air.
  • How it works: An LED blinks at ultra-high speeds (faster than the human eye can see). A camera or a photodiode receives these "blinks" as binary code (1s and 0s).
  • The "Japan/iPhone" Tech: This is often called Optical Camera Communication (OCC). It uses the camera’s "rolling shutter" to detect patterns in light to download information from a smart LED bulb or a screen.
Feature Rotary Encoder (AMT/Optical) VLC / Li-Fi
Primary Goal Measure physical rotation/speed Wireless data transfer (files/internet)
Data Source A spinning disk or shaft A digital file or network stream
Receiver A fixed phototransistor A camera sensor or specialized receiver


Contact Us

Name

Email *

Message *

Popular Posts

Online Simulator for ASK, FSK, and PSK Signal Generation

Interactive Digital Signal Processing (DSP) Tutorial and Simulator for ASK, FSK, and BPSK modulation techniques. Try our new Digital Signal Processing Simulator!   •   Interactive ASK, FSK, and BPSK tools updated for 2025. Start Now Digital Modulation Visualizer: ASK, FSK, & BPSK Simulator Learn and visualize binary modulation techniques (ASK, FSK, BPSK) in real-time with adjustable carrier and sampling parameters. Perfect for DSP students and engineers. 📡 ASK Simulator 📶 FSK Simulator 🎚️ BPSK Simulator 📚 More Topics ASK Modulator FSK Modulator BPSK Modulator Demodulation More Topics 1. ASK (Ampli...

Direction of Arrival (DoA) Online Simulator (using MUSIC)

Interactive DOA Simulator X-axis XY angle (deg): 45 XZ angle (deg): 30 Noise: 0.05 Y-axis XY angle (deg): 60 YZ angle (deg): 45 Noise: 0.05 Z-axis XZ angle (deg): 60 YZ angle (deg): 30 Noise: 0.05 Estimated DOA (deg): 0 Simulation Workflow and Mathematical Background This simulator demonstrates Direction of Arrival (DOA) estimation using three-axis sensor signals (X, Y, Z), Maximal Ratio Combining (MRC) , and the MUSIC algorithm . It allows interactive control of signal angles and noise for teaching purposes. 1. Signal Generation A pure sinewave signal of frequency f is projected onto three axes using user-defined angles in different planes: X-axis: θ XY , θ XZ Y-axis: θ XY , θ YZ Z-axis: θ XZ , θ YZ Mathematically, for each time sample t : x(t) = s(t) * cos(θ_xy_x) * cos(θ_xz_x) + n_x(t) y(t) = s(t) * sin(θ_xy_y) * cos(θ_yz_y) + n_y(t) z(t) = s(t) * sin(θ_xz_z) * sin(θ_yz_z) + n_z(t) wh...

UGC NET Electronic Science Previous Year Question Papers with Solutions

Download Papers and Solutions Exam Pattern Preparation Tips FAQs More Home / Engineering & Other Exams / UGC NET 2026 PYQ 📊 Exam Highlights: Electronic Science (88) Feature Details Junior Research Fellowship (JRF) ₹37,000 + HRA per month Eligibility M.Sc/M.Tech in Electronics (55%) Validity of Certificate JRF (3 Years) | Lectureship (Lifetime) 📥 Download UGC NET Electronics PDFs Complete collection of previous year question papers, answer keys and explanations for Subject Code 88. Start Downloading 📂 View All Question Papers June 2025 - Question Paper Download PDF June 2025 - Sol...

Constellation Diagrams of ASK, PSK, and FSK (with MATLAB Code + Simulator)

Constellation Diagrams: ASK, FSK, and PSK Comprehensive guide to signal space representation, including interactive simulators and MATLAB implementations. 📘 Overview 🧮 Simulator ⚖️ Theory 📈 Q-function 📚 Resources BASK Modulation Transmits one of two signals: 0 or $\sqrt{E_b}$, representing binary 0 and 1. Simple but sensitive to noise. BFSK Modulation Transmits one of two signals: $\sqrt{E_b}$ on the Y-axis or $\sqrt{E_b}$ on the X-axis. These are orthogonal signals. BPSK Modulation Transmits $+\sqrt{E_b}$ or $-\sqrt{E_b}$ (antipodal signaling). Most efficient binary scheme. ...

DSB-SC Modulation and Demodulation

📘 Overview 🧮 DSB-SC Modulator 🧮 DSB-SC Detector 🧮 Comparisons 🧮 Q & A Summary 📚 Further Reading Double-sideband suppressed-carrier transmission (DSB-SC) is transmission in which frequencies produced by amplitude modulation (AM) are symmetrically spaced above and below the carrier frequency and the carrier level is reduced to the lowest practical level, ideally being completely suppressed. In the DSB-SC modulation, unlike in AM, the wave carrier is not transmitted; thus, much of the power is distributed between the sidebands, which implies an increase of the cover in DSB-SC, compared to AM, for the same power use. DSB-SC transmission is a special case of double-sideband reduced carrier transmission. It is used for radio data systems. This model is frequently used in Amateur radio voice communications, especially on High-Frequency bands. Spectrum DSB-SC i...

OFDM Symbols and Subcarriers Explained

This article explains how OFDM (Orthogonal Frequency Division Multiplexing) symbols and subcarriers work. It covers modulation, mapping symbols to subcarriers, subcarrier frequency spacing, IFFT synthesis, cyclic prefix, and transmission. Step 1: Modulation First, modulate the input bitstream. For example, with 16-QAM , each group of 4 bits maps to one QAM symbol. Suppose we generate a sequence of QAM symbols: s0, s1, s2, s3, s4, s5, …, s63 Step 2: Mapping Symbols to Subcarriers Assume N sub = 8 subcarriers. Each OFDM symbol in the frequency domain contains 8 QAM symbols (one per subcarrier): Mapping (example) OFDM symbol 1 → s0, s1, s2, s3, s4, s5, s6, s7 OFDM symbol 2 → s8, s9, s10, s11, s12, s13, s14, s15 … OFDM sym...

Modified Alamouti Scheme (STBC) in MATLAB (using QPSK)

When the parameter alpha is set to 1 , the scheme becomes the standard Alamouti code . In this case, the transmitted signals are perfectly orthogonal, which allows very simple and optimal linear decoding at the receiver. When alpha is not equal to 1 , the scheme is referred to as a modified Alamouti code . The basic Alamouti structure is preserved, but the signals are intentionally scaled or weighted. This modification causes a slight loss of perfect orthogonality , although the receiver can still use linear decoding with low complexity. Modified Alamouti codes are commonly used to model practical impairments in wireless systems, such as channel mismatch, unequal transmit power between antennas, hardware imperfections, or time-varying channels , where the assumptions of the standard Alamouti code no longer strictly hold. MATLAB Code clc; clear; % Parameters N = 1e4; % Number of symbols SNR_dB = 0:5:30; % SNR range alpha = 0.8; % Modification factor (alpha = 1 -> standard Alamout...