Here's the code that's making this error:
#include "Wire.h"
Here's the error:
fatal error: Wire.h: No such file or directory
#include "Wire.h"
^
compilation terminated.
Error compiling.
I also can't include any file from my Arduino\libraries folder. I tried to reinstall the IDE several times in different places and nothing happened. Why is this happening?
EDIT: after some time I discovered that this error occurs in header files only, not in sketches!
#includemacro. Also what version of the IDE are you using? – RSM Jun 28 '16 at 08:55#include "Wire.h"to#include <Wire.h>– Majenko Jun 28 '16 at 13:11