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.

Some simple projects in 89C51

Status
Not open for further replies.

irfanusman

Newbie level 5
Joined
Oct 31, 2006
Messages
9
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,344
hi
I have just study the microcontroller(89c51) and i have done following things in 89c51
1. toggle LED using microcontroller
2. use the interrupt to control the led
3. use timer to control the brightness of led

now i want do do some basic project plz tell me some projects
regards
 

8051 aduc832

do the simple project, which covers all the basic interface of LCD, ADC,I2C (eprom, RTC), and serial communication.

want anything more, please ask.
read this B;OCK DIAGRAM and start the project. I have completed this and you can come back for any help but you should try this first on your own.
 
want project in 8051

YES, I HAVE GET TUR IDEA & I AM WORKING ON IT can ur tell me more abouts sensors used in it
 

Re: want project in 8051

HI, you can build a simple training KIT in which you can do any exercises about 89C51.
for example 1: disp play 012 on LED2, LED3 and LED4 using interrupt timer0

LJMP MAIN
ORG 000BH
LJMP LED_SCAN
MAIN:
MOV TMOD,#01H, TIMER 0, MODE 1 16 BIT
SETB EA
SETB ET0
SETB TR0
MOV TH0,#HIGH(-2000)
MOV TL0,#LOW(-2000)
SJMP $
LED_SCAN:
MOV P0,#0C0H ; NUMBER 0
CLR P3.2 ; ON LED 2
CALL DELAY
SETB P3.2
MOV P0,#0F9H ; NUMBER 1
CLR P3.3 ; ON LED 3
CALL DELAY
SETB P3.3
MOV P0,#0A4H ; NUMBER 2
CLR P3.4 ; ON LED 4
CALL DELAY
SETB P3.4
RETI ; RETURN MAIN PROGRAM FROM INTERRUPT
;-----------------------------------------------------------------------------
DELAY:
PUSH 07
MOV R7,#200
DJNZ R7,$
POP 07
RET
;------------------------------------------------------------------------------
END
if you can not write program by assembly i can write by C language which is very easy.
good luck to you.
;-----------------------------------
 

Re: want project in 8051

you can use LM35 as temp sensor, and a small LDR as 1 sensor. Build a small project without using any complicated sensor. Connect sensor output to ADC and read the values. Store time and the changed parameter in eeprom or send the output to Hyperterminal using serial comm. or to LCD.
 

want project in 8051

YES,BUT YOU NEED A SENSOR :18B20: TO STUDY MUCH MORE ABOUT IT.
I AM LEARNING ABOUT IT.
 

want project in 8051

try make a linefolower robot, that's use easy programming. just like controlling LED. but a litle bit hard on electronics side he he he he

just like waht ckshivaram said, use LDR or IR sensor. try to find the project over the internet you'll find a lot of linefollower project.

just go to google and put the keyword LINEFOLLOWER ROBOT.

god luck.
 

Re: want project in 8051

irfanusman said:
hi
I have just study the microcontroller(89c51) and i have done following things in 89c51
1. toggle LED using microcontroller
2. use the interrupt to control the led
3. use timer to control the brightness of led

now i want do do some basic project plz tell me some projects
regards


If you want to do any ADC/DAC SPI programming ..try ADuC832.
It is nothing but a 8052 core architecture uC+ ADC/DAC options. Also It is very easy to program this uC. You will need only a serial cable+ a free software.
All the best...!!

Regards,
Shiva
 

want project in 8051

if any full project with pcb and source code want please contact 9886357761
 

Re: want project in 8051

Here is project Led moving message display
complete project proteus circuit and c source code.
 

Re: want project in 8051

Pls refer mazdi & mazdi book for 8051,
refer electronics circuit
 

Re: want project in 8051

Swaminathanr82 said:
Pls refer mazdi & mazdi book for 8051,
refer electronics circuit

for embedded project why one needs to refer electronics circuit, if people are from some other background then how to understand electronics. Its purely embedded system project where he needs idea. Mazidi does not give any projects, and what is the use of executing which he has already given by just changing the port pins.
Trying to do something of our own gives more confidence.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top