blynkkk / blynk-library

Blynk library for IoT boards. Works with Arduino, ESP32, ESP8266, Raspberry Pi, Particle, ARM Mbed, etc.
https://blynk.io
MIT License
3.81k stars 1.38k forks source link

ESP8266_Lib.h: No such file or directory #496

Closed varunbk96 closed 3 years ago

varunbk96 commented 3 years ago

ESP8266_Lib.h: No such file or directory Iam getting this error as i included the library also

varunbk96 commented 3 years ago

define BLYNK_PRINT Serial

include

include

// You should get Auth Token in the Blynk App. // Go to the Project Settings (nut icon). char auth[] = "yourAUTH"; // Your WiFi credentials. // Set password to "" for open networks. char ssid[] = "yourSSID"; char pass[] = "yourpassword"; // Hardware Serial on Mega, Leonardo, Micro... //#define EspSerial Serial1 // or Software Serial on Uno, Nano... //#include //SoftwareSerial EspSerial(2, 3); // RX, TX // Your ESP8266 baud rate:

define ESP8266_BAUD 115200

ESP8266 wifi(&Serial); void setup() { // Debug console Serial.begin(9600); delay(10); // Set ESP8266 baud rate Serial.begin(ESP8266_BAUD); delay(10); Blynk.begin(auth, wifi, ssid, pass); } void loop() { Blynk.run(); }

varunbk96 commented 3 years ago

i included this also by extracting and droping it in a library folder--> https://github.com/blynkkk/blynk-library/releases/latest

vshymanskyy commented 3 years ago

https://github.com/blynkkk/blynk-library/issues/128