Error with library

I have a problem becase it always shows an error with this library ESP8266_Lib.h, and i can’t add Blynk_Release_v1.3.2 because it dont have correct library
Can someone help me?

It would probably help if you explained what hardware you are using, what IDE you are using, and what method you are trying to use to install the Blynk C++ library version 1.3.2

Proper details of the error messages you are receiving when you try install the Blynk library would also be useful.

It might also help if you said which version of the ESP8266 core you have installed in your IDE.

Pete.

I have ESP8266 Boards 3.1.2, I use IDE 1.8.19 and ESP-01S I tried installing it from .zip and I have this error

Arduino:1.8.19 (Windows Store 1.8.57.0) (Windows 10), Płytka:"Arduino Mega or Mega 2560, ATmega2560 (Mega 2560)"





















Znaleziono wiele bibliotek w "BlynkApiArduino.h"

In file included from C:\Users\tomas\OneDrive\Pulpit\sketch_apr13b\sketch_apr13b.ino:36:0:

Wykorzystane: C:\Users\tomas\OneDrive\Dokumenty\Arduino\libraries\blynk-library-1.3.2

C:\Users\tomas\OneDrive\Dokumenty\Arduino\libraries\Blynk_Teensy\src/BlynkSimpleShieldEsp8266_Teensy.h:34:2: error: #error This code is intended to run on the Teensy platform! Please check your Tools->Board setting.

Niewykorzystane: C:\Users\tomas\OneDrive\Dokumenty\Arduino\libraries\blynk-library-0.5.4

 #error This code is intended to run on the Teensy platform! Please check your Tools->Board setting.

  ^~~~~

In file included from C:\Users\tomas\OneDrive\Pulpit\sketch_apr13b\sketch_apr13b.ino:36:0:

C:\Users\tomas\OneDrive\Dokumenty\Arduino\libraries\Blynk_Teensy\src/BlynkSimpleShieldEsp8266_Teensy.h:51:10: fatal error: ESP8266_Lib.h: No such file or directory

 #include <ESP8266_Lib.h>

          ^~~~~~~~~~~~~~~

compilation terminated.

exit status 1

Błąd kompilacji dla płytki Arduino Mega or Mega 2560.



Ten raport powinien zawierać więcej informacji jeśli w 
File -> Preferencje zostanie włączona opcja "Pokaż
szczegółowe informacje podczas kompilacji"

