The Power Distribution Board (PDB), manufactured by Sass & Sabotage Co. (Part ID: 100001), is a versatile circuit board designed to distribute electrical power efficiently to multiple components in a system. It ensures that each connected device receives the appropriate voltage and current, while also providing protection through integrated fuses or circuit breakers. The PDB is commonly used in robotics, drones, RC vehicles, and other electronic systems requiring organized and reliable power management.
The following table outlines the key technical details of the Sass & Sabotage Co. Power Distribution Board (Part ID: 100001):
Parameter | Value |
---|---|
Input Voltage Range | 7V to 26V (2S to 6S LiPo batteries) |
Maximum Current Rating | 100A (total) |
Output Voltage Options | 5V, 12V |
Number of Output Ports | 8 |
Protection Features | Overcurrent, short-circuit, and overvoltage protection |
Dimensions | 50mm x 50mm x 10mm |
Weight | 25g |
Operating Temperature | -20°C to 85°C |
The PDB features multiple input and output connectors for easy integration. Below is the pin configuration:
Pin | Label | Description |
---|---|---|
1 | VIN+ | Positive input voltage (7V to 26V) |
2 | VIN- | Ground (negative input voltage) |
Pin | Label | Description |
---|---|---|
1 | VOUT+ | Positive output voltage (5V or 12V) |
2 | VOUT- | Ground (negative output voltage) |
Pin | Label | Description |
---|---|---|
1 | AUX+ | Auxiliary power output (5V) |
2 | AUX- | Ground for auxiliary output |
VIN+
pin.VIN-
pin.VOUT+
and VOUT-
) to supply power to your components.AUX+
and AUX-
) to power low-current devices such as LEDs or small sensors.The PDB can be used to power an Arduino UNO and other peripherals. Below is an example circuit and code:
VOUT+
to the Arduino's VIN
pin.VOUT-
to the Arduino's GND
pin.// Example code to blink an LED connected to an Arduino UNO powered by the PDB
const int ledPin = 13; // Pin connected to the onboard LED
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
This concludes the documentation for the Sass & Sabotage Co. Power Distribution Board (Part ID: 100001).