ESP8266: Difference between revisions

From Medien Wiki
mNo edit summary
mNo edit summary
Line 115: Line 115:
}
}
</source>
</source>
== Use as a standalone Microcontroller Board ==
Enter Flash mode (to upload new firmware):
and try to upload the example patch below:
<source lang=c>
/* ESP8266 as an Arduino
*  Wiring:
*  GPIO15 (IO15) to GND
*  CHIP Enable to VCC (on some modules: CH_PD)
*  GPIO0 (IO0) to GND
*/
void setup() {
  Serial.begin(115200);
}
void loop() {
  delay(1000);
  Serial.println("I'm there!!!!!");
}
</source>