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.

pic tutorial for newbee

Status
Not open for further replies.

anun

Member level 1
Joined
May 6, 2005
Messages
36
Helped
6
Reputation
12
Reaction score
3
Trophy points
1,288
Location
Philippines
Activity points
1,600
hi,

i am new to pic programing and is clueless about pic... does anybody know or can tell me how to step-by-step program a pic1 16f84? i mean, i have already written the program, the problem is, how to burn the program to the IC.

does anybody have a good tutorial site for newbies?

thanks,
anun
 

Using a PIC involves three steps:

1. Write the software text file(.asm) which contains what you want the PIC to do, which I believe you have already done.

2. Assemble the .asm into a HEX text file using an assembler. This file contains information in step 1 that you must send to the internal of PIC to let it know what to do upon reset. Some PICs can only accept these instructions once but luckily your 16F84 has erasable program memory which means you can change those instructions as you move along to different projects.

3. How would you carry out step 2:

3a. You'll need a hardware device in between computer and PIC which accept data from the computer and physically sending it into the PIC. This is known as a PIC programmer. There are different designs with different advantage and disadvantages.

3b. You'll also need a software program(known as Programming software) running on your computer to read the HEX data file on your harddisk and send it to a port (either USB, serial or parallel) where the programmer(3a) is connected. There are many free and excellent choices like IC-Prog, WinPicPro, WinPic etc......

The following website a good place for tutorial

**broken link removed**

Enjoy your new adventure.
 

    anun

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

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top