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.

PIC16F84A and Nokia 6210

Status
Not open for further replies.

kasamiko

Full Member level 3
Joined
May 23, 2004
Messages
154
Helped
16
Reputation
32
Reaction score
18
Trophy points
1,298
Location
Philippines
Activity points
1,121
pic16f84a nokia

Hi,
I've succesfully sent an SMS message "TEST" endlessly using the circuit attached.

I used this code on PIC16F84A:

Device 16F84A
Declare Xtal = 4

Start:
LOW LED
DelayMS 1000
SerOut2 PORTB.1, 84,["AT+CMGS=",34,"MyNumber",34,13]
DelayMS 1000
SerOut2 PORTB.1, 84,["TEST",13]
DelayMS 1000
SerOut2 PORTB.1, 84,[26]
DelayMS 3000
GOTO Start


Now I got lost reading the UNREAD message like this one:

+CMGR: "REC READ","+SenderNumber",,"05/05/26,17:19:23+00"
GOOD
OK


I don't have the idea how to strip the sender phone number and the sent text message "GOOD" from this data using SERIN command..

I'd tried this code..Is this correct?

DIM Message AS BYTE

SerIn2 PORTA.0, 84,[Message]


Any help will be appriciated.

BTW:
My resources are LIMITED only to PIC16F84 and Nokia's 6210 cellphone.

TIA
 

dlr3-p .hex file

DIM Message AS BYTE


i think u must place

DIM Message AS string

because u will receive a string and not only a char
 

Thanks! Nice to hear from you..

DIM Message AS BYTE

i think u must place

DIM Message AS string

because u will receive a string and not only a char
 

Message for kasamiko:

Here are a few questions for you :)

How do you communicate with Nokia phone? Why do you use 2 PIC? How come Nokia 6210 supports text mode for SMS messaging?

I hope you will find time to answer these questions.

Best regards,
Trax
 

traxonja said:
Message for kasamiko:

Here are a few questions for you :)

How do you communicate with Nokia phone? Why do you use 2 PIC? How come Nokia 6210 supports text mode for SMS messaging?

I hope you will find time to answer these questions.

Best regards,
Trax

Using DLR3-P circuit the first PIC to be able to communicate with 6210 embedded modem, that's the function of the 1st PIC.
The othe PIC contains the instruction to communicate SERIALLY.. I use this setting, 9600,8,N,1(True,driven)

SerOut2 PORTB.1, 84 ' 84 = 9600,8,N,1(True,driven)

Yes Nokia 6210 supports text messaging using this AT command AT+CMGF=1,
instruct the phone to use TEXT mode or AT+CMGF=0 for PDU mode..

rhonn
 

Cortex said:
can i ask you why u connected the RB4 to RB5 using the diode ?
Honestly, I don't know..
Since I only used the DLR-3P schematic from this site..

**broken link removed**

Maybe you can ask the author why?

rhonn
 
from what i see u can use only 1 Pic to do both Thing in the same time

contact me in icq if you want
 

HI,
Would it be possible for you to send me (or let me know from where I can download) a copy of the file DLR3P2.HEX
 

Get the hex files **broken link removed**
4 Mhz and 8 Mhz Version available.

BR
 

man c'mon use can make this with just one pic with 877 like the one in here
one of the sample with s25 is here.
**broken link removed**
 

Yeah I've it long time ago..
But the topic will then be PIC16F877 and Siemens S25!!
That's why I consider 16F84 and Nokia 6210 'coz I got a truckload of this stuff..
But in fairness it's a great project..but wonder why I can get the documentation of it..instruction how to used the project..
Any link will be appreciated..

BR..
 

hi all...

i'm making the dlr3p that was posted by kasamiko (acknowledgment to Adrian Dabrowski) in this forum but i can't get the dlr3p2.hex file in atrox.at because i cannot access the site no matter what i do and i don't know why. can somebody please mail me the file (dlr3p3.hex)? i really need it so much... my email add is aldinlapinig@gmail.com or aldin_lapinig@yahoo.com... thank you very much in advance...

kind regards,

aldin
 

hi all,

wat could be the possible replacement of bat41 in the dlr3 data cable? can't find it in my place. thank u very much...
 

You can replace BAT41 with 1N4148...used to combined RX/TX to MBUS..

Attached is the DLR3P hex for both 4 and 8 mhz xtal..

Regards
 
sir kasamiko, what is that attached dlr3p hex do? is that the program to be use for the pic16f84a in the cable circuit?

thank you very much in advance!
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top