Stufin
Home Quick Cart Profile

Digital Voltmeter Ammeter DC 100V 100A Dual Led Voltage Monitor Panel (Without Shunt)

Buy Now on Stufin

Measurement range

0-100A DC

Accuracy

1% of full scale

Resolution

0.1A

  • Dual LED Display:

Two independent LED displays for voltage and current measurements

Bright, high-contrast displays for clear visibility

  • Digital Display:

3.5-digit display for voltage measurement

3.5-digit display for current measurement

  • Operating Conditions:

Operating temperature range

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

Storage temperature range

-40C to 80C (-40F to 176F)

  • Power Supply:

Operating voltage

4.5-30V DC

Power consumption

20mA

  • Connectors:

Voltage input

2 x screw terminals

Current input

2 x screw terminals

Power supply

2 x screw terminals

  • Dimensions:

Panel cutout

45 x 45mm (1.77 x 1.77 inches)

Panel thickness

3.5mm (0.14 inches)

Overall dimensions

55 x 55 x 25mm (2.17 x 2.17 x 0.98 inches)

  • Certifications:

CE certified

RoHS compliant

Applications

  • Industrial automation and control systems
  • Electric vehicles and charging systems
  • Renewable energy systems (solar, wind, etc.)
  • Power supplies and battery management systems
  • Robotics and motor control systems
  • Laboratory and testing equipment
  • Automotive and marine electrical systems
The Digital Voltmeter Ammeter DC 100V 100A Dual Led Voltage Monitor Panel is suitable for a wide range of applications, including

Wiring and Installation

The device should be installed on a flat, clean surface, with the panel cutout aligned with the mounting screws. Connect the voltage and current inputs to the corresponding screw terminals, ensuring correct polarity. Connect the power supply to the device, following the recommended voltage range. Refer to the datasheet for detailed wiring diagrams and installation instructions.

Troubleshooting and Maintenance

Regularly clean the device to prevent dust and moisture accumulation. Check for loose connections and ensure proper wiring. In case of malfunction, refer to the troubleshooting guide or contact the manufacturer for assistance.

Pin Configuration

  • Digital Voltmeter Ammeter DC 100V 100A Dual Led Voltage Monitor Panel (Without Shunt)
  • Pinout Description:
  • The Digital Voltmeter Ammeter DC 100V 100A Dual Led Voltage Monitor Panel has a total of 6 pins, which are used to connect the device to a power source, measure voltage and current, and display the readings on the built-in LED display. Below is a detailed description of each pin:
  • Pin 1: VCC (Red Wire)
  • Function: Power Supply Voltage ( Positive Terminal )
  • Description: This pin connects to the positive terminal of the power supply (typically 5V-30V DC).
  • Connection: Connect the red wire from the power supply to this pin.
  • Pin 2: GND (Black Wire)
  • Function: Power Supply Ground ( Negative Terminal )
  • Description: This pin connects to the negative terminal of the power supply (GND).
  • Connection: Connect the black wire from the power supply to this pin.
  • Pin 3: V+ (Voltage Measurement Input)
  • Function: Voltage Measurement Input (Positive Terminal)
  • Description: This pin connects to the positive terminal of the voltage source to be measured (up to 100V DC).
  • Connection: Connect the positive wire from the voltage source to be measured to this pin.
  • Pin 4: V- (Voltage Measurement Input)
  • Function: Voltage Measurement Input (Negative Terminal)
  • Description: This pin connects to the negative terminal of the voltage source to be measured.
  • Connection: Connect the negative wire from the voltage source to be measured to this pin.
  • Pin 5: I+ (Current Measurement Input)
  • Function: Current Measurement Input (Positive Terminal)
  • Description: This pin connects to the positive terminal of the current source to be measured (up to 100A DC).
  • Connection: Connect the positive wire from the current source to be measured to this pin. Note: This pin requires an external shunt resistor (not included) to measure current.
  • Pin 6: I- (Current Measurement Input)
  • Function: Current Measurement Input (Negative Terminal)
  • Description: This pin connects to the negative terminal of the current source to be measured.
  • Connection: Connect the negative wire from the current source to be measured to this pin. Note: This pin requires an external shunt resistor (not included) to measure current.
  • Connection Structure:
  • To connect the Digital Voltmeter Ammeter DC 100V 100A Dual Led Voltage Monitor Panel, follow these steps:
  • 1. Power Supply Connection:
  • Connect the red wire from the power supply (5V-30V DC) to Pin 1 (VCC).
  • Connect the black wire from the power supply to Pin 2 (GND).
  • 2. Voltage Measurement Connection:
  • Connect the positive wire from the voltage source to be measured (up to 100V DC) to Pin 3 (V+).
  • Connect the negative wire from the voltage source to be measured to Pin 4 (V-).
  • 3. Current Measurement Connection:
  • Connect the positive wire from the current source to be measured (up to 100A DC) to Pin 5 (I+).
  • Connect the negative wire from the current source to be measured to Pin 6 (I-).
  • Note: Install an external shunt resistor (not included) between Pin 5 (I+) and Pin 6 (I-) to measure current. Consult the datasheet or manufacturer's instructions for correct shunt resistor configuration.
  • Ensure proper connections to avoid damage to the device or inaccurate readings. Always follow safety guidelines when working with electrical systems.

