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.

DIY Moving Message Display

Status
Not open for further replies.

sn_burki

Full Member level 5
Full Member level 5
Joined
Feb 18, 2003
Messages
260
Helped
16
Reputation
32
Reaction score
11
Trophy points
1,298
Location
Pakistan
Activity points
1,623
OBIALOR Thanks for you help I will go through it and if I have any question i will ask.
 

xorcise

Full Member level 2
Full Member level 2
Joined
Sep 27, 2007
Messages
124
Helped
20
Reputation
40
Reaction score
1
Trophy points
1,298
Location
NYC
Activity points
2,163
If you're having trouble with multiple 8x8 LED blocks, try this with a single 8x8 just for fun:

 

xorcise

Full Member level 2
Full Member level 2
Joined
Sep 27, 2007
Messages
124
Helped
20
Reputation
40
Reaction score
1
Trophy points
1,298
Location
NYC
Activity points
2,163
sn_burki said:
There is no project but a video?

It's a demonstration only. A good programming challenge for someone willing to try it.
 

SuperSuB

Newbie level 4
Newbie level 4
Joined
Nov 13, 2007
Messages
6
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,320
Programming with PIC BASIC

Hi,
Anyone know where can i search for more information about "how to program a PIC 16F877 with PIC BASIC?
 

sn_burki

Full Member level 5
Full Member level 5
Joined
Feb 18, 2003
Messages
260
Helped
16
Reputation
32
Reaction score
11
Trophy points
1,298
Location
Pakistan
Activity points
1,623
hi
I am crazilly looking for help to build moving message display controlled by sms by 3310. can any one please help?????????/ how can i understand AT commands? can i use it for NOKIA 3310????????/
 

Weis Guy

Member level 4
Member level 4
Joined
May 2, 2005
Messages
75
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,288
Activity points
1,951
hi sn_burki, i think there are lots of sources over the internet regarding in understanding the AT commands. try searching! : )
 

adarang

Junior Member level 1
Junior Member level 1
Joined
Oct 31, 2007
Messages
18
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,283
Activity points
1,409
hi to all
this is the program for moving meesage display that i download it from this topic .
i want to show my own message :( I AM LIREZA MOHAMMADI ) in the output.
what change i shoud do in this program?




/*
MATRIX FORMAT
ROW & COL ACTIVE HI
COL SCAN BY 74LS164

-----------5
-----------4
-----------3
-----------2
-----------1
-------2 1 0


*/



#include <reg51.h>
#include <intrins.h>


#define TRUE 1 /* define logical true / false */
#define FALSE 0 /* values for bit variables */
#define SCROLL_DELAY 60 /* scroll delay */

#define TIMER0_COUNT 0xFADA // 1.1ms

void delay_us(unsigned int d);

typedef unsigned char byte; /* type define objects with */
typedef unsigned int word; /* more classical microprocessor */

code char menu[] =
"\r\n\n\n\n\n\n\n\n\n\n\n\n\n"
"Walking led message display program\n\r"
"___________________________________\n\r"
"Written by Sohail Shahzad\n\n\n\n\r"
"Press:-\n\r"
" s to load the message from the PC terminated in a $/r/n"
" d to display message/r/n/n/n/n";

