IoT HUB
Published © GPL3+

Program Arduino Pro Mini from Arduino Uno

How to program an Arduino Pro Mini using Arduino Uno without any FTDI Driver or USB-to-Serial USB

BeginnerProtip1 hour86
Program Arduino Pro Mini from Arduino Uno

Things used in this project

Story

Read more

Schematics

Pin Connection

Pin Connection

Code

Simple Blink Code

C/C++
The simple code for blinking light to Pro Mini
/*
 Simple Led Blinking code for testing Arduino Pro Mini

*/

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

void loop() {
  digitalWrite(LED_BUILTIN, HIGH);  // turn the LED on (HIGH is the voltage level)
  delay(1000);                      // wait for a second
  digitalWrite(LED_BUILTIN, LOW);   // turn the LED off by making the voltage LOW
  delay(1000);                      // wait for a second
}

Credits

IoT HUB
4 projects • 2 followers
I’m a student who loves robotics, hacking, creating things with dev boards like ESP32/Arduino, and discovering tricks to simplify tech.

Comments