need help with parallax 433 RF module
Demoncleaner
Posts: 17
Hi all,
I need to send (only send) data from my computer serial output to my Basic Stamp Board via RF...
I allready have the 433 RF Transmiter and the 433 RF receiver.So i have to the 433 RF Transmiter with my PC...To do that
should i use an extra board???If i should make an extra board, does anybody know where could i found a schematic
of this board???
_____
| | ________________ ______________ ____________________
| PC | --> |433 RF Transmiter|
> |433 RF Receiver| --> |PIC Basic Stamp Board|
_____ ________________ ______________ ____________________
_____|
Thank for any help [noparse]:)[/noparse]
I need to send (only send) data from my computer serial output to my Basic Stamp Board via RF...
I allready have the 433 RF Transmiter and the 433 RF receiver.So i have to the 433 RF Transmiter with my PC...To do that
should i use an extra board???If i should make an extra board, does anybody know where could i found a schematic
of this board???
_____
| | ________________ ______________ ____________________
| PC | --> |433 RF Transmiter|
> |433 RF Receiver| --> |PIC Basic Stamp Board|
_____ ________________ ______________ ____________________
_____|
Thank for any help [noparse]:)[/noparse]
Comments
What would you expect this "extra board" to do?
Most of the inexpensive RF transmitters and receivers I've run across only need the following:
1. Appropriate source of power (+,- VDC)
2. Rx/Tx connections with the source/receiver of the signal
3. Signal ground
So long as you can supply that above, by whatever means, you should be good to go, unless encoders/de-coders are required in your specific application.
Regards,
Bruce Bates
Post Edited (Bruce Bates) : 7/28/2006 3:45:59 PM GMT
Dave
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Dave Andreae
Tech Support
dandreae@parallax.com
Http://www.parallax.com
·
is this compatible with basic stamp???
Jonathan
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
www.madlabs.info - Home of the Hydrogen Fuel Cell Robot
Dave
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Dave Andreae
Tech Support
dandreae@parallax.com
Http://www.parallax.com
·
the code for the receiver:
P3 PIN 3
P0 PIN 0
Main:
SERIN P0, Baud, [noparse][[/noparse]x]
'===================================
IF x = "a" THEN 'Up
HIGH P3
PAUSE 2500
LOW P3
ENDIF
IF x = "b" THEN
HIGH P3
PAUSE 2500
LOW P3
ENDIF
GOTO Main
END
Where is the program which SENT the data? May we presume the coding you've offered above is SX Basic?
Regards,
Bruce Bates
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
<!--StartFragment -->
baud = T38k4
x var byte
and about the program that sent the data its writen in vb...
and there is no doubt about it because i allready test it....
Dave
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Dave Andreae
Tech Support
dandreae@parallax.com
Http://www.parallax.com
·