Okay, the code compiles correctly for me, but I have two versions of the Time library installed on my PC.
Multiple libraries were found for "TimeLib.h"
Used: C:\Users\Pete Knight\Documents\Arduino\libraries\Time
Not used: C:\Users\Pete Knight\Documents\Arduino\libraries\Time-master
Multiple libraries were found for "WiFi.h"
Used: C:\Users\Pete Knight\Documents\Arduino\hardware\espressif\esp32\libraries\WiFi
Not used: C:\Program Files (x86)\Arduino\libraries\WiFi
Using library WiFi at version 1.0 in folder: C:\Users\Pete Knight\Documents\Arduino\hardware\espressif\esp32\libraries\WiFi
Using library Blynk at version 0.6.1 in folder: C:\Users\Pete Knight\Documents\Arduino\libraries\Blynk
Using library Time at version 1.5 in folder: C:\Users\Pete Knight\Documents\Arduino\libraries\Time
"C:\\Users\\Pete Knight\\Documents\\Arduino\\hardware\\espressif\\esp32/tools/xtensa-esp32-elf/bin/xtensa-esp32-elf-size" -A "C:\\Users\\PETEKN~1\\AppData\\Local\\Temp\\arduino_build_921506/sketch_jul06a.ino.elf"
Sketch uses 520858 bytes (39%) of program storage space. Maximum is 1310720 bytes.
Global variables use 38148 bytes (12%) of dynamic memory, leaving 256764 bytes for local variables. Maximum is 294912 bytes.
Your compiler is choosing to use the library that sits here on your system:
As you can see from my compiler output, the one that my compiler is using isn’t called “Time-master”, its simply called “Time” and it’s version 1.5 of the library.
You first of all need to check that you do actually have the correct library installed, and that it’s up to date (v1.5.0 Installed). Do this via Sketch/Include Library/Manage Libraries:
You then need to move the library at C:\Users\steti\Documents\Arduino\libraries\Time-master\
to a place where the Arduino IDE cant see it (renaming it wont work), so move it to your desktop, or delete it entirely.
Re-compiling your code should then work correctly.
Pete.