Electro BOY
Published © GPL3+

ESP8266 Programming Shield is Insane

This is an amazing approach to program these small power microcontroller without spending a lot of money on development shields.

IntermediateFull instructions provided2 hours1,000
ESP8266 Programming Shield is Insane

Things used in this project

Hardware components

ESP8266 ESP-12E
Espressif ESP8266 ESP-12E
×1

Software apps and online services

EasyEDA
JLCPCB EasyEDA
Arduino IDE
Arduino IDE

Hand tools and fabrication machines

Solder Paste, Rework
Solder Paste, Rework
Soldering Station Power Supply, For Weller WX Soldering System
Soldering Station Power Supply, For Weller WX Soldering System

Story

Read more

Custom parts and enclosures

Gerber files Programmer

Gerber files ESP12E shield

Schematics

Circuit PDF

Code

Arduino test code

Arduino
// the setup function runs once when you press reset or power the board
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

Electro BOY

Electro BOY

57 projects • 51 followers
Electronics is my passion. I am not professional, Always learning something new. I am good at soldering, designing pcb, Arduino programing.

Comments