

The Electrocookie Uno Propboard is a versatile prototyping board designed by ElectroCookie to simplify circuit assembly and experimentation. It is tailored for use with the Arduino Uno, featuring a breadboard-style layout and integrated connections that make it easy to prototype and test electronic circuits. The board is ideal for hobbyists, students, and professionals who need a reliable and reusable platform for rapid prototyping.








The Electrocookie Uno Propboard is designed to complement the Arduino Uno and includes features that enhance usability and flexibility.
The Electrocookie Uno Propboard includes labeled solder pads and connections that align with the Arduino Uno's pinout. Below is a table summarizing the key pin configurations:
| Pin Name | Description |
|---|---|
| VIN | Input voltage pin for external power (7-12V recommended) |
| GND | Ground connection for the circuit |
| 5V | Regulated 5V output from the Arduino Uno |
| 3.3V | Regulated 3.3V output from the Arduino Uno |
| Digital Pins | D0-D13: Digital I/O pins for general-purpose use |
| Analog Pins | A0-A5: Analog input pins for reading sensor data |
| Reset | Reset pin to restart the Arduino Uno |
| Power Rails | Dedicated 5V and GND rails for easy power distribution across the board |
The Electrocookie Uno Propboard is designed for ease of use, even for beginners. Follow the steps below to get started:
Below is an example of how to use the Electrocookie Uno Propboard with an LED and a resistor:
// Example: Blink an LED using the Electrocookie Uno Propboard
// Connect the LED's anode (+) to digital pin 13 and cathode (-) to GND
// Use a 220-ohm resistor in series with the LED to limit current
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
}
By following this documentation, you can effectively use the Electrocookie Uno Propboard to prototype and test your electronic circuits with ease.