Arnov Sharma
Published © MIT

ESP12F Standalone Circuit!

Learn how to Implement ESP12F esp8266 based module in your PCB projects (ESP12F minimal setup and Its Programming)

IntermediateFull instructions provided30 minutes8,553

Things used in this project

Story

Read more

Schematics

sch

Code

code

C/C++
void setup() {
  pinMode(2, OUTPUT);
}


void loop() {
  digitalWrite(2, HIGH);  
  delay(1000);                      
  digitalWrite(2, LOW);   
  delay(1000);                       
}

Credits

Arnov Sharma
347 projects • 357 followers
I'm Arnov. I build, design, and experiment with tech—3D printing, PCB design, and retro consoles are my jam.

Comments