Hackster is hosting Hackster Holidays, Ep. 7: Livestream & Giveaway Drawing. Watch previous episodes or stream live on Friday!Stream Hackster Holidays, Ep. 7 on Friday!
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 minutes7,023

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
310 projects • 311 followers
Just your average MAKER

Comments