IDE ver 1.6.10 LiquidCrystal Library Compile Problems

Please do this:

  • Open the file C:\Users\Nick\Documents\Arduino\libraries\LiquidCrystal\I2CIO.cpp with a text editor.
  • Change line 35 from:
#include <..\Wire\Wire.h>

to:

#include <Wire.h>
  • Save the file.
  • Try compiling again.

The problem is that include gives an absolute path to Wire.h, a very bad idea, and the file is not located in that absolute location. By changing the include you will allow the Arduino IDE or Visual Micro to search a number of different library paths to find the file.