Hello!
First off, I work with VS Code and PlatformIO.
To quickly try something out, I connected a small ESP8266 (Wemos D1 Mini) and tested the program. Compile, upload, try it out. It worked.
This is the “platformio.ini” file:
[env:d1_mini]
platform = espressif8266
board = d1_mini
framework = arduino
monitor_speed = 115200
One day later. The following error appears when loading the project:
Resolving d1_mini dependencies…
MissingPackageManifestError: Could not find one of ‘package.json’ manifest files in the package
I became suspicious, and when I tried to compile it (Ctrl + Alt + B), I got another error message:
MissingPackageManifestError: Could not find one of ‘package.json’ manifest files in the package
This is now happening on all 8266 boards
. What happened overnight?
Thanks in advance for any solutions or answers.