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 hour6,973
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

sagar saini

73 projects • 69 followers
I am Sagar Saini an electronic hardware enthusiast

Comments