Add the following snippet to your HTML:
An assignment for my school project
Read up about this project on
controlling led with blynk
#include <ESP8266WiFi.h> #include <BlynkSimpleEsp8266.h> #define BLYNK_PRINT Serial char auth [] = "Token"; char ssid [] = "ssid"; char pswd [] = "pswd"; void setup() { Serial.begin (9600); Blynk.begin (auth,ssid,pswd); } void loop() { Blynk.run (); }
Comments