max 232 is logic level converter. It converts RS232 logic level to ttl logic level and ttl to RS232. You should look datasheet.
max 232 is logic level converter. It converts RS232 logic level to ttl logic level and ttl to RS232. You should look datasheet.
Thanks for the info but since I am fairly new to this field, can you guide me as to where I can read about TTL & RS-232 type signals and difference between them.
Dave
Always wear safety glasses while programming.
On google or wiki
RS232 standard:
logic "1" is -3 to -15V
logic "0" is 3 to 15v
-3 to 3 is not defined
TTL standard:
logic "1" is 2 to Vcc (usually Vcc=5V)
logic "0" is 0 to 0.8V
Edit:
0.8 to 2V isn't defied
Last edited by pedja089; - 28th September 2009 at 23:35.
Thanks. I am trying to send an SMS using TC35i & 16F690. I tried to replicate the schematic at this link: http://techni.caliti.es/blog/2008/12...ontroller.html
I used the pins 10 & 12 of 16f690 instead of 17 & 18 of 16F873. Hope it will work![]()
If you have in mind to use the downloaded software, the answer is IT WILL NOT WORK.I used the pins 10 & 12 of 16f690 instead of 17 & 18 of 16F873. Hope it will work
If you will write your own software the answer is YES IT WILL WORK.
Al.
All progress began with an idea
With pic 16F690 you need to turn off analog port to make them digital. You will accomplish this with the following instruction:Any advise as to how to set up the registers, correctly for 690?
In my project I have used 8 ports as inputs and 8 ports as output. 690 doesn't have all these ports available, so you will decide how many inputs and how many outputs to use. Remember to set the TrisA; TrisB and TrisC registers accordingly.Code:ANSEL = 0 : ANSELH = 0
Al.
All progress began with an idea
Bookmarks