Code Examples

Digital Voltmeter Ammeter DC 100V 100A Dual Led Voltage Monitor Panel (Without Shunt) Documentation
Overview
The Digital Voltmeter Ammeter DC 100V 100A Dual Led Voltage Monitor Panel is a high-accuracy, high-current measurement module designed for monitoring DC voltage and current in various applications. This module features a dual LED display, allowing for simultaneous voltage and current measurement displays.
Technical Specifications
Input voltage range: 0-100V DC
 Input current range: 0-100A DC
 Resolution: 0.01V/0.1A
 Accuracy: 1% (voltage), 2% (current)
 Display: Dual LED, 3.5 digits (voltage), 4 digits (current)
 Operating temperature: -20C to 70C
 Power supply: 5V DC (from external source)
Pinout
The module has the following pins:
VCC: 5V power supply input
 GND: Ground
 VIN: Voltage input (0-100V DC)
Curr: Current input (0-100A DC)
Examples and Code
### Example 1: Basic Voltage and Current Measurement using Arduino
This example demonstrates how to connect the Digital Voltmeter Ammeter module to an Arduino board and read voltage and current values.
Hardware Required
Arduino Board (e.g., Arduino Uno)
 Digital Voltmeter Ammeter DC 100V 100A Dual Led Voltage Monitor Panel
 Breadboard and jumper wires
Software Required
Arduino IDE (version 1.8.x or later)
Code
```c++
const int voltagePin = A0;  // Voltage input pin
const int currentPin = A1;  // Current input pin
void setup() {
  Serial.begin(9600);
}
void loop() {
  int voltageValue = analogRead(voltagePin);
  float voltage = voltageValue  (100.0 / 1023.0);  // Convert analog value to voltage (0-100V)
int currentValue = analogRead(currentPin);
  float current = currentValue  (100.0 / 1023.0);  // Convert analog value to current (0-100A)
Serial.print("Voltage: ");
  Serial.print(voltage);
  Serial.println("V");
Serial.print("Current: ");
  Serial.print(current);
  Serial.println("A");
delay(1000);
}
```
Example 2: Monitoring Battery Voltage and Current with Raspberry Pi
This example demonstrates how to connect the Digital Voltmeter Ammeter module to a Raspberry Pi and read voltage and current values using Python.
Hardware Required
Raspberry Pi (e.g., Raspberry Pi 4)
 Digital Voltmeter Ammeter DC 100V 100A Dual Led Voltage Monitor Panel
 Breadboard and jumper wires
Software Required
Raspbian OS (version 10 or later)
 Python 3.x
Code
```python
import time
import RPi.GPIO as GPIO
# Set up GPIO pins
GPIO.setmode(GPIO.BCM)
voltagePin = 17  # Voltage input pin
currentPin = 23  # Current input pin
while True:
    # Read voltage value
    voltageValue = GPIO.input(voltagePin)
    voltage = voltageValue  (100.0 / 1023.0)  # Convert digital value to voltage (0-100V)
# Read current value
    currentValue = GPIO.input(currentPin)
    current = currentValue  (100.0 / 1023.0)  # Convert digital value to current (0-100A)
print("Voltage: {:.2f}V".format(voltage))
    print("Current: {:.2f}A".format(current))
time.sleep(1)
```
Note: In this example, we assume that the Raspberry Pi's internal ADC is used to read the voltage and current values. If you prefer to use an external ADC, you will need to modify the code accordingly.