I have just started learning about the Arduino and have bought an LCD shield off ebay. The card comes with 6 push buttons. There is an include code posted on the ebay site. I have no idea where and how to use this include. It took me 3 hours of Googling to find out why this shield wouldn't work. It has different pin out then any of the tutorials. (8, 9, 4, 5, 6, 7) . I was unable to post the picture of the LCD sheild being this is my first post. Maybe I can in a reply.Thanks for any help Carl
#include <LCD4Bit_mod.h>
LCD4Bit_mod lcd = LCD4Bit_mod(2);
char GP2D12;
char a,b;
char str1[]="Renge:";
char str2[]=" Renge Over ";
char str3[]="cm";
void setup()
{
lcd.init();
lcd.clear();
lcd.printIn("GP2D12 testing...");
}
void loop()
{
GP2D12=read_gp2d12_range(1);
if(GP2D12>80||GP2D12<10)
{
lcd.cursorTo(2,0);
lcd.printIn(str2);
}
else
{
a=0x30+GP2D12/10;
b=0x30+GP2D12%10;
lcd.cursorTo(2, 3);
lcd.printIn(str1);
lcd.print(a);
lcd.print(b);
lcd.printIn(str3);
}
delay(50);
}
float read_gp2d12_range(byte pin)
{
int tmp;
tmp = analogRead(pin);
if (tmp < 3)return -1;
return (6787.0 /((float)tmp - 3.0)) - 4.0;
}