@Roko Please edit your post, using the pencil icon at the bottom, and add triple backticks at the beginning and end of your compiler error message so that it displays correctly.
Triple backticks look like this:
```

Copy and paste these if you can’t find the correct symbol on your keyboard.

I’d also suggest that you post the code you are trying to compile, also with triple backticks at the beginning and end.

Pete.

I didn’t put anything else because of this error

You’ve replaced your incorrectly formatted error with your correctly formatted code.

We need the error, AND your code, both correctly formatted.

Pete.

Sorry for this, i didn’t end the code because of this error

Arduino:1.8.19 (Windows Store 1.8.57.0) (Windows 10), Płytka:"Arduino Mega or Mega 2560, ATmega2560 (Mega 2560)"
Znaleziono wiele bibliotek w "BlynkApiArduino.h"

In file included from C:\Users\tomas\OneDrive\Pulpit\sketch_apr13b\sketch_apr13b.ino:36:0:

Wykorzystane: C:\Users\tomas\OneDrive\Dokumenty\Arduino\libraries\blynk-library-1.3.2

C:\Users\tomas\OneDrive\Dokumenty\Arduino\libraries\Blynk_Teensy\src/BlynkSimpleShieldEsp8266_Teensy.h:34:2: error: #error This code is intended to run on the Teensy platform! Please check your Tools->Board setting.

Niewykorzystane: C:\Users\tomas\OneDrive\Dokumenty\Arduino\libraries\blynk-library-0.5.4

 #error This code is intended to run on the Teensy platform! Please check your Tools->Board setting.

  ^~~~~

In file included from C:\Users\tomas\OneDrive\Pulpit\sketch_apr13b\sketch_apr13b.ino:36:0:

C:\Users\tomas\OneDrive\Dokumenty\Arduino\libraries\Blynk_Teensy\src/BlynkSimpleShieldEsp8266_Teensy.h:51:10: fatal error: ESP8266_Lib.h: No such file or directory

 #include <ESP8266_Lib.h>

          ^~~~~~~~~~~~~~~

compilation terminated.

exit status 1

Błąd kompilacji dla płytki Arduino Mega or Mega 2560.



Ten raport powinien zawierać więcej informacji jeśli w 
File -> Preferencje zostanie włączona opcja "Pokaż
szczegółowe informacje podczas kompilacji"



const int relayPinModule1 = 53;
const int relayPinModule2 = 52;
const int relayPinModule3 = 51;
const int relayPinModule4 = 50;
const int relayPinModule5 = 49;
const int relayPinModule6 = 48;
const int relayPinModule7 = 47;
const int relayPinModule8 = 46;
/*************************************************************
  WARNING!
    It's very tricky to get it working. Please read this article:
    http://help.blynk.cc/hardware-and-libraries/arduino/esp8266-with-at-firmware

  This example shows how value can be pushed from Arduino to
  the Blynk App.

  NOTE:
  BlynkTimer provides SimpleTimer functionality:
    http://playground.arduino.cc/Code/SimpleTimer

  App dashboard setup:
    Value Display widget attached to Virtual Pin V5
 *************************************************************/

/* Fill-in information from Blynk Device Info here */
#define BLYNK_TEMPLATE_ID           "TMP***"
#define BLYNK_TEMPLATE_NAME         "Dom"
#define BLYNK_AUTH_TOKEN            "DEU***"

/* Comment this out to disable prints and save space */
#define BLYNK_PRINT Serial

#include <ESP8266_Lib.h>
#include <BlynkSimpleShieldEsp8266.h>

// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "***";
char pass[] = "***";

// Hardware Serial on Mega, Leonardo, Micro...
#define EspSerial Serial1

// or Software Serial on Uno, Nano...
//#include <SoftwareSerial.h>

#define ESP8266_BAUD 38400

ESP8266 wifi(&EspSerial);

BlynkTimer timer;

// This function sends Arduino's up time every second to Virtual Pin (5).
// In the app, Widget's reading frequency should be set to PUSH. This means
// that you define how often to send data to Blynk App.
void myTimerEvent()
{
  // You can send any value at any time.
  // Please don't send more that 10 values per second.
  Blynk.virtualWrite(V5, millis() / 1000);
}

void setup()
{
  // Debug console
  Serial.begin(115200);

  // Set ESP8266 baud rate
  EspSerial.begin(ESP8266_BAUD);
  delay(10);

  Blynk.begin(BLYNK_AUTH_TOKEN, wifi, ssid, pass);
  timer.setInterval(1000L, myTimerEvent);
  pinMode(relayPinModule1, OUTPUT);
  pinMode(relayPinModule2, OUTPUT);
  pinMode(relayPinModule3, OUTPUT);
  pinMode(relayPinModule4, OUTPUT);
  pinMode(relayPinModule5, OUTPUT);
  pinMode(relayPinModule6, OUTPUT);
  pinMode(relayPinModule7, OUTPUT);
  pinMode(relayPinModule8, OUTPUT);
}

void loop()
{
  Blynk.run();
  timer.run(); // Initiates BlynkTimer
   digitalWrite(relayPinModule1, HIGH);
  delay(1000);
  Serial.println("1 ON");
  digitalWrite(relayPinModule2, HIGH);
  delay(1000);
  Serial.println("2 ON");
  digitalWrite(relayPinModule3, HIGH);
  delay(1000);
  Serial.println("3 ON");
  digitalWrite(relayPinModule4, HIGH);
  delay(1000);
  Serial.println("4 ON");
  digitalWrite(relayPinModule5, HIGH);
  delay(1000);
  Serial.println("5 ON");
  digitalWrite(relayPinModule6, HIGH);
  delay(1000);
  Serial.println("6 ON");
  digitalWrite(relayPinModule7, HIGH);
  delay(1000);
  Serial.println("7 ON");
  digitalWrite(relayPinModule8, HIGH);
  delay(1000);
  Serial.println("8 ON");
  delay(2000);

  digitalWrite(relayPinModule1, LOW);
  delay(1000);
  Serial.println("1 OFF");
  digitalWrite(relayPinModule2, LOW);
  delay(1000);
  Serial.println("2 OFF");
  digitalWrite(relayPinModule3, LOW);
  delay(1000);
  Serial.println("3 OFF");
  digitalWrite(relayPinModule4, LOW);
  delay(1000);
  Serial.println("4 OFF");
  digitalWrite(relayPinModule5, LOW);
  delay(1000);
  Serial.println("5 OFF");
  digitalWrite(relayPinModule6, LOW);
  delay(1000);
  Serial.println("6 OFF");
  digitalWrite(relayPinModule7, LOW);
  delay(1000);
  Serial.println("7 OFF");
  digitalWrite(relayPinModule8, LOW);
  delay(1000);
  Serial.println("8 OFF");
  delay(2500);
}

You need to delete this library…

C:\Users\tomas\OneDrive\Dokumenty\Arduino\libraries\Blynk_Teensy

You also need to read this…

When I asked you…

You didn’t mention anything about an Arduino.

It would help if you properly explained what hardware you are using.

Pete.

I use Arduino Mega2560 in IDE 1.8.19

You’ve said that you are using an ESP-01S
You’ve also said in your latest message that you are using an Arduino Mega2560.

It would really help if you’d provided all of this information on one place, without having to go from post to post to piece together data.

Pete.

Sorry for this, but I’m new in Blynk

I tried everything and I still can’t add the library to Arduino IDE because it;s always showing that it don’t have right library in file
I’m dowlanded it from github, even the older versions

You should be installing it from the Library Manager.
Sketch > Include Library > Manage Libraries > search for “Blynk” and find the 1.3.2 version

Pete.

I have very little experience with Arduino , GitHub etc. Yet , in a small period of time, what I understood is GitHub may have libraries written specifically for certain purpose and logic and may not be adaptable though the name could be same.

some of those programmers create their own header files or modify the existing for their specific use. Just read the header files from different source having the same name and see how they are different.

as peteKnight adviced, install that libraries from Manage Libraries in Arduino and everything failes, seek GitHUb. It is great place for ideas and learning. I have to modify / correct seveto make it work properly.