

The Blue Digital Mini Voltmeter (Manufacturer: Bayite, Part ID: CECOMINOD000239) is a compact and reliable electronic device designed to measure voltage in electrical circuits. It features a bright blue digital display for easy and accurate voltage readings, making it an essential tool for hobbyists, engineers, and technicians. Its small size and straightforward operation make it ideal for a wide range of applications.








The following table outlines the key technical details of the Blue Digital Mini Voltmeter:
| Parameter | Specification |
|---|---|
| Operating Voltage Range | 3.0V to 30.0V DC |
| Display Type | 3-digit 7-segment LED (Blue) |
| Measurement Accuracy | ±1% |
| Input Impedance | >100 kΩ |
| Operating Temperature | -10°C to +65°C |
| Dimensions | 48mm x 29mm x 21mm |
| Power Consumption | <20mA |
The Blue Digital Mini Voltmeter has three wires for connection. The table below describes each wire:
| Wire Color | Function | Description |
|---|---|---|
| Red | Positive Power Input | Connect to the positive terminal of the power source. |
| Black | Ground | Connect to the negative terminal of the power source. |
| Yellow | Voltage Measurement | Connect to the point in the circuit where voltage is to be measured. |
The Blue Digital Mini Voltmeter can be used to monitor the voltage of an external circuit while working with an Arduino UNO. Below is an example of how to connect and use the voltmeter:
Here is an example Arduino code to monitor the voltage using the Arduino's analog input pin:
// Example Arduino code to measure voltage using an analog pin
const int voltagePin = A0; // Analog pin connected to the voltage point
float voltage = 0.0; // Variable to store the calculated voltage
void setup() {
Serial.begin(9600); // Initialize serial communication for debugging
}
void loop() {
int sensorValue = analogRead(voltagePin); // Read the analog input
voltage = sensorValue * (5.0 / 1023.0); // Convert to voltage (5V reference)
// Print the voltage to the Serial Monitor
Serial.print("Measured Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
Note: The Arduino code is for monitoring voltage using the Arduino's ADC. The Blue Digital Mini Voltmeter operates independently and does not require programming.
No Display on the Voltmeter
Inaccurate Voltage Readings
Flickering Display
Device Overheating
Q1: Can the voltmeter measure AC voltage?
A1: No, the Blue Digital Mini Voltmeter is designed to measure DC voltage only. Measuring AC voltage may damage the device.
Q2: Can I use the voltmeter to measure the voltage of a 12V car battery?
A2: Yes, the voltmeter can measure the voltage of a 12V car battery as it falls within the operating range of 3.0V to 30.0V.
Q3: Is the voltmeter waterproof?
A3: No, the voltmeter is not waterproof. Avoid exposing it to moisture or water to prevent damage.
Q4: Can I use the voltmeter without the yellow wire?
A4: No, the yellow wire is essential for measuring voltage. It must be connected to the point where voltage is to be measured.
By following this documentation, users can effectively integrate and utilize the Blue Digital Mini Voltmeter in their projects.