#include <LiquidCrystal.h>
LiquidCrystal My_LCD(13, 12, 14, 27, 26,25);
void setup() {
// Initialize The LCD. Parameters: [ Columns, Rows ]
My_LCD.begin(16, 2);
My_LCD.clear();
My_LCD.setCursor(0, 0);
}
void loop() {
My_LCD.print("FDP_NSDC");
}