Sarful Hassan
Published © MIT

Installing the Arduino IDE for the ESP8266 | IoT Tutorial

Today I show Installing the Arduino IDE for the ESP8266 Step by step complete Process. Fast you have to need Download Arduino software from

BeginnerProtip1 hour276
Installing the Arduino IDE for the ESP8266 | IoT Tutorial

Things used in this project

Hardware components

NodeMCU ESP8266 Breakout Board
NodeMCU ESP8266 Breakout Board
×1

Story

Read more

Schematics

Installing the Arduino IDE for the ESP8266 | IoT Tutorial

Code

Code snippet #1

Plain text
// Import required libraries
#include <ESP8266WiFi.h>
// WiFi parameters
const char* ssid = "Mechatronics";
const char* password = "Password";
void setup(void)
{
// Start Serial
Serial.begin(115200);
// Connect to WiFi
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
 delay(500);
Serial.print(".");
 }
Serial.println("");
Serial.println("WiFi connected");
// Print the IP address
Serial.println(WiFi.localIP());
}
void loop() {
}

Credits

Sarful Hassan

Sarful Hassan

9 projects • 1 follower
I AM NOT US” Our aim is to present technology to the world in a simple and beautiful way , Our main focus will be on Mechatronics

Comments