We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I use the simple blink example on an nano and add the line #include <SD.h>. The compiler gives the error:
.pioenvs\autogen_nanoatmega328\SD_ID79\utility\Sd2Card.cpp:21:21: fatal error: Energia.h: No such file or directory
Shouldn't it use something like arduino.h?
The text was updated successfully, but these errors were encountered:
This library doesn't support framework arduino. In other words, this is a port of this library https://github.com/adafruit/SD
arduino
I will add support for valid Arduino SD library as soon as possible.
Current solution: just create in src dir file named Energia.h with the next contents:
src
Energia.h
#include <Arduino.h>
Sorry, something went wrong.
I've just added new library which is compatible with Arduino framework. Please use it http://platformio.org/#!/lib/show/161/SD
Version bump to 1.3.0 (issues #127 #128 #130 #131 #133 #136 #137 #138 #…
5a0d57f
…139 #140)
ivankravets
No branches or pull requests
I use the simple blink example on an nano and add the line #include <SD.h>. The compiler gives the error:
.pioenvs\autogen_nanoatmega328\SD_ID79\utility\Sd2Card.cpp:21:21: fatal error: Energia.h: No such file or directory
Shouldn't it use something like arduino.h?
The text was updated successfully, but these errors were encountered: