Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
sagar saini
Published © GPL3+

How to Program Arduino and ESP using Mobile device

Arduino IDE is also available in Mobiles, We can program any MCU using this. This supports over 100 type of MCU boards.

BeginnerFull instructions provided1 hour8,808
How to Program Arduino and ESP using Mobile device

Things used in this project

Software apps and online services

EasyEDA
JLCPCB EasyEDA
Arduino IDE
Arduino IDE

Story

Read more

Schematics

Schematics

Code

test code blink

C/C++
// work for both esp and arduino
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(LED_BUILTIN, OUTPUT);
}

// the loop function runs over and over again forever
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

sagar saini
81 projects • 88 followers
I am Sagar Saini an electronic hardware enthusiast
Contact

Comments

Please log in or sign up to comment.