Discussion in "8051 Discussion Forum" started by    hitesh19872419    Sep 2, 2010.
Thu Sep 02 2010, 11:32 am
#1
i saw that many of the beginners are facing problems with seven segments so i have made a small c code which will help you to know more about the seven segment multiplexing technique the rar file contains source code and isisi simulation file
 shaikajay_bhargav like this.
Tags multiple 7-segment displaysmutiplexed 7-seg display7-Segment LED display7-seg display example7-seg display code
Thu Sep 02 2010, 11:54 pm
#2
Nice example hitesh

even i want to put up a tutorial for 7-segment display but i am not getting time. always short of it.

I will make this a sticky thread in 8051 Forum

[Topic moved to 8051 Discussion forum]
 romel_emperado like this.
Thu Oct 21 2010, 10:11 am
#3
wow.. thanks for sharing.. i will study this
Thu Jun 02 2011, 06:35 pm
#4
Thanks for the share Hitesh. it looks very helpful but I could not open the proteus file, I am using version 7.1 sp2, how can I open the file, what is the version. would you please help me
Thu Jun 02 2011, 06:45 pm
#5
use higher version than you're currently using


[ Edited Thu Jun 02 2011, 07:02 pm ]
Fri Jun 03 2011, 11:47 am
#6
ok romel thank you I will try install a higher version
Sat Oct 08 2011, 02:38 pm
#7
Thanks for the share Hitesh. it looks very helpful but did have .asm equivalent code
Sat Oct 08 2011, 09:38 pm
#8
@ hengela
can download latest version
http://ifile.it/bsgn3iv/proteus%207.8_SP2.rar
Thu May 24 2012, 06:18 pm
#9
This is simple led blinking program try it out

/*

This project will blink a LED on Port 2 of any 8051 based Microcontroller

You can open this project 'led test.Uv2' in Keil Compiler

Download Keil for C51 MCUs from http://www.keil.com/

Connect a LED in this way:
Anode of LED should go to VCC via a current limiting resistor can be any value beween 470 Ohm to 1K
Cathode of LED should go to any Port 2 pins of MCU
For 40 pin AT89S52 or similar Port 2 is from Pins 21 to 28

470-1K LED
VCC o----/\/\/\----|>---o Any pin on Port 2

*/

sfr P2 = 0xA0;

void delay()
{
int i;
for(i=0;i<15000;i++)
{

}
}

void main()
{
while(1)
{
P2 = 0xFF;
delay();
P2 = 0x00;
delay();
}
}

Get Social

Information

Powered by e107 Forum System

Downloads

Comments

Bobbyerilar
Thu Mar 28 2024, 08:08 am
pb58
Thu Mar 28 2024, 05:54 am
Clarazkafup
Thu Mar 28 2024, 02:24 am
Walterkic
Thu Mar 28 2024, 01:19 am
Davidusawn
Wed Mar 27 2024, 08:30 pm
Richardsop
Tue Mar 26 2024, 10:33 pm
Stevencog
Tue Mar 26 2024, 04:26 pm
Bernardwarge
Tue Mar 26 2024, 11:15 am