

The MH-ET Live Scanner is a compact and versatile device designed for real-time monitoring and analysis of electrical signals in circuits. It is widely used for troubleshooting and diagnostics in various electronic applications. This component is particularly useful for detecting signal patterns, voltage levels, and other electrical characteristics, making it an essential tool for engineers, hobbyists, and students working on electronic projects.








The MH-ET Live Scanner is designed to be user-friendly while offering robust performance. Below are its key technical specifications:
| Parameter | Value |
|---|---|
| Operating Voltage | 3.3V to 5V |
| Current Consumption | < 50mA |
| Signal Input Range | 0V to 5V |
| Display Type | LED bar graph |
| Number of LEDs | 10 |
| Response Time | < 1ms |
| Dimensions | 50mm x 20mm x 10mm |
| Pin Name | Pin Number | Description |
|---|---|---|
| VCC | 1 | Power supply input (3.3V to 5V) |
| GND | 2 | Ground connection |
| SIG | 3 | Signal input for monitoring |
| EN | 4 | Enable pin (active HIGH to activate the scanner) |
The MH-ET Live Scanner is straightforward to use and can be integrated into a variety of circuits. Follow the steps below to use the component effectively:
VCC pin to a 3.3V or 5V power source and the GND pin to the ground of your circuit.SIG pin to the signal line you want to monitor. Ensure the signal voltage does not exceed 5V.EN pin is available, set it HIGH to activate the scanner. If not connected, the scanner is enabled by default.The MH-ET Live Scanner can be easily connected to an Arduino UNO for signal monitoring. Below is an example code snippet:
// Example: Using MH-ET Live Scanner with Arduino UNO
// This code generates a PWM signal on pin 9 and monitors it using the scanner.
const int pwmPin = 9; // PWM output pin
const int enablePin = 7; // Enable pin for the scanner
void setup() {
pinMode(pwmPin, OUTPUT); // Set PWM pin as output
pinMode(enablePin, OUTPUT); // Set enable pin as output
digitalWrite(enablePin, HIGH); // Enable the scanner
}
void loop() {
// Generate a PWM signal with 50% duty cycle
analogWrite(pwmPin, 128); // 128 corresponds to 50% duty cycle (0-255 range)
// The scanner will display the signal level in real-time
delay(100); // Small delay for stability
}
| Issue | Possible Cause | Solution |
|---|---|---|
| LEDs do not light up | No power or incorrect wiring | Check VCC and GND connections. |
| LEDs flicker or display unstable | Unstable power supply or noisy signal | Use a stable power source and filter noise. |
| Signal not displayed correctly | Signal voltage out of range | Ensure signal voltage is between 0V and 5V. |
| Scanner does not activate | EN pin not set HIGH |
Set the EN pin HIGH or leave it unconnected. |
Can the MH-ET Live Scanner handle AC signals?
What happens if the input signal exceeds 5V?
Can I use the scanner with a 3.3V microcontroller?
How do I interpret the LED bar graph?
By following this documentation, you can effectively use the MH-ET Live Scanner for real-time signal monitoring and diagnostics in your electronic projects.