Hello,
I can't send SMS text with pic12f675 using Serout and Nokia 6131
I'm using external osc 4Mhz
From nokia 6131 pin Rx R1k serial to gpio.0
code :
include "modedefs.bas"
DEFINE OSC 4
loop:
pause 500
Serout gpio.0,N1200,["AT",13]
pause 1000
Serout gpio.0,N1200,["AT+CMGF=1",13]
pause 1000
Serout gpio.0,N1200,["AT+CMGS=",34,"+1555963754",34,13]
pause 1000
Serout gpio.0,N1200,["Hello world"]; ascii 26
pause 1000
Serout gpio.0,N1200,[26,13]
PAUSE 500
Goto loop
End
Bookmarks