What is the syntax to add a library that is not listed with Particle?
For example, say I want to add the Queue library
Can it be added directly from GitHub or does it need to be downloaded?
If downloaded, is it referenced as a zip or must it be expanded?
If expanded, does it go in the Particle/community/libraries folder or in the project folder or somewhere else?
Is the “particle library add” command required?
And if so, how does it reference the library - by name, by path?
The reference docs aren’t clear about handling an unlisted library.
go back to Web IDE and paste in to your new cppQueue.h (don’t worry if .h file is not empty just delete all and paste cppQueue.h copied from Github ) -> save.
remove
// This #include statement was automatically added by the Particle IDE.
#include "cppQueue.h"
which is on the top of your app -> save -> veryfy -> enjoy