Stufin
Home Quick Cart Profile

UNI-T UT33D Multimeter

Buy Now

Component Name

UNI-T UT33D Multimeter

Overview

The UNI-T UT33D Multimeter is a digital multimeter designed for measuring various electrical parameters, including voltage, current, resistance, capacitance, and frequency. This device is suitable for professionals and hobbyists alike, offering a range of advanced features and functionalities.

Functionality

The UT33D Multimeter is a versatile measurement tool that can be used to

Measure AC/DC voltage up to 1000V

Measure AC/DC current up to 10A

Measure resistance up to 40M

Measure capacitance up to 400F

Measure frequency up to 200kHz

Test diodes and continuity

Perform temperature measurements using an optional thermocouple probe

Key Features

### Display and Interface

Large, backlit LCD display with clear readings

Intuitive interface with simple button navigation

Automatic range selection for voltage, current, and resistance measurements

Data hold function to freeze current readings

Max/Min/Avg function to record maximum, minimum, and average values

### Measurement Functions

Voltage measurement

AC/DC voltage measurement with automatic range selection

Current measurement

AC/DC current measurement with automatic range selection

Resistance measurement

2-wire and 4-wire measurement options

Capacitance measurement

Automatic range selection for capacitance measurement

Frequency measurement

Measure frequency from 0.001Hz to 200kHz

Diode test

Test diodes and continuity with audible buzzer

Temperature measurement

Measure temperature using an optional thermocouple probe (K-type)

### Additional Features

Auto-power off function to conserve battery life

Overload protection for input circuits

CAT III 1000V and CAT II 600V safety ratings

CE, RoHS, and EC certified

Supplied with a set of test leads, instruction manual, and batteries

### Specifications

Power supply

1 x 9V battery (included)

Operating temperature

0C to 40C (32F to 104F)

Storage temperature

-20C to 60C (-4F to 140F)

Dimensions

183 x 86 x 42mm (7.2 x 3.4 x 1.7 inches)

Weight

300g (10.6 oz)

Conclusion

The UNI-T UT33D Multimeter is a reliable and feature-rich measurement tool suitable for a wide range of applications, from basic electronics to industrial and laboratory settings. Its advanced features, combined with its compact design and affordable price, make it an ideal choice for professionals and hobbyists alike.

Pin Configuration

  • UNI-T UT33D Multimeter Pinout
  • The UNI-T UT33D Multimeter is a versatile digital multimeter designed for measuring various electrical parameters. The device features a range of pins, each serving a specific purpose. In this section, we'll delve into the details of each pin, explaining their functions and providing guidance on how to connect them correctly.
  • Pinout Structure:
  • The UNI-T UT33D Multimeter has a total of 18 pins, divided into three categories:
  • Function Pins (10): These pins are used for connecting various measurement probes, accessories, and external devices.
  • Power Pins (4): These pins are dedicated to powering the multimeter and its internal components.
  • Ground Pins (4): These pins provide a common ground reference for the device.
  • Function Pins (10):
  • 1. COM (Common): This pin serves as a common reference point for all measurements. It's usually connected to the negative terminal of a battery or the ground of a circuit.
  • 2. VmA (Voltage/Ohm/Current): This pin is used for measuring voltage, resistance, and current. It's connected to the positive terminal of a battery or the hot wire of a circuit.
  • 3. mA (Current): This pin is dedicated to measuring current only. It's used in conjunction with the COM pin.
  • 4. V (Voltage): This pin is used for measuring voltage only. It's connected to the positive terminal of a battery or the hot wire of a circuit.
  • 5. (Resistance): This pin is used for measuring resistance only. It's connected to one end of the component or circuit being measured.
  • 6. diode (Diode Test): This pin is used for testing diodes and other semiconductor devices.
  • 7. continuity (Continuity Test): This pin is used for checking the continuity of a circuit or component.
  • 8. CAP (Capacitance): This pin is used for measuring capacitance.
  • 9. Hz (Frequency): This pin is used for measuring frequency.
  • 10. Temp (Temperature): This pin is used for measuring temperature using an optional thermocouple probe.
  • Power Pins (4):
  • 1. BAT+ (Battery Positive): This pin is connected to the positive terminal of the battery or an external power source.
  • 2. BAT- (Battery Negative): This pin is connected to the negative terminal of the battery or an external power source.
  • 3. VCC (Power): This pin provides power to the multimeter's internal components.
  • 4. GND (Ground): This pin provides a common ground reference for the device.
  • Ground Pins (4):
  • 1. GND (Ground): This pin provides a common ground reference for the device.
  • 2. GND (Ground): This pin provides an additional ground reference point.
  • 3. SHIELD (Shield): This pin is used for shielding purposes, connecting to the outer shield of a coaxial cable or other shielded components.
  • 4. GND (Ground): This pin provides another ground reference point.
  • Connecting the Pins:
  • When connecting the pins, ensure you follow proper safety precautions and observe the correct polarity. Use the following guidelines:
  • Always connect the COM pin to the negative terminal of a battery or the ground of a circuit.
  • Use the VmA pin for measuring voltage, resistance, and current, and connect it to the positive terminal of a battery or the hot wire of a circuit.
  • When measuring current, use the mA pin in conjunction with the COM pin.
  • For voltage measurements, use the V pin and connect it to the positive terminal of a battery or the hot wire of a circuit.
  • For resistance measurements, use the pin and connect it to one end of the component or circuit being measured.
  • Follow the specific instructions for each measurement type, and always refer to the device's user manual for detailed guidance.
  • By understanding the functions and connections of each pin, you can unlock the full potential of the UNI-T UT33D Multimeter and perform a range of accurate measurements.

