Quote Originally Posted by Lotondo
main:
HSerout ["AT",13,10]
HSerin 5000,main,[WAIT("OK")]
HSerout ["WELL DONE",13,10]
End
I can not understand where will the "WELL DONE" message be displayed. You are sending it back to the mobile, is this correct? What can the mobile do with this message?

On you previous post you had a pause 1000 after HSerout ["AT",13,10]. You did well removing it.

So, I guess a sample like this might help you:

main:
Green_Led=0
HSerout ["AT",13,10]
HSerin 5000,main,[WAIT("OK")]
Green_Led=1
End

Ioannis