
Originally Posted by
scalerobotics
Good point Dave,
The Basic Stamp sends it out as true, but it is done on the BS2 programming port, which has a max232 equivalent, so it can be read from the computer side. Since Don said he could read it in hyperterminal, I assume he is using a max232 device. I also assume he meant he tested hyperterminal with hserout. So maybe it is just in the wrong format.
From another page in the help file:
So maybe this is the hang up?
It would be great to see a solution, and write up in the Wiki area (Hint, Hint).
Walter
FYI
I got it working ok except I haven't been able to send back to the PIC yet.
Thanks Walter....
Code:
HSEROUT ["LABEL",",","Don's",",","Test",13]
PAUSE 10
Loop:
FOR x = 1 to 5
HSEROUT ["DATA",",","Hello",",","World",",","Goodbye",13]
PAUSE 5000
NEXT x
PAUSE 10000
HSEROUT ["CLEARDATA",13]
GOTO Loop
END
Bookmarks