Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

led_blink

#include<lpc214x.h>
int i,j=0;
int main()
{
while(j!=2)
{
j +=1;
IO0DIR=0xffffffff;
for(i=0;i<=255;i++)
{
IO0SET=i;
IO0CLR=i;
}
}
}

Page 1

You might also like