WAP to Display 'R' in LED Matrix:
#include<lpc21xx.h>
void delay(int a);
int main()
{
PINSEL0=0x000000000;
PINSEL1=0x000000000;
IO0DIR=0xffffffff;
while(1)
{
IO0SET=(4063<<0);
delay(100);
IO0CLR=(4063<<0);
delay(1);
...