#include "DotMatrix.h"
#define DELAY 2500000
void setup() {
// put your setup code here, to run once:
initializePort();
}
void loop() {
// put your main code here, to run repeatedly:
volatile char flag=DELAY;
display('A',flag);
display('B',flag);
display('1',flag);
display('2',flag);
display('a',flag);
display('q',flag);
display('$',flag);
display('#',flag);
display('p',flag);
display('u',flag);
}