transceiver 433 MHz


Closed Thread
Results 1 to 12 of 12

Hybrid View

  1. #1
    Join Date
    Feb 2006
    Location
    france
    Posts
    47

    Default transceiver 433 MHz

    Hello

    I want a sample program in pbp, I want to send
    15 bytes by the bias of an RF module 433 MHz and receive
    On another module.

    thank you
    Attached Images Attached Images  

  2. #2
    Join Date
    Nov 2003
    Location
    Wellton, U.S.A.
    Posts
    5,924


    Did you find this post helpful? Yes | No

    Default

    Have you searched the forum for examples? There a plenty out there.
    Can you send and receive the data with wires?
    Dave
    Always wear safety glasses while programming.

  3. #3
    Join Date
    Feb 2006
    Location
    france
    Posts
    47


    Did you find this post helpful? Yes | No

    Default rf

    Hello

    I will test this way?

    touche VAR BYTE
    name0 var byte
    name1 var byte
    name2 var byte
    name3 var byte
    i var byte
    ID Var Byte


    envoi:
    SEROUT2 PORTA.3,T9600,["SYN",ID,name0,name1,name2,name3]
    GOTO debut



    reception:
    Serin2 PORTA.3,T9600,[wait("#SYN"),ID,name0,name1,name2,name3]
    GOTO debut

  4. #4
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    4,132


    Did you find this post helpful? Yes | No

    Default

    Maybe without the "#" symbol on he SERIN command.

    Ioannis

  5. #5
    Join Date
    Feb 2006
    Location
    france
    Posts
    47


    Did you find this post helpful? Yes | No

    Default rf

    Hello
    Thank you for your help, do you have a sample program.
    I want to transmit and receive 24 bytes.
    thank you

  6. #6
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    4,132


    Did you find this post helpful? Yes | No

    Default

    If your data are always 24, then use an array, load the date at the array elements and then send the array.

    I 'd use Hserout if my controller has hardware USART.

    Hserout [STR array\24]

    or

    SerOut2 port,mode,[STR array\24]

    Ioannis

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts