UNI-T UT33D Multimeter
UNI-T UT33D Multimeter
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.
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
### 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
AC/DC voltage measurement with automatic range selection
AC/DC current measurement with automatic range selection
2-wire and 4-wire measurement options
Automatic range selection for capacitance measurement
Measure frequency from 0.001Hz to 200kHz
Test diodes and continuity with audible buzzer
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 |
1 x 9V battery (included)
0C to 40C (32F to 104F)
-20C to 60C (-4F to 140F)
183 x 86 x 42mm (7.2 x 3.4 x 1.7 inches)
300g (10.6 oz)
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.
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.