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

Micro LR 5

The document summarizes an experiment to familiarize students with the ATMEL 8051 microcontroller, the RIMS trainer kit, and the Keil μVision and Proteus software. It describes a task to write code in Keil μVision to continuously toggle an LED on and off using the 8051 and verify the results in Proteus. It concludes that μVision provides an integrated development environment for 8051 projects and that the 8051 was one of the earliest popular microcontrollers introduced in 1981.

Uploaded by

Umar Mustafa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views3 pages

Micro LR 5

The document summarizes an experiment to familiarize students with the ATMEL 8051 microcontroller, the RIMS trainer kit, and the Keil μVision and Proteus software. It describes a task to write code in Keil μVision to continuously toggle an LED on and off using the 8051 and verify the results in Proteus. It concludes that μVision provides an integrated development environment for 8051 projects and that the 8051 was one of the earliest popular microcontrollers introduced in 1981.

Uploaded by

Umar Mustafa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

AIR UNIVERSITY

DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING

EXPERIMENT NO 05

Lab Title: Introduction to Microcontroller 8051, Keil μVision, and Proteus


Student Name: Umar Mustafa Reg. No: 200365
Objective: Familiarize students with ATMEL 8051 IC and RIMS trainer kit .
Familiarization with Keil μVision and Proteus software .

LAB ASSESSMENT:

Excellent Good Average Satisfactory Unsatisfactory


Attributes
(5) (4) (3) (2) (1)
Ability to Conduct
Experiment
Ability to assimilate the
results
Effective use of lab
equipment and follows
the lab safety rules

Total Marks: Obtained Marks:

LAB REPORT ASSESSMENT:


Excellent Good Average Satisfactory Unsatisfactory
Attributes
(5) (4) (3) (2) (1)

Data presentation

Experimental results

Conclusion

Total Marks: Obtained Marks:

Date: Signature:

2
Experiment 05
Lab Tasks:
Task1:
Write a code to continuously turn an LED on and off in Keil μVision. Burn
this code on 8051 microcontroller chip and obtain the results. Verify the
results in Proteus.
Code:
org 00h
mov r3,#008h
main:
mov p2,#000h
lcall delay
mov p2,#0ffh
lcall delay
djnz r3,main

delay:
mov r6,#255
dl1:
mov r7,#255
djnz r7,$
djnz r6,dl1
ret

end

Schematics:

3
Conclusion:
 The µVision IDE combines project management, run-time environment, build facilities,
source code editing, and program debugging in a single powerful environment. µVision
is easy-to-use and accelerates your embedded software development.
 8051 is one of the first most popular microcontroller also known as MCS-51. Intel
introduced it in the year 1981.

You might also like