Smart Technology
Created January 19, 2018

Control Home Appliances from Smartphone Using NodeMCU and...

Arduino Projects - Raspberry Projects - HomeMade - DIY - Smart Technology - New Features Technology - Open Source Technology

Full instructions provided21
Control Home Appliances from Smartphone Using NodeMCU and...

Things used in this project

Story

Read more

Code

Code snippet #1

Plain text
#define BLYNK_PRINT Serial
#include <esp8266wifi.h>
#include <BlynkSimpleEsp8266.h>
/// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "YourAuthToken";
// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "YourNetworkName";
char pass[] = "YourPassword";
void setup()
{
  // Debug console
  Serial.begin(115200);
  Blynk.begin(auth, ssid, pass);

}
void loop()
{
  Blynk.run();
}

Github file

https://github.com/blynkkk/blynk-library/releases/tag/v0.5.0

Credits

Smart Technology
7 projects • 46 followers
Graduate of a Professional License in Instrumentation and Biomedical Maintenance and a D.U.T in Electrical Engineering and Maintenance.
Contact

Comments

Please log in or sign up to comment.