![]() | ![]() | ![]() |
| |||||||
| Micro Controllers Discuss all aspects of micro controllers - building them, coding them, etc. All controllers are welcome - PIC, BASIC, Z8 Encore!, etc. |
![]() |
| | Tools |
| | #16 |
|
I no that but people are using the serial cable from the phone that you hook to your pc with a max 232 hooked to the pic not needed but done. pick 3/5volts and pc is 12 but not all of them lol now most don't even have a serial port or a floppy drive Understand? fully | |
| |
| | #17 |
|
To send it hello the hex you send would be 68656c6c6f
| |
| |
| | #18 | |
| Quote:
Last edited by cyb3rfreak; 15th January 2009 at 12:03 AM. | ||
| |
| | #19 |
|
That's it plug it in hook it to your computer open hyper terminal try that first then try it with the pic
| |
| |
| | #20 | |
|
i would like to clarify about something, is this correct... Max232 pin 11:RC6/TX, pin12:RC7/RX Max232 pin 14:3310-RX, pin pin13: 3310-TX ![]() Quote:
| ||
| |
| | #21 | |
|
You have the max right But there is a lot more to it Quote:
It's by Nigel Goodwin it has code you can look at and It is very well done. | ||
| |
| | #22 |
|
from the tutorial, meaning i can send data to the cellphone using 0V / +5V and a 104uS delay interval for each data bit? let say i will send a data of "2.2:" (w/o the quotes) the binary equivalent of this from the Gsm 03.38 alphabets and language specific information (http://rpu6.nm.ru/doc/0338-700.pdf page 16) is 0000010 0101110 0000010 0111010 my problem is on how to set RC6/TX and RC7/RX to transmit and receive data. after setting the pins, do i just simply declare PORTC.6 = 0000010 0101110 0000010 0111010??? or i need something else...? | |
| |
| | #23 |
|
It take's a lot more then that what are you using mplab assembler Code: TX_RS232 MOVWF TX_Byte ;move W to TX_Byte
MOVLW 0x2 ;set 8 bits out
MOVWF Bit_count
BCF PORTB, 6
CALL Bit_Delay
TX_RS232 MOVWF TX_Byte ;move W to TX_Byte
MOVLW 0x2E ;set 8 bits out
MOVWF Bit_count
BCF PORTB, 6
CALL Bit_Delay
you can also do it like this Code:
TX_RS232 MOVWF TX_Byte ;move W to TX_Byte
MOVLW b'00000010' ;set 8 bits out
MOVWF Bit_count
BCF PORTB, 6
CALL Bit_Delay
Last edited by be80be; 18th January 2009 at 08:18 PM. | |
| |
| | #24 | |
| Quote:
Last edited by cyb3rfreak; 17th January 2009 at 08:25 AM. | ||
| |
| | #25 |
|
Read this book Programming PIC Microcontrollers in BASIC - mikroElektronika | |
| |
| | #26 | |
|
thnx for posting the manual... Quote:
thnx for the tips/help/guide i really i appreciate it. i'm beginning to understand basic language and little bit of assembly. | ||
| |
| | #27 |
|
Of course it only send one code, you call the routine as many times as needed, with the code you want in the W register each time. Check my tuorials for various examples. | |
| |
| | #28 | |
| Quote:
| ||
| |
|
| Tags |
| 877, bout, max232 |
| Thread Tools | |
| Display Modes | |
| |
Similar | ||||
| Title | Starter | Forum | Replies | Latest |
| ask bout TX-2B | seesy123 | General Electronics Chat | 3 | 3rd June 2008 01:14 PM |
| can i know bout AC and DC motor... | rohaan | General Electronics Chat | 7 | 13th April 2008 02:45 AM |
| Wow nice site, bout time.... | Sparky_Tony | Chit-Chat | 4 | 25th March 2007 06:09 AM |
| where do i learn bout PIC ? | kupikupi | Micro Controllers | 130 | 4th September 2005 04:34 PM |
| any idea bout steeper motor...... | maybskie | Electronic Projects Design/Ideas/Reviews | 1 | 22nd April 2003 12:19 PM |