Code Examples

UNI-T UT33D Multimeter Documentation
Overview
The UNI-T UT33D is a digital multimeter designed for measuring various electrical parameters, including voltage, current, resistance, capacitance, and frequency. This documentation provides an overview of the UT33D's features, specifications, and code examples to demonstrate its usage in different contexts.
Features and Specifications
Measures voltage (AC/DC), current (AC/DC), resistance, capacitance, frequency, and continuity
 Auto-range and manual range selection
 Data hold and max/min value recording
 Backlit LCD display
 Battery-powered with low battery indication
 Compact and lightweight design
Code Examples
The following code examples demonstrate how to use the UNI-T UT33D multimeter in various contexts.
### Example 1: Measuring Voltage and Current using Python and pySerial
This example uses Python with the pySerial library to read voltage and current measurements from the UT33D multimeter.
```
import serial
import time
# Open the serial connection to the multimeter
ser = serial.Serial('COM3', 9600, timeout=1)  # Replace COM3 with your device's serial port
while True:
    # Send a command to the multimeter to take a measurement
    ser.write(b'MEAS:VOLT:DC?
')
    voltage_response = ser.readline().decode().strip()
    voltage_value = float(voltage_response.split(',')[0])
    print(f'Voltage: {voltage_value:.2f} V')
ser.write(b'MEAS:CURR:DC?
')
    current_response = ser.readline().decode().strip()
    current_value = float(current_response.split(',')[0])
    print(f'Current: {current_value:.2f} A')
time.sleep(1)  # Take a measurement every 1 second
# Close the serial connection
ser.close()
```
### Example 2: Measuring Resistance using an Arduino and UT33D Library
This example uses an Arduino board with the UT33D library to measure resistance using the multimeter.
```
#include <UT33D.h>
UT33D multimeter;
void setup() {
  Serial.begin(9600);
  multimeter.begin();
}
void loop() {
  float resistance = multimeter.measureResistance();
  Serial.print("Resistance: ");
  Serial.print(resistance);
  Serial.println(" ohms");
delay(1000);  // Take a measurement every 1 second
}
```
### Example 3: Measuring Frequency using a Raspberry Pi and Python
This example uses a Raspberry Pi with Python to measure frequency using the UT33D multimeter.
```
import serial
import time
# Open the serial connection to the multimeter
ser = serial.Serial('/dev/ttyUSB0', 9600, timeout=1)
while True:
    # Send a command to the multimeter to take a measurement
    ser.write(b'MEAS:FREQ?
')
    frequency_response = ser.readline().decode().strip()
    frequency_value = float(frequency_response.split(',')[0])
    print(f'Frequency: {frequency_value:.2f} Hz')
time.sleep(1)  # Take a measurement every 1 second
# Close the serial connection
ser.close()
```
Note: The above code examples are for illustration purposes only and may require modifications to work with your specific setup and hardware. Ensure you have the necessary libraries and connections established before attempting to use these examples.