To learn how to make circuits the easy way, breadboard is the best option for the beginners, as it is the essential product for prototyping any project. Breadboards are made up of plastic and have small holes which are electronically connected with each other in a specific pattern.

BreadBoard

Breadboards come in multiple sizes and the size depends on the specifications of the project which has to be done using the breadboard. It is recommended that large size is used if the projects include multiple devices and small size for the projects that require less equipment.

Breadboard is also used for testing a circuit and to find any issues in the circuit before the circuit is made on other advanced boards known as Printed Circuit Boards (PCBs). The breadboard consists of metal strips embedded into the plastic body. These stripes are also designed by the computer like the design of circuit boards that are printed by the computers which need soldering to connect the devices.

In other words, a breadboard is also a printed board, but it does not require soldering the devices for connection. The devices are simply connected using the jumper wires. The connections of the breadboard can be explained using the following picture

There are mainly two blocks that are provided in breadboards for making the circuits.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2022/01/echo/breadboard-with-Arduino-1.png" data-lazy- height="689" src="data:image/svg xml,” width=”1152″>

  • Horizontally connected block
  • Vertically connected block

The horizontal connected pins are normally used for supplying power because these pins can be easily accessed on the vertically connected area. There is a block of positive and negative supply on each side of the board highlighted in red so that each block can have its own supply and to avoid large jumper cables to connect the blocks highlighted in green from the supply. These pins are connected in horizontal direction only.

The two blocks are not electrically connected with each other. The vertically connected blocks are highlighted in green in the picture. The pins in each block highlighted in green are connected with each other in the vertical direction whereas these pins are isolated from each other in horizontal direction. Both the blocks can also be connected with each other using jumper cables.

Example of using a breadboard with Arduino

To further illustrate the use of a breadboard an example is given. In this example a simple project of blinking of led is made using a breadboard and an Arduino. The components required for this simple project are :

  • 1 Breadboard
  • 1 LED
  • 1 Arduino Uno
  • 2 Jumper wires
  • 1 Resistor (220 ohms)

A simple code for blinking the LED is written using the digital write function in Arduino and then using the breadboard the led and the resistor is connected to Arduino Uno. The circuit diagram of the project is given:

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2022/01/echo/breadboard-with-Arduino-2.png" data-lazy- height="260" src="data:image/svg xml,” width=”400″>

As we know that the pins in the breadboard are vertically connected to each other so first the LED and resistor are placed on breadboard by making the positive pins both common like this:

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2022/01/echo/breadboard-with-Arduino-3.jpg" data-lazy- height="969" src="data:image/svg xml,” width=”2048″>

After that using the jumper wires one end of the resistor is connected to the pin number 8 of the Arduino and the other in of the LED is connected to the ground pin of the Arduino:

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2022/01/echo/breadboard-with-Arduino-4.jpg" data-lazy- height="969" src="data:image/svg xml,” width=”2048″>

In the above circuit the voltage to turn ON the LED is directly coming from the board, so no external supply is being used, therefore, no need to use horizontally connected pins. The Arduino code for this example is given as:

void setup() {

  pinMode(8, OUTPUT);

}

void loop() {

  digitalWrite(8, HIGH);  

  delay(1000);    


         


  digitalWrite(8, LOW);  


 


  delay(1000);


           

}

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2022/01/echo/breadboard-with-Arduino-5.png" data-lazy- height="504" src="data:image/svg xml,” width=”796″>

Output

<img alt="" data-lazy-src="https://kirelos.com/wp-content/uploads/2022/01/echo/breadboard-with-Arduino-6.gif" height="321" src="data:image/svg xml,” width=”571″>

Conclusion

Breadboard is mostly used by beginners to understand the working of circuits. Similarly, it is also used for prototyping the circuit before transferring it to advanced boards like printed circuit boards. In this write-up the breadboard and the working of the breadboard is explained. To further elaborate a simple project of blinking an LED is made using Arduino.

About the author

<img data-del="avatar" data-lazy-src="https://kirelos.com/wp-content/uploads/2022/01/echo/4BF34E1220604634BB421FC7B96CCC0A-150×150.jpg61f7a3927b15e.jpg" height="112" src="data:image/svg xml,” width=”112″>

Aaliyan Javaid

I am an electrical engineer and a technical blogger. My keen interest in embedded systems has led me to write and share my knowledge about them.