telecontrolli RF module


Results 1 to 5 of 5

Threaded View

  1. #1
    Join Date
    Feb 2005
    Location
    GREECE
    Posts
    120

    Default telecontrolli RF module

    Hello to every picbasic fan,

    I have just return from summer vacations and I am back for more coding...

    I bought from a local shop a set of Tx and Rx 433Mhz RF Modules RT4 and RR3 by telecontrolli.

    See datasheet
    RT4: http://www.telecontrolli.com/pdf/transmitter/rt4.pdf
    RR3:http://www.telecontrolli.com/pdf/receiver/rr3.pdf
    Does anyone have any experience with them???
    I failure to make a link.

    My project
    Tx
    16f627 -4Mhz Ext.osc- rt4 -Antenna wire 17cm

    Rx
    16f627 -4Mhz Ext.osc -rr3 -Antenna wire 17cm -USART RS232


    I use the manchester code from Ioannis(thanks)
    -------------------------------------------------------------------
    'tx
    encoded var word
    mydata var byte
    mydata="T"
    loop:
    gosub encod_r
    serout2 PORTB.0,813,[$55, $55, $AA, encoded.lowbyte,encoded.highbyte]
    pause 1000
    goto loop

    encod_r:
    For i=0 TO 7
    IF mydata.0[i]=0 Then
    encoded.0[i*2]=0
    encoded.0[i*2+1]=1
    Else
    encoded.0[i*2]=1
    encoded.0[i*2+1]=0
    EndIF
    Next i
    Return
    --------------------------------------------------------------

    'rx
    encoded var word
    mydata var byte


    loop:
    SERIN2 reception, 813, [WAIT($AA),encoded.lowbyte,encoded.highbyte]
    gosub decod_r

    serout2 info, 813, [mydata]

    goto loop


    decod_r:
    For i=0 TO 7
    IF encoded.0[i*2]=0 Then
    IF encoded.0[i*2+1]=1 Then
    mydata.0[i]=0
    EndIF
    Else
    mydata.0[i]=1
    EndIF
    Next
    Return
    ------------------------------------------------------------------

    My usart connecting with my PC is working BUT the link is dead.

    Please any help is usefull
    Nikos Geronikolos
    Last edited by ngeronikolos; - 13th August 2009 at 14:56.

Similar Threads

  1. Interfacing 16F88 to RF module
    By scomi85 in forum General
    Replies: 2
    Last Post: - 19th February 2009, 12:52
  2. problem with sending data using RF module
    By rano_zen06 in forum mel PIC BASIC Pro
    Replies: 51
    Last Post: - 10th April 2008, 17:08
  3. RF Module
    By shahidali55 in forum General
    Replies: 22
    Last Post: - 9th March 2007, 09:00
  4. Rf module
    By tangray in forum Adverts
    Replies: 0
    Last Post: - 7th August 2006, 07:14
  5. Interfacting RF Module
    By rastan in forum General
    Replies: 8
    Last Post: - 10th November 2004, 22:27

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