

A multimeter is an electronic measuring instrument that combines several measurement functions in one unit. It is a versatile tool capable of measuring voltage (both AC and DC), current, and resistance. Some advanced multimeters also include features for testing continuity, diodes, capacitance, and frequency. Multimeters are essential tools for electricians, engineers, and hobbyists, and they are widely used for troubleshooting electrical and electronic circuits.








The specifications of a multimeter can vary depending on the model and manufacturer. Below are the general technical details for a typical digital multimeter:
| Parameter | Specification |
|---|---|
| Voltage Measurement | DC: 0-1000V, AC: 0-750V |
| Current Measurement | DC: 0-10A, AC: 0-10A |
| Resistance Measurement | 0-40MΩ |
| Display Type | Digital (LCD) or Analog |
| Accuracy | ±(0.5% to 2.0%) depending on the range and model |
| Continuity Test | Audible buzzer for resistance < 50Ω |
| Power Supply | 9V battery (commonly used in digital multimeters) |
| Input Impedance | Typically 10MΩ |
| Safety Rating | CAT II / CAT III / CAT IV (varies by model) |
| Port/Function | Description |
|---|---|
| COM (Common) | Ground or reference connection for measurements |
| V/Ω/mA Port | Used for voltage, resistance, and low current |
| 10A Port | Dedicated port for high current measurements |
| Rotary Dial | Selects the measurement type and range |
| Hold Button | Freezes the current reading on the display |
| Backlight Button | Activates the display backlight (if available) |
Voltage Measurement:
Current Measurement:
Resistance Measurement:
Continuity Test:
To measure the voltage output of an Arduino UNO pin:
// Example Arduino code to output a HIGH signal on pin 13
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
digitalWrite(13, HIGH); // Set pin 13 to HIGH (5V)
}
void loop() {
// No actions in the loop
}
Multimeter Does Not Turn On:
Incorrect Readings:
No Continuity Beep:
Blown Fuse:
Q: Can I measure current without breaking the circuit?
A: No, the multimeter must be connected in series with the circuit to measure current. For non-invasive current measurement, consider using a clamp meter.
Q: What does the CAT rating mean?
A: The CAT (Category) rating indicates the multimeter's safety level for different environments. For example, CAT III is suitable for distribution panels, while CAT IV is for outdoor installations.
Q: Can I use the multimeter to test batteries?
A: Yes, set the multimeter to the DC voltage range and measure the battery's terminals to check its voltage.
By following this documentation, users can effectively utilize a multimeter for various electrical and electronic measurements.