Hello everyone,
I've gone brain dead and its late :(,
I am using my LCD as an interface for my project where I want to key in a temperaure using a 16 key membrane pad,
so far this is what I've got:
void TemperatureScreen()
{
char Temp1 = keypad.getKey();
lcd.setCursor(0,0);
lcd.print("Temperature?");
lcd.setCursor(2,1);
lcd.print((char)223);
lcd.setCursor(3,1);
lcd.print("C");
lcd.setCursor(0,1);
if (int(Temp1) != 0)
{
lcd.print(Temp1);
}
I have tried many different ways to do the next step however I can't do it, I want to then set lcd.setCursor(1,1); and follow the same:
if (int(Temp2) != 0)
{
lcd.print(Temp2);
for my next value. However I want to be able to refer back to these values later on in the program how would I do this?
Thanks in advance