I downloaded "Old" TelnetSpy Library ID6236 from PlatformIO Library Installation tab

Left pic was from PlatformIO Library Downloads.
Right pic was from GitHub.

It’s all going to happen, but can anyone tell anyone in PlatformIO?
I got hooked…

The author of the library has not increased the version number since 2018, although commits have been done in July 2019. Thus, PlatformIO will not pick up the library changes without a version increase.

Judging from update to get in line with latest Arduino Framework by leojz · Pull Request #10 · yasheena/telnetspy · GitHub the repo seems to be dead. You can however still force PlatformIO to use the latest Github version by declaring

lib_deps = 
   https://github.com/yasheena/telnetspy.git

in the platformio.ini (docs).

1 Like

Hi Max.
Thank you for your information!!
I used lib_deps directive.

Its OK!!!Thank you a lot!

[env:esp8266-ota]
platform = espressif8266
board = esp_wroom_02
board_build.mcu = esp8266
framework = arduino
...
board_build.f_cpu = 80000000L
board_build.f_flash = 40000000L
board_build.flash_mode = qio
build_flags = 
        -DESP8266
upload_protocol = espota
upload_port = esp8266.local
targets = upload
board_build.ldscript = eagle.flash.1m128.ld
lib_deps =     
    https://github.com/yasheena/telnetspy.git
1 Like