hi could someone have a look at this code and tell me why in getting this error i have tried adding <> and "" but still same error
#include &lt;LiquidCrystal.h&gt;
//#include &lt;LCDKeypad.h&gt;
LiquidCrystal lcd( 8, 9, 4, 5, 6, 7 ); //Pins used by LCD
// Globals
int adc_key_val[5] ={50, 200, 400, 600, 800 }; // These are the values returned by the adc for different button presses
int NUM_KEYS = 5;
int adc_key_in;
int key=-1;
int oldkey=-1;
int jog_speed;
int rail_direction = 0;
//Pins that will be used to control the rail and the camera
int dir_pin = 11; // 10 clashes with backlight pin! Solution is probably to move camer_pin to another output..
int drive_pin = 12;
int enable_pin = 13;
int camera_pin = 15;
int flash_pin = 16;
int number_photos =0;
int distance = 0;
int delay_time = 0;
int k = 0;
int keep[4] ={0,0,0,0}; // Only really need four members to array because not using 0th member!
//
//
// This runs once and sets up the display, signs on, gives basic info etc.
//
//
void setup()
{
i could only post part of it but its the #include &lt;LiquidCrystal.h&gt; if i delete the & bits the compiler says i have a stray # can anyone help please