









| Pin Name | Description |
|---|---|
BAT+ |
Positive terminal for battery connection. |
BAT- |
Negative terminal for battery connection. |
LOAD+ |
Positive terminal for load connection. |
LOAD- |
Negative terminal for load connection. |
CTRL |
Optional control pin for external enable/disable or threshold adjustment input. |
Connecting the LVD:
BAT+ and BAT- terminals to the positive and negative terminals of the battery, respectively.LOAD+ and LOAD- terminals to the positive and negative terminals of the load.Adjusting Voltage Thresholds:
CTRL) to set the desired disconnect and reconnect voltages.Important Considerations:
Using with an Arduino UNO:
CTRL pin can be connected to an Arduino UNO to enable or disable the LVD programmatically. Below is an example code snippet:// Example code to control an LVD using an Arduino UNO
// Connect the CTRL pin of the LVD to pin 7 on the Arduino UNO
const int lvdControlPin = 7; // Pin connected to the LVD CTRL pin
void setup() {
pinMode(lvdControlPin, OUTPUT); // Set the pin as an output
digitalWrite(lvdControlPin, LOW); // Ensure LVD is initially disabled
}
void loop() {
// Example: Enable the LVD for 10 seconds, then disable it for 5 seconds
digitalWrite(lvdControlPin, HIGH); // Enable the LVD
delay(10000); // Wait for 10 seconds
digitalWrite(lvdControlPin, LOW); // Disable the LVD
delay(5000); // Wait for 5 seconds
}
LVD does not disconnect the load when the voltage drops:
LVD disconnects prematurely:
LVD overheats during operation:
CTRL pin does not respond to Arduino signals:
Can I use an LVD with a lithium-ion battery?
What happens if the LVD fails?
Can I use the LVD in reverse polarity?