I added FastLED library to my project but the IDE does not find the file … why?
//This #include statement was automatically added by the Particle IDE.
#include <FastLED.h>
Every time I compile I get..
src/ledplo.cpp:2:21: fatal error: FastLED.h: No such file or directory
#line 1
I tried also
#include <FastLED/FastLED.h>
#include "FastLED.h"
#include "FastLED/FastLED.h"
@murmsk, you can create code blocks by placing triple backticks ``` before and after the code block. Place a blank line before and after code blocks to make the raw formatting easier to read.
// This #include statement was automatically added by the Particle IDE.
#include <spark-dallas-temperature.h>
// This #include statement was automatically added by the Particle IDE.
#include <OneWire.h>
void setup() {
}
void loop() {
}
@murmsk, I just confirmed the error and I’m not sure why this is cropping up now. @rickkas7, any thoughts? I test compiled on the IDE with various system firmware versions with the same results.