I have been writting some code for my word clock. All was fine until last night, when I started getting errors relating to the libraries and their presence or otherwise. The clock is a long strip of neo pixels. I have included the neopixel library. I have had this code working for some days but then it just stopped and started giving me the followinf error,
word_clock_2.cpp:14:31: fatal error: neopixel/neopixel.h: No such file or directory
'#include "neopixel/neopixel.h"
^
compilation terminated.
make: *** [word_clock_2.o] Error 1
The first bit of my code is as follows,
'#include "application.h"
//#include "spark_disable_wlan.h" (for faster local debugging only)
'#include "neopixel/neopixel.h"
// IMPORTANT: Set pixel COUNT, PIN and TYPE
'#define PIXEL_PIN D2
'#define PIXEL_COUNT 107
'#define PIXEL_TYPE WS2812B
Any ideas what is going on?
I thought I had solved it last night by cutting the exact same code from this app and putting it into a newly created app. This worked but only for a short time.
Any ideas?
Any help would be much appreciated
Julian