#define BLYNK_PRINT Serial // Comment this out to disable prints and save space
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "de629c47703348cc9caf5457e0fc1bba";
// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "UPC3A2DB5E5Ghrz";
char pass[] = "censored";
void setup()
{
Serial.begin(9600);
Blynk.begin(auth, ssid, pass);
}
void loop()
{
Blynk.run();
}
Hello, i need Help with my Project. Until trying to compile my code, an error occurents. The IDE of arduino does not find the library “BlynkSimpleEsp8266.h”. i dont have problems including the other library. Whats the Problem? Or where is the download?
Maybe im just dump… tell me…
dear