The only issue with the library is that this is built for old versions of Arduino and if one to make it work with newest version (Arduino 1.0), then some parts of the code should change. First you need to install the additional library in your Arduino on your computer ( tutorial on how to install). Afterwards one should change the content of LCD4bit_mod.cpp
#include "LCD4Bit_mod.h"
#if (ARDUINO < 100)
extern "C" {
#include //not needed yet
#include //needed for strlen()
#include
#include "WProgram.h"
}
#else
#include
#endif
#if (ARDUINO < 100)
extern "C" {
#include
#include
#include
#include "WProgram.h"
}
#else
#include
#endif
Thanks. I wondered why I ordered at dealextreme when I unpacked the shipped Arduino stuff and could not find any documentation, but there are always safety nets online that make up for cheap services.
ReplyDeleteThe last #include misses the part ;-)