The MH-ET Live Scanner (AGE V3.0) is a versatile device designed for real-time monitoring and analysis of electrical signals in circuits. It provides users with valuable insights into circuit performance, enabling the identification of potential issues such as signal distortion, noise, or irregularities. This component is particularly useful for debugging, testing, and optimizing electronic designs.
The following table outlines the key technical details of the MH-ET Live Scanner:
Parameter | Specification |
---|---|
Manufacturer | AGE |
Part ID | V3.0 |
Operating Voltage | 3.3V to 5V DC |
Input Signal Range | 0V to 5V |
Sampling Rate | Up to 1 MSPS (Mega Samples Per Second) |
Communication Protocol | UART (9600 baud rate default) |
Dimensions | 40mm x 20mm x 10mm |
Operating Temperature | -20°C to 70°C |
The MH-ET Live Scanner has a simple pinout for easy integration into circuits. The pin configuration is as follows:
Pin | Name | Description |
---|---|---|
1 | VCC | Power supply input (3.3V to 5V DC) |
2 | GND | Ground connection |
3 | RX | UART Receive pin for communication |
4 | TX | UART Transmit pin for communication |
5 | SIG_IN | Signal input pin for monitoring (0V to 5V range) |
VCC
pin to a 3.3V or 5V DC power source and the GND
pin to the ground of your circuit.SIG_IN
pin. Ensure the signal voltage does not exceed the 0V to 5V range.RX
and TX
pins to interface with a microcontroller or computer via UART. The default baud rate is 9600.The MH-ET Live Scanner can be easily connected to an Arduino UNO for signal monitoring. Below is an example setup and code:
MH-ET Live Scanner Pin | Arduino UNO Pin |
---|---|
VCC | 5V |
GND | GND |
RX | Pin 10 (via voltage divider if using 5V logic) |
TX | Pin 11 |
SIG_IN | Signal source |
// Include SoftwareSerial library for UART communication
#include <SoftwareSerial.h>
// Define RX and TX pins for SoftwareSerial
SoftwareSerial LiveScanner(10, 11); // RX = Pin 10, TX = Pin 11
void setup() {
// Initialize serial communication with the Live Scanner
LiveScanner.begin(9600); // Set baud rate to 9600
Serial.begin(9600); // For debugging via Serial Monitor
// Print initialization message
Serial.println("MH-ET Live Scanner Initialized");
}
void loop() {
// Check if data is available from the Live Scanner
if (LiveScanner.available()) {
// Read and print the data to the Serial Monitor
String signalData = LiveScanner.readString();
Serial.println("Signal Data: " + signalData);
}
// Add a small delay to avoid flooding the Serial Monitor
delay(100);
}
No Signal Data Received
Distorted or Inaccurate Signal Readings
Device Not Powering On
VCC
pin is connected to a stable 3.3V or 5V source.UART Communication Errors
Q1: Can the MH-ET Live Scanner handle AC signals?
A1: Yes, the device can monitor AC signals, but the signal must remain within the 0V to 5V range. Use a coupling capacitor if necessary.
Q2: Is the device compatible with 3.3V logic microcontrollers?
A2: Yes, the MH-ET Live Scanner is fully compatible with 3.3V logic levels.
Q3: Can I use the device with other communication protocols?
A3: No, the MH-ET Live Scanner only supports UART communication.
Q4: What software can I use to visualize the signal data?
A4: You can use any serial terminal software (e.g., Arduino Serial Monitor, PuTTY) or custom software that supports UART communication.
By following this documentation, users can effectively integrate and utilize the MH-ET Live Scanner in their projects for real-time signal monitoring and analysis.