The Power Rail (Manufacturer Part ID: POWERRAIL) by Arduino is a conductive path designed to distribute electrical power to various components within a circuit. It typically provides a common voltage level, ensuring that all connected components receive a stable and consistent power supply. Power rails are essential in both simple and complex electronic circuits, serving as the backbone for power distribution.
Parameter | Value |
---|---|
Voltage Rating | 3.3V, 5V, 12V |
Current Rating | Up to 2A |
Power Rating | Up to 24W |
Material | Copper with Tin Plating |
Dimensions | 100mm x 10mm x 1mm |
Operating Temp | -40°C to 85°C |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Positive voltage input (3.3V, 5V, 12V) |
2 | GND | Ground (0V) |
Connecting to a Breadboard:
Powering Components:
Using with Arduino UNO:
No Power to Components:
Overheating:
Voltage Drop:
// Example code to power an LED using the Power Rail and Arduino UNO
const int ledPin = 13; // Pin connected to the 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
}
In this example, the Arduino UNO is connected to the power rail, which distributes power to an LED. The code toggles the LED on and off every second.
This documentation provides a comprehensive overview of the Power Rail component, including its technical specifications, usage instructions, and troubleshooting tips. Whether you are a beginner or an experienced user, this guide will help you effectively utilize the Power Rail in your electronic projects.