0% found this document useful (0 votes)
20 views

New Text Document

The code defines variables and ports, sets up a string, and uses for loops with delays to light up LEDs spelling out a message on ports B and C.

Uploaded by

SivaRaman
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
20 views

New Text Document

The code defines variables and ports, sets up a string, and uses for loops with delays to light up LEDs spelling out a message on ports B and C.

Uploaded by

SivaRaman
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

void main()

{
unsigned int i;
TRISB=TRISC0=TRISC1=TRISC2=0;
char a =(0x8A);
char *s ="WELCOME TO VACT";
while(1) {
for(i=0;i<15000;i++);
char a = 0x18;
for(i=0;i<15000;i++);

}
}

You might also like