SBRDIYables
Published © LGPL

Working with 2 Arduinos

This may not find any practical application in the real world. But, I believe this will help beginners in understanding the Arduino pins.

BeginnerProtip3,063
Working with 2 Arduinos

Things used in this project

Story

Read more

Schematics

Breadboard Diagram

Make connections as shown in the figure.

Code

Code for Blinking of LED

Arduino
Upload the same code for both the Arduinos
const int LED = 3;

void setup() {
    pinMode (LED, OUTPUT);
}

void loop() {
    digitalWrite (LED, HIGH);
    delay (1000);
    digitalWrite (LED, LOW);
    delay (1000);
}

Credits

SBR
37 projects • 52 followers
Mechanical Engineer
DIYables
0 projects • 88 followers
I would like to invite you to join and add your projects to DIYables platform https://www.hackster.io/diyables

Comments