PDA

View Full Version : Sure Electronics 0832 Dot Matrix Display



wellyboot
- 4th October 2009, 21:07
I bought 1 of these 8x32 display modules from ebay

http://cgi.ebay.co.uk/0832-LED-Dot-Matrix-Yellow-Display-Information-Board_W0QQitemZ230379641075QQcmdZViewItemQQptZUK_B OI_Electrical_Components_Supplies_ET?hash=item35a3 b258f3&_trksid=p3286.c0.m14

spent quite a lot of time looking at the datasheet and google, and put this piece of code together to demonstrate how to send data to the module.

this simply sends a smiley face to the display.

peba25
- 24th December 2009, 20:55
I bought 1 of these 8x32 display modules from ebay

http://cgi.ebay.co.uk/0832-LED-Dot-Matrix-Yellow-Display-Information-Board_W0QQitemZ230379641075QQcmdZViewItemQQptZUK_B OI_Electrical_Components_Supplies_ET?hash=item35a3 b258f3&_trksid=p3286.c0.m14

spent quite a lot of time looking at the datasheet and google, and put this piece of code together to demonstrate how to send data to the module.

this simply sends a smiley face to the display.

Hey wellyboot,

Looks cool. I saw your led clock using 4 times the sure electronics displays. I recently bought one of those displays. They are pretty cheap and looking good.
Do you share your code for making this clock?:)

Thanks in advance.

wellyboot
- 25th December 2009, 13:30
Hi there

still a work in progress at present, code is in a right state!
am working on building a slot machine, and this large display will simulate the reals spining in led graphics.
I rewrote the code from the smaller clock to make the bigger clock and now rewritting this for the slot machine

so havnt really kept the clock code, but to be honest its not very difficult to write especially when you look round this forum for bits and pieces of code.

Feel free to ask me if you need any help.

peu
- 26th December 2009, 00:52
Im about to make a slightly larger matrix (11x11) what happens with brighness?

lets say for example, if you lit 2 leds in one row and 6 in the next, is the brightness the same? if there is indeed a difference in brightness, is it noticeable?

wellyboot
- 26th December 2009, 10:18
I usume you are going to have 11 x 11 display modules.

as far as i can tell the brightness remains constant, on my 2 x 2 display module (64x16 Leds) clock the brightness of the leds looks the same regardless of what is being displayed.

http://www.youtube.com/watch?v=Ei29O0b9YIQ

each module can draw upto 220mA (all leds on)

vtt-info
- 1st April 2010, 15:26
Hello wellyboot,

I have built up the example. Sure Electronics 0832 Dot Matrix Display with the sure.txt code. It works well.
How can the smile be taken to scroll on the Display? Please give me a scrolling example for the Sure Electronics 0832 Dot Matrix Display.

Many thanks in advance

flotulopex
- 19th July 2010, 14:23
Hi wellyb00t,

Can you please tell how you control the led's brightness?

wellyboot
- 25th July 2010, 15:17
Hi wellyb00t,

Can you please tell how you control the led's brightness?

In the code (post 1) change this line:

address = %10101111 'pwm 16/16

bits 0,1,2,3 control brightness
the above line is for max brightness

address = %10100000 'pwm 1/16 min brightness
address = %10100111 'pwm 8/16 mid brightness

This can be found in the datasheet 'PWM Duty' in the command summary (3.3)

gid2010
- 19th December 2010, 17:17
Hello wellyboot,

I have built up the example. Sure Electronics 0832 Dot Matrix Display with the sure.txt code. It works well.
How can the smile be taken to scroll on the Display? Please give me a scrolling example for the Sure Electronics 0832 Dot Matrix Display.

Many thanks in advance

Hello,
You can scroll the Smiley (left or right) by doing the following, in the main loop of the code:

while(1)
{
for(j=0;j<32;j++) // for scrolling 32 times
{
for(cnt=0; cnt<8; cnt++) // for Smiley
{
dataB = dataA[cnt];
datsend(address, dataB);
address = address+2;
}

// control the speed of scrolling
delay_ms(400);

// scroll the message left or right
address = address-2; // '-' for left shift, '+' for right shift, #2 means shift by 1 column

// clear the matrix by writing 00's
for(i=0;i<32;i++)
{
datsend(i,0x00);
}
}
}

xyzabcpqr
- 16th April 2012, 17:36
Hello,
Currently I am working on Sure Electronics 0832 Dot Matrix Display (DE-DP10XV110) which is having HT1632 Holtek IC. I want to interface it with PIC 16F1937.I am using MPLAB and HI-TECH C compiler as a software platform .

I tried lot but nothing happened. My connections are as below:
CS1 - RB1
WR - RB2
DATA - RB3
OSC - Vcc(+5v)
VCC
GND

Herewith I am attaching my code.Please help to make it running.

xapmanis
- 2nd January 2013, 20:50
Hello friends :) I am new with led controlling and i bought a 32x8 led display from sureelectronics.
My question is: Does the HT1632C has any decoder on it ?? for example for ABC characters, or ALL letters and ALL graphics are designed by "me" ??!

I've read the datasheet of H1632C but there were some parts that i don't understand.