#include "LCD.h"
void setup() {
// put your setup code here, to run once:
initializePort();
initializeLED();
char string[50] = {'1','2','3','4','5','\0'};
writeString(string);
}
void loop() {
// put your main code here, to run repeatedly:
}