Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

i need help to start programming my PIC

Status
Not open for further replies.

wael_wael

Full Member level 4
Joined
Dec 3, 2005
Messages
221
Helped
5
Reputation
10
Reaction score
2
Trophy points
1,298
Activity points
2,760
Hi every body,

i need start my own project in programming PIC 16f628A, i have the programmer kit, and the PIC. i know that the C language will be used to program the PIC.
i need your help to start my first program. how i cant start?

Best regards
 

Ok
You have the All Baggage you just need to Trigger you start.
If you please tell what programmer and Kit do u have.
try using sample programs.
just program sample programs and see on the Kit Like one Follows.

void main(void)
{
TRISB=0;
PORTB=0;
while(1)
{
PORTB=~PORTB;
Delay_ms(1000);

}
}

this will toggle your PORTB LED's every second.

i hope this could help you.
 

    wael_wael

    Points: 2
    Helpful Answer Positive Rating
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top