Serin/out interference
Archiver
Posts: 46,084
Sorry, I should have mentioned this before, but I want to be able to
communicate wirelessly with two pairs of Linx Technologies HP
transmitters/recievers. Has anyone ever dealt with wireless stamp
applications? Thank you.
Seth Johnson
communicate wirelessly with two pairs of Linx Technologies HP
transmitters/recievers. Has anyone ever dealt with wireless stamp
applications? Thank you.
Seth Johnson
Comments
I have used the Parallax RF modules and Rentron's TWS/RWS modules for some
time. How can I help you ?
Sid - W4EKQ
series from Linx. I hooked a BS2 and BS2SX directly together with a
ground wire and a data wire. I sent "HELLO!" out of the BS2,
recieved it with the BS2SX, and debuged it on the computer. It
worked fine. When I tried sending it wirelessly(with the same
program), however, I got junk that certainly wasn't HELLO! This is
my first time using the HP series. Do you know what I'm doing wrong?
Thanks again.
Seth Johnson
data. It may need to be inverted.
Good luck!
Original Message
From: sethjaredjeromiejohnson [noparse]/noparse]mailto:[url=http://forums.parallaxinc.com/group/basicstamps/post?postID=Qe6qTuwkqB613563NawO1kNPBQ-9KAKtIgv9nRwrjFSnGShDhyLrje7YJiOjwdxoIzIA__V2LroxyqSK5A]sjohns10@h...[/url
Sent: Saturday, January 26, 2002 7:49 PM
To: basicstamps@yahoogroups.com
Subject: [noparse][[/noparse]basicstamps] Re:Serin/out interference
I am having troubles sending data over wirelessly using the HP
series from Linx. I hooked a BS2 and BS2SX directly together with a
ground wire and a data wire. I sent "HELLO!" out of the BS2,
recieved it with the BS2SX, and debuged it on the computer. It
worked fine. When I tried sending it wirelessly(with the same
program), however, I got junk that certainly wasn't HELLO! This is
my first time using the HP series. Do you know what I'm doing wrong?
Thanks again.
Seth Johnson
To UNSUBSCRIBE, just send mail to:
basicstamps-unsubscribe@yahoogroups.com
from the same email address that you subscribed. Text in the Subject and
Body of the message will be ignored.
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
Let's look at the program considerations first.
To send from one Stamp to the other you write:
serout 0, N9600, [noparse][[/noparse]"Hello"]. That transmits it.
Now then, "Hello" has five bytes, so you have to set up the receiving Stamp
for exactly that. So then you write:
serstring var byte(5)
serin 0, N9600, [noparse][[/noparse]str serstring\5]
You can't debug the receiving Stamp unless you have a separate PC connected
to it. OK sso far ?
Sid