This causes platformio to quietly ignore the library, so even it's installed and the "platformio lib list" command confirms that it's there, you still get "simpleDSTadjust.h not found" errors during the compile.
Adding simpleDSTadjust to the local lib directory is the same ("simpleDSTadjust.h not found").
Eventually tracked down by removing files one by one from the library directory until platformio could "see" it again. Phew!
Note that the "url" line has a typo ("DSP" instead of "DST"), but that's not the cause of the issue.
This one took me quite some time to pin down.
There's a missing comma after the closing brace of "repository" in the library.json file.
"repository": { "type": "git", "url": "https://github.com/neptune2/simpleDSPadjust" } <<<<<<<<<<< HERE <<<<<<<<<<<<<<<<<< "version": "1.1.0"
This causes platformio to quietly ignore the library, so even it's installed and the "platformio lib list" command confirms that it's there, you still get "simpleDSTadjust.h not found" errors during the compile.
Adding simpleDSTadjust to the local lib directory is the same ("simpleDSTadjust.h not found").
Eventually tracked down by removing files one by one from the library directory until platformio could "see" it again. Phew!
Note that the "url" line has a typo ("DSP" instead of "DST"), but that's not the cause of the issue.