Yazn Balfas
Published © GPL3+

LED with blynk using Arduino

Control Led using Blynk

BeginnerShowcase (no instructions)1.5 hours7
LED with blynk using Arduino

Story

Read more

Code

Led_Blynk

C/C++
Code on Arduino
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>

#define BLYNK_PRINT Serial
char auth[] = "**********************"; //Token blynk on your email
char ssid[] = "************"; //wifi name
char pswd[] = "*********"; //wifi pass

void setup() {
  Serial.begin (9600);
  Blynk.begin (auth,ssid,pswd);
}
void loop() {
Blynk.run();
}

Credits

Yazn Balfas
7 projects • 2 followers
Contact

Comments

Please log in or sign up to comment.