code unsigned char matrix[59][6]=
{0x00,0x00,0x00,0x00,0x00,0x00, //space
0x00,0x00,0x7d,0x00,0x00,0x00, //!
0x00,0x60,0x00,0x60,0x00,0x00, //"
0x14,0x7f,0x14,0x7f,0x14,0x00, //#
0x32,0x49,0x7f,0x49,0x26,0x00, //$
0x62,0x64,0x08,0x13,0x23,0x00, //%
0x36,0x49,0x35,0x02,0x05,0x00, //&
0x00,0x00,0x00,0x50,0x60,0x00, //'
0x1c,0x22,0x41,0x00,0x00,0x00, //(
0x00,0x00,0x41,0x22,0x1c,0x00, //)
0x2a,0x1c,0x3e,0x1c,0x2a,0x00, //*
0x08,0x08,0x3e,0x08,0x08,0x00, //+
0x00,0x01,0x02,0x00,0x00,0x00, //,
0x08,0x08,0x08,0x08,0x08,0x00, //-
0x00,0x00,0x01,0x00,0x00,0x00, //.
0x02,0x04,0x08,0x10,0x20,0x00, ///
0x3e,0x45,0x49,0x51,0x3e,0x00, //0
0x00,0x21,0x7f,0x01,0x00,0x00, //1
0x27,0x49,0x49,0x49,0x31,0x00, //2
0x22,0x49,0x49,0x49,0x36,0x00, //3
0x0c,0x14,0x24,0x7f,0x04,0x00, //4
0x7a,0x49,0x49,0x49,0x46,0x00, //5
0x3e,0x49,0x49,0x49,0x26,0x00, //6
0x41,0x42,0x44,0x48,0x70,0x00, //7
0x36,0x49,0x49,0x49,0x36,0x00, //8
0x32,0x49,0x49,0x49,0x3e,0x00, //9
0x00,0x00,0x22,0x00,0x00,0x00, //:
0x00,0x01,0x22,0x00,0x00,0x00, //;
0x08,0x14,0x22,0x41,0x00,0x00, //<
0x14,0x14,0x14,0x14,0x14,0x00, //=
0x00,0x41,0x22,0x14,0x08,0x00, //>
0x20,0x40,0x45,0x48,0x30,0x00, //?
0x3e,0x41,0x4d,0x4d,0x39,0x00, //@
0x1f,0x24,0x44,0x24,0x1f,0x00, //A
0x7f,0x49,0x49,0x49,0x36,0x00, //B
0x3e,0x41,0x41,0x41,0x22,0x00, //C
0x7f,0x41,0x41,0x22,0x1c,0x00, //D
0x7f,0x49,0x49,0x49,0x41,0x00, //E
0x7f,0x48,0x48,0x48,0x40,0x00, //F
0x3e,0x41,0x41,0x45,0x26,0x00, //G
0x7f,0x08,0x08,0x08,0x7f,0x00, //H
0x00,0x41,0x7f,0x41,0x00,0x00, //I
0x42,0x41,0x41,0x7e,0x40,0x00, //J
0x7f,0x08,0x14,0x22,0x41,0x00, //K
0x7f,0x01,0x01,0x01,0x01,0x00, //L
0x7f,0x20,0x18,0x20,0x7f,0x00, //M
0x7f,0x10,0x08,0x04,0x7f,0x00, //N
0x3e,0x41,0x41,0x41,0x3e,0x00, //O
0x7f,0x48,0x48,0x48,0x30,0x00, //P
0x3c,0x42,0x46,0x42,0x3d,0x00, //Q
0x7f,0x48,0x4c,0x4a,0x31,0x00, //R
0x32,0x49,0x49,0x49,0x26,0x00, //S
0x40,0x40,0x7f,0x40,0x40,0x00, //T
0x7e,0x01,0x01,0x01,0x7e,0x00, //U
0x78,0x06,0x01,0x06,0x78,0x00, //V
0x7f,0x02,0x0c,0x02,0x7f,0x00, //W
0x63,0x14,0x08,0x14,0x63,0x00, //X
0x60,0x10,0x0f,0x10,0x60,0x00, //Y
0x43,0x45,0x49,0x51,0x61,0x00};//Z

code char TEST_MSG[]="WELLCOME TO ALIREZ MESSAGE $";

sbit LED_CLOCK = P3^2;
sbit LED_DATA = P3^3;
sbit LED_RESET = P3^4;
bit timer0_tick;


/*
use the free-running I timer to multiplex the led displays
*/

void multiplex() interrupt 1 using 1
{
TR0=0;
TL0=(TIMER0_COUNT & 0x00FF);
TH0=(TIMER0_COUNT >>8);
TR0=1;

timer0_tick=1;
}



