Hello World

The easiest way to start working with ESPcopter with Arduino begins here. You’ll learn how to output print statements. The ESPcopte can use a Serial Monitor for displaying information such as print statements, sensor data, and the like. This is a very powerful tool for debugging long codes. Now for your first code!

Code

 

/*

Blink ESPcopter

By Metehan Emlik

*/

void setup() {

Serial.begin(9600);

} void loop() {

Serial.println(“Hello World!”);

delay(1000);

}