In this instructable, I will show you how you can connect to ESP 8266 Node MCU to Blynk app and how you can easily implement controlling ESP8266 Node MCU from Blynk for IOT application. Firstly I tried with other normal ESP2866 modules but that doesn’t work for me. Finally I ordered Node mcu v1.0 from amazon in 7$(420 INR).
Here is the link : http://www.amazon.in/ESP8266-NodeMcu-WiFi-Develop...
Advantage of using wifi module over other network protocols is that you can control and monitor through anywhere in the world.
Go to File and then preferences. Add http://arduino.esp8266.com/stable/package_esp8266c... into Additional Board Manager URLs field.
Go to tools and then boards and then click on board manager and search ESP8266 in search bar and click on install.
As next step we can check our board by uploading some sample code.
Blink LED: Firstly we can upload blink led code from the examples. Go to File then Examples then drop down and click on esp8266 then click on blink. Compile and upload that code. After uploading on Board LED should blink.
Hello Server: Now we can try connecting to our wifi using esp8266. For that go to file examples and then ESP8266 Web server then hello server. Compile and upload that code.
Don't forget to Change SSID with your wifi name and password with your wifi password.
After uploading also check arduino's serial terminal. On serial terminal it should show connected to wifi network.
Blynk is a Platform with iOS and Android apps to control Arduino, Raspberry Pi and the likes over the Internet.
It's a digital dashboard where you can build a graphic interface for your project by simply dragging and dropping widgets. It's really simple to set everything up and you'll start tinkering in less than 5 mins. Blynk is not tied to some specific board or shield. Instead, it's supporting hardware of your choice. Whether your Arduino or Raspberry Pi is linked to the Internet over Wi-Fi, Ethernet or this new ESP8266 chip, Blynk will get you online and ready for the Internet Of Your Things.
Here is the link : https://github.com/blynkkk/blynk-library/releases/...
char auth[] = "";
Connecting Led to NodeMcu:
Hope you enjoy this instructable