void main(void)
{

int i,j;
unsigned char row;
unsigned char *dataPtr, *tmpDataPtr;
unsigned char messageLength, currentChar, charOffset, tmpCurrentChar, tmpCharOffset;
char msg[32]; // ram for message max length
unsigned char ledArray[32];

P1=0xFF;
P3=0xFF;
P2=0xFF;
EA =0;
TL0 = (TIMER0_COUNT & 0x00FF);/* timer 0 period 5ms */
TH0 = (TIMER0_COUNT >>8);
TL1=0XFD; //9600 @ 11.0592
TH1=0XFD;
//TMOD &=0xF0;
TMOD =0x21;
SCON =0X50;
ET0=1;
TR1=1;
TR0 = 1; /* enable timer 0 */
EA = 1;
RI=0;
/*
main execution loop, executes forever.
*/


LED_RESET = 0;
LED_CLOCK = 0;
LED_RESET = 1;
P1=0;
while(1){


for(i=0;i<sizeof(TEST_MSG);i++) msg=TEST_MSG;
for(i=0;i<48;i++) if(msg=='$') break; //calculate length of msg
messageLength = i;
charOffset = 0;
currentChar = 0;
dataPtr = &matrix[msg[0] - 0x20][0];

// this loop is the heart of the scroll
// message is scrolled until a key is hit on the keyboard

while (1) {
// load led array
tmpDataPtr = dataPtr;
tmpCharOffset = charOffset;
tmpCurrentChar = currentChar;
for (i = 0; i <= 31; i++) {
ledArray = *tmpDataPtr++;
if (++tmpCharOffset==0x06) {
tmpCharOffset = 0;
if (++tmpCurrentChar == messageLength)
tmpCurrentChar = 0;
tmpDataPtr = &matrix[msg[tmpCurrentChar] - 0x20][0];
}
}
if (++charOffset == 0x06) {
charOffset = 0;
if (++currentChar == messageLength)
currentChar = 0;
}
dataPtr = &matrix[msg[currentChar] - 0x20][charOffset];

// display led array
row = 1;
for (j = 0;j <= SCROLL_DELAY; j++) {
for (i = 0; i <= 31; i++) {
LED_DATA = (ledArray & row) ? 1 : 0; //invert image by interchng 0:1
LED_CLOCK = 1;
LED_CLOCK = 0;
}
P1 = row;
row <<= 1; // next line to be switched on
if (row==0x80) row = 0x01; // if last line go back to the first line
delay_us(1100);
P1 = 0x00;
}
}//while


}//while
}//----------------end main

void delay_us(unsigned int d){
unsigned int i,m;
m=d/14;
for(i=0;i<m;i++);
}
 

penoy_balut

Full Member level 2
Full Member level 2
Joined
Sep 8, 2007
Messages
147
Helped
26
Reputation
52
Reaction score
10
Trophy points
1,298
Activity points
1,943
PostPosted: 18 Nov 2007 21:09 Post subject: Re: DIY Moving Message Display
hi
I am crazilly looking for help to build moving message display controlled by sms by 3310. can any one please help?????????/ how can i understand AT commands? can i use it for NOKIA 3310????????/

You cannot use AT commands on Nokia 3310, it uses FBUS protocol
if you want AT commands use 6210 or 6310 instead, these models work on either
FBUS (DAU-9P cable) or AT Commands (DLR-3P cable).

 

sn_burki

Full Member level 5
Full Member level 5
Joined
Feb 18, 2003
Messages
260
Helped
16
Reputation
32
Reaction score
11
Trophy points
1,298
Location
Pakistan
Activity points
1,623
can you guys tell me that what is more easy to use fbus or to use ATcommands??? my second question is tha I read that NOKIA 3310 uses Fbus and Mbus then how to select any one of them?
 

tyroon

Newbie level 1
Newbie level 1
Joined
Dec 5, 2007
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,285
hi to all!

i am a fifth year comp engneering student and i need a schematic diagram and a program of a programable running message. iam using a 5x7 dot matrix. and i really need a help.cos i am using a keypad controller to change the content of the running message.:cry:
 

Madane

Newbie level 5
Newbie level 5
Joined
Mar 19, 2006
Messages
9
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,377
Hi ,
can any body propose me a circuit diagram for a DMX led matrix 16x16 or 8x8 pixel with dip switch address for the unit.

Thanking you all in advance
 

vikky

Full Member level 3
Full Member level 3
Joined
Oct 18, 2007
Messages
150
Helped
4
Reputation
8
Reaction score
3
Trophy points
1,298
Activity points
2,664
hi everyone!is it possible to do 20 characters with shift registers controlled by one controller
 

wmyatthu

Junior Member level 3
Junior Member level 3
Joined
May 14, 2005
Messages
30
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Activity points
1,514
Hi
I want LED DotMatrix Display that is controlled by PIC16F877A. I want to control it by Keyboard. So, please if you have any idea about this, help me.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Top