-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can no longer import this library into the Particle ecosystem #11
Comments
How can I change this in de Particle build Cloud IDE? The libraries seem read only. |
I've filed PR for this Please merge and reupload to Particle Library repository |
As a workaround, you can create the files locally and edit them, then remove the library from your project. |
Please update these files (spark-dallas-temperature.h and spark-dallas-temperature.cpp) in the Particle Web IDE. Also, the include statement in line 27 of the spark-dallas-temperature.h file does not work in the Particle WebIDE. It needs to be changed from: |
Bump. Please consider updating this library. |
Is there any update with this? I am trying to run it and am getting the same issue. |
I think this repo got abandoned - try a different library (e.g. |
Particle seem to have updated the way they construct their libraries, which has broken this libraries reference to the OneWire Library.
It's a real quick fix, just changing the reference to read:
#elif defined(SPARK) or defined(STM32F10X_MD)
#include "application.h"
#include <OneWire.h>
#endif
The text was updated successfully, but these errors were encountered: