

The Autoro Dual DV6.7 is a dual-channel digital voltmeter designed for precise voltage measurements in a wide range of electronic applications. With its clear, easy-to-read display and adjustable settings, the DV6.7 is ideal for both laboratory environments and fieldwork. Its dual-channel capability allows users to measure two independent voltage sources simultaneously, making it a versatile tool for engineers, technicians, and hobbyists.








The following table outlines the key technical details of the Autoro Dual DV6.7:
| Parameter | Specification |
|---|---|
| Input Voltage Range | 0–30V DC (per channel) |
| Display Type | Dual 7-segment LED display |
| Measurement Accuracy | ±0.5% |
| Resolution | 0.01V |
| Power Supply Voltage | 5V DC |
| Power Consumption | < 100mA |
| Operating Temperature | -10°C to 50°C |
| Dimensions | 80mm x 40mm x 25mm |
| Weight | 50g |
The Autoro Dual DV6.7 has a simple pinout for easy integration into circuits. The pin configuration is as follows:
| Pin | Name | Description |
|---|---|---|
| 1 | VCC | Power supply input (5V DC) |
| 2 | GND | Ground connection |
| 3 | CH1+ | Positive input for Channel 1 voltage measurement |
| 4 | CH1- | Negative input for Channel 1 voltage measurement |
| 5 | CH2+ | Positive input for Channel 2 voltage measurement |
| 6 | CH2- | Negative input for Channel 2 voltage measurement |
The Autoro Dual DV6.7 can be used with an Arduino UNO to monitor voltage levels programmatically. Below is an example of how to connect and read voltage values:
// Example code to read and display voltage values from the Autoro Dual DV6.7
// Note: This code assumes the voltage sources are connected to analog pins A0 and A1.
const int channel1Pin = A0; // Analog pin for Channel 1
const int channel2Pin = A1; // Analog pin for Channel 2
void setup() {
Serial.begin(9600); // Initialize serial communication
Serial.println("Autoro Dual DV6.7 Voltage Monitor");
}
void loop() {
// Read analog values from the channels
int ch1Value = analogRead(channel1Pin);
int ch2Value = analogRead(channel2Pin);
// Convert analog values to voltage (assuming 5V reference and 10-bit ADC)
float ch1Voltage = (ch1Value / 1023.0) * 5.0;
float ch2Voltage = (ch2Value / 1023.0) * 5.0;
// Display the voltage readings
Serial.print("Channel 1 Voltage: ");
Serial.print(ch1Voltage);
Serial.println(" V");
Serial.print("Channel 2 Voltage: ");
Serial.print(ch2Voltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
No Display on the LED Screen:
Inaccurate Voltage Readings:
Flickering Display:
By following this documentation, users can effectively integrate and utilize the Autoro Dual DV6.7 in their projects for accurate and reliable voltage measurements.