#include "LCD.h"
void setup() {
// put your setup code here, to run once:
initializePort();
initializeLED();
char string[] = "To Ecen Academy";
int size = sizeof(string) / sizeof(string[0]);
writeString(string, size - 2);
}
void loop() {
// put your main code here, to run repeatedly:
}