Wireless modules and simple setup, what is required?


Closed Thread
Results 1 to 18 of 18

Hybrid View

  1. #1
    Join Date
    Dec 2010
    Posts
    409


    Did you find this post helpful? Yes | No

    Default Re: Wireless modules and simple setup, what is required?

    Quote Originally Posted by tasmod View Post
    OK I've found Dave Houstons excellent examples page, now i guess I just need pointing at a suitable pair of modules.
    Can you post a link to the page you are talking about?

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


    Did you find this post helpful? Yes | No

    Default Re: Wireless modules and simple setup, what is required?

    Mr. Houston's site
    http://davehouston.net/
    Dave
    Always wear safety glasses while programming.

  3. #3


    Did you find this post helpful? Yes | No

    Default Re: Wireless modules and simple setup, what is required?

    I just finished a project using Linx Technologies 900 MHz transceivers. Mouser has them: http://www.mouser.com/ProductDetail/...rSQqdnUWL1o%3d

    Super simple to use - these are "air wires" meaning they don't force a fixed protocol on you; you can transmit/receive just about any kind of data you want (literally, serial, PWM, etc). This is a "big deal" if you don't want to get bogged down in the details of using a fixed protocol for your data.

    As usual; the data sheet will be your best friend. They have demo systems available (I highly recommend buying the system to jumpstart your project - you can hook your uC to the board and be underway in minutes).

    Good luck!

  4. #4


    Did you find this post helpful? Yes | No

    Default Re: Wireless modules and simple setup, what is required?

    Hi mtripoli, What range distance are you aiming for with the Linx 900 mhz transceivers? Is your project one-way or two-way communication?

  5. #5


    Did you find this post helpful? Yes | No

    Default Re: Wireless modules and simple setup, what is required?

    This application only required a range around 25 feet. We did an ad hoc test of the system and got more than a 300 foot range using a ~0.75" ceramic antenna internal to the "remote" unit and a stub ~3" antenna on the base unit connected to the PC. With larger antenna's I think the range would easily be 500 feet or more. These are transceivers and we are doing two way comms. Data transmission rates come into play when determining the max distance. As I said, this device is an "air wire"; you can send any kind of "pulsed data". You could send PWM to remotely control dimming, motor speed (don't know that I'd actually recommend that one though). The module itself is very powerful; you can use it under uC control or in a "dumb" mode. Check them out...

  6. #6
    Join Date
    Aug 2006
    Location
    SWITZERLAND (french speaking)
    Posts
    938


    Did you find this post helpful? Yes | No

    Default Re: Wireless modules and simple setup, what is required?

    Hi Tasmod,

    I'm finishing a similar project to yours with LINX RF modules.

    I choose the 433MHz version to ensure better distance; I tested with a "Splatch" (from LINX too) antenna and reached easely 70 meters. I paid $13.- for the receiver (RXM-433-LR) and $8.- for the transmitter (TXM-433-LR) module.

    These RF modules are super-simple to use and it took me less than an hour from unpacking them to have sent the first data

    I made this short (simplified testing) code fot the Transmitter:
    Code:
    ' Fuses  PIC12F675 - 4MHz XTal
    @ __CONFIG _CPD_OFF &_BODEN_OFF &_MCLRE_OFF &_PWRTE_OFF &_WDT_OFF &_XT_OSC
    
    ' Registers   76543210
    OPTION_REG = %10000000 'GPIO Pull-Ups disabled
    INTCON     = %00000000 'Set Interrupts
    ANSEL      = %00000000 'Select analog inputs
    WPU        = %00000000 'Weak pull-ups (check OPTION_REG)
    GPIO       = %00000001 'Set PORTS
    TRISIO     = %00000010 'Set I/Os
    CMCON      = %00000111 'Comparator Module settings
    
    ' Program
    MAIN:
        SEROUT2 GPIO.0, 813,["TEST",1] '1200bps
        PAUSE 00
        GOTO MAIN
    END

    ...and the Receiver's code:
    Code:
    ' Fuses  PIC12F675 - 4MHz XTal
    @ __CONFIG _CPD_OFF &_BODEN_OFF &_MCLRE_OFF &_PWRTE_OFF &_WDT_OFF &_XT_OSC
    
    ' Registers   76543210
    OPTION_REG = %10000000 'GPIO Pull-Ups disabled
    INTCON     = %00000000 'Set Interrupts
    ANSEL      = %00000000 'Select analog inputs
    WPU        = %00000000 'Weak pull-ups (check OPTION_REG)
    GPIO       = %00000100 'Set PORTS
    TRISIO     = %00000000 'Set I/Os
    CMCON      = %00000111 'Comparator Module settings
    
    ' Variables
    Led   VAR BYTE
    Led   = 0
    
    ' Program
    MAIN:
        SERIN2 GPIO.2, 813,[WAIT("TEST"), DEC1 Led] '1200bps
        GPIO.1 = Led
        PAUSE 500
        GOTO MAIN
    END
    Last edited by flotulopex; - 4th April 2013 at 09:03. Reason: typo
    Roger

  7. #7
    Join Date
    Dec 2011
    Location
    IO93ok
    Posts
    190


    Did you find this post helpful? Yes | No

    Default Re: Wireless modules and simple setup, what is required?

    Hi Roger and all,

    Sorry I've not replied but I'm on a limited internet connection.

    Thanks for that info Roger. Unfortunately the site is full of 433MHz stuff already and they are suffering from clashes occasionally, hence 868Mhz requirement.

    I believe the Ciseco modules are serial input but transparent modules as well, I'm not sure regarding this, anyone know better ?

    They do have a longer range with suitable smaller sized aerials than 433.

    His requirement is up to 3km range in semi open environment, point to point. They will be used in parkland with odd tree here and there. I will be able to carry out range tests once finalised and suspect that one yagi and one whip will suffice. If not, two yagis is not out of the question.

    They will be in use for just one day occasionally during the year, probably no more than 3 times. They will be temporary and fully portable.

    Rob
    Last edited by tasmod; - 4th April 2013 at 09:41.

Similar Threads

  1. Low latency Wireless RF transceiver modules?
    By mark155 in forum General
    Replies: 0
    Last Post: - 4th March 2010, 05:20
  2. Wireless modules FCC approved
    By Michael in forum mel PIC BASIC Pro
    Replies: 10
    Last Post: - 7th September 2008, 02:23
  3. Software RS232 and wireless modules
    By Michael in forum mel PIC BASIC Pro
    Replies: 10
    Last Post: - 17th August 2008, 05:27
  4. CM02 and RF04 wireless modules problem
    By vladimir059@hot in forum mel PIC BASIC Pro
    Replies: 0
    Last Post: - 14th December 2006, 10:32
  5. Wireless comms with Linx LR modules
    By telemark in forum mel PIC BASIC Pro
    Replies: 1
    Last Post: - 2nd July 2006, 01:58

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