0% found this document useful (0 votes)
16 views3 pages

Important Note: For Schematic

Download as doc, pdf, or txt
Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1/ 3

Important Note

For schematic:

In some of schematics, Connections have been


made using jumpers so as to make the
schematic easier to understand.
For better understanding, refer following figure.

In above figure, 4 LEDs are connected to RA2


RA5 using jumpers. Connections can be made if
names are same like LED1 and LED1 on both
end.

For program:
As we know it is important to configure the port
before using it as input or output.
For better understanding
Consider LED (an output device) is connected
to Pin 0 of PORTC (RC0)
We can configure directly inside void main
TRISC0_bit=0;
Or
We can give it some name in global declaration
like
sbit LED1_direction at TRISC0_bit;
and then inside void main we can use
LED1_direction=0;
So both methods to configure any bit of port
are correct and same.

(Description of various components


used in projects is given in Common
Documentation
folder.
Circuit
diagram and program of project is
contained in its folder. Rest all things

like block diagram, abstract, working,


application students need to do)

You might also like