Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
Hackster is hosting Impact Spotlights: Industrial Automation. Watch the stream live on Thursday!Hackster is hosting Impact Spotlights: Industrial Automation. Stream on Thursday!
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,059
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
Contact
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
Contact

Comments

Please log in or sign up to comment.