I am new at this and need help. When I use the TELEMATICS LCD SHIELD V1.0 and sample sketch, the println only shows the 1st character. What is the fix for this?? The code is below.
#include <Arduino.h>
#include <MultiLCD.h>
#include <SPI.h>
LCD_R61581 lcd;
void setup(){
lcd.begin();
lcd.setFontSize(FONT_SIZE_MEDIUM); //set font size
lcd.println();
lcd.println();
lcd.println("DFRobot!!!");
lcd.println("TELEMATICS LCD SHIELD V1.0");
lcd.println();
lcd.setColor(RGB16_WHITE);
}