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.

89S52 and LED 8x8 Matrix

Status
Not open for further replies.

bianchi77

Advanced Member level 4
Joined
Jun 11, 2009
Messages
1,313
Helped
21
Reputation
44
Reaction score
20
Trophy points
1,318
Location
California
Activity points
9,442
Hello friends,

I tried to light up LED 8x8 matrix common anode,
The circuit diagram below
circuit.jpg
matrix8x8.JPG

Why isn't it diplayed correctly, there's a "shadow" on the character and can not fix on it's place ( the column), anyone can assist me ? thanks a lot
And the code :
====
#include <REG51.H>

//#define Row P2
//#define Column P3




unsigned char pat[8] = {0x3C,0x3C,0x3C,0x00,0x00,0x3C,0x3C,0x3C}; //H


void delay_ms(unsigned int msec) //delay function
{
//;

unsigned int i,j;
for(i=0;i<msec;i++)
for(j=0;j<1;j++);

}



void main () {
unsigned int cnt, col, row ;

P1 = 0x00 ; /* Initialize all P1 outputs to be low */
P3 = 0x00;
while(1)
{

for (cnt = 0 ; cnt < 8 ; cnt ++ )
{
row = 1;
//for (col = 1 ; col >0 ; col<<= 1)
for (row = 1 ; row < 0xFF ; row<<= 1)
{

P1 = ~row; // try to reverse the port ?
P3 = pat[cnt];

delay_ms(2) ; // delay of 1 ms
}
}


}
}
 
Last edited:

Have you used any device between the mcu and the leds to handle the increased current?
Your mcu can't drive them directly, the output current capacity is very low.

Alex
 

Have you used any device between the mcu and the leds to handle the increased current?
Your mcu can't drive them directly, the output current capacity is very low.

Alex

Yup I put PNP transistor 2N3906 to drive the row,
Can you assist me with the "shadow" ? thanks
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top