

The Electrocookie Uno Propboard is a versatile prototyping board designed specifically for use with the Arduino Uno. It features a breadboard-style layout, providing easy access to power and I/O pins, making it ideal for rapid development and testing of electronic projects. This board simplifies prototyping by integrating a solderable area, power rails, and labeled pin headers, ensuring a seamless experience for both beginners and experienced developers.








The Electrocookie Uno Propboard is designed to complement the Arduino Uno and offers the following features:
The Electrocookie Uno Propboard provides labeled pin headers that correspond to the Arduino Uno's I/O pins. Below is a table describing the pin layout:
| Pin Header | Description |
|---|---|
| GND | Ground connection for the circuit |
| 5V | 5V power output from the Arduino Uno |
| 3.3V | 3.3V power output from the Arduino Uno |
| VIN | Input voltage supplied to the Arduino Uno (via barrel jack or VIN pin) |
| Digital Pins | D0–D13: Digital I/O pins for general-purpose input/output |
| Analog Pins | A0–A5: Analog input pins for reading sensor data |
| Power Rails | Dedicated rows for distributing power (GND, 5V, and 3.3V) |
| Reset | Reset pin for manually resetting the Arduino Uno |
Below is an example of how to connect an LED to the Electrocookie Uno Propboard and control it using an Arduino Uno:
// This code blinks an LED connected to pin D13 on the Electrocookie Uno Propboard.
void setup() {
pinMode(13, OUTPUT); // Set pin D13 as an output
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
Problem: The LED does not light up.
Problem: Arduino Uno is not powering the Propboard.
Problem: Components are not receiving power.
Problem: Difficulty in soldering components.
Q: Can I reuse the Propboard after soldering components?
A: While the Propboard is designed for permanent circuits, you can desolder components if needed. However, repeated soldering and desoldering may damage the board.
Q: Is the Propboard compatible with other Arduino boards?
A: The Propboard is specifically designed for the Arduino Uno footprint. It may not align perfectly with other Arduino models.
Q: Can I use surface-mount components on the Propboard?
A: The Propboard is primarily designed for through-hole components. However, with careful soldering, you can use surface-mount components in the prototyping area.
Q: Does the Propboard include components like resistors or LEDs?
A: No, the Propboard is a bare prototyping board. You will need to supply your own components.
By following this documentation, you can effectively use the Electrocookie Uno Propboard to prototype and build your electronic projects with ease!