[solved] DIP204-4 with SPI

Great Work getting this to Work :slight_smile:
But how do you print an integer or long ?
it seams that it only accept Char :frowning:

This code dont work error: invalid conversion from 'long int' to 'const char*'

void loop()
{
long a;
a = millis();
lcd_SetCursor(3,0);
lcd_Print(a);
delay(1000);
}