element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum HF Radio for data communication
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 7 replies
  • Subscribers 665 subscribers
  • Views 2311 views
  • Users 0 members are here
  • raspberry pi iot
  • smart garden
  • radio transceiver
  • raspberry_pi
Related

HF Radio for data communication

brains93
brains93 over 8 years ago

Hello Guys & Girls,

 

I have an allotment which I am in the process of "making smart" i.e humidity, temperature and moisture sensors, this is all going well and to plan for the moment, but I had a thought it would be nice to have the data sent back to my house where it could be stored and processed, I was even thinking i could make a basic app to show the current or past data. This is not essential as I want the loop to be self contained i.e if it needs water it will auto-magicly open the valve to the rain water tank and pump water out to the plants without my interference needed.

 

The data collections is just a "Lets see if I can" scenario but I am quite new to the electrical building world, so I thought I would get some advice from the experts before I blow anything up. I think the easiest option would be to use a USB data dongle and a sim card to get 3/4G connectivity and send the data back that way, but where is the fun in that.

 

In one of my jobs I use a lot of radio equipment and I am fairly o fay with it, my thinking was I could set up a small radio transmitter (it would have to be 4W or below in power output in order to stay on the correct side of the law) and have it transmit Morse to a receiver at the house which will be hooked up to a raspberry pi to decode the Morse (Transmitting Morse means it should be able to go further on smaller power levels), My house is about 5 mile or so away from my allotment which I think with a bit of tinkering and testing I should be able to get a signal to the house using a sky-wave propagation method which means I need to use between a 3Mhz and 30Mhz frequency range (HF).

 

As I said I am far from an expert on any of these fields so any words of wisdom, advice, warnings or manic twitching would be appreciated. image

  • Sign in to reply
  • Cancel
  • RParkerE
    RParkerE over 8 years ago

    I would look into using XBee. The have modules which can reach ranges of 40 miles. But they have modules that have a range of 6 miles which would work for your specific case (you may want to opt for the 15 mile module though). It runs at 900 MHz but uses an antenna to boost the range.

    You can read more about them here: https://www.sparkfun.com/pages/xbee_guide

    However, you will not be able to buy them from sparkfun as they are a retired product, but many other sites do have them for sale.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • shabaz
    shabaz over 8 years ago

    Hi Grant,

     

    There may be issues with telemetry type stuff at the HF band, as I understand it cannot be an automatic transmission unless someone is physically present near the device, for the amateur radio bands. I could be totally wrong.

    Anyway, there are alternative ways which will be easier and cheaper. There are not a lot of integrated chipsets to do HF, whereas there are plenty that cover unlicensed bands known as ISM 'sub-1GHz' and they include 433MHz space, and some space at 868MHz/915MHz depending on the country. No need for HF style propagation off atmosphere with them.

    There are requirements on power (nowhere near 4W) and duty cycle. Ordinarily you may have trouble reaching 5 miles with (say) FSK on these bands with low power unless it is line-of-sight, but there are some techniques that will allow excellent message recovery, they rely on spread spectrum methods for the transmission.

    If you're using something like Arduino at your sensor locations, then you can get plug-on radio boards, with protocols that are packet-based, so they handle the encoding, you just need to supply the desired bytes. There is a small bit of programming involved to set the frequency, poll the device (or use interrupts) etc. Check out LoRa, there are SX1276MB1MAS and SX1276LB1LAS boards. You still need a good antenna but 5 miles should be very feasible unless you're in an extremely built-up area. Apparently you can cover a large chunk of Manhattan with these devices, with good antenna placement.

    There are also paid services on the sub-1GHz bands, but I've not used them, they are operator-dependent and you may get a different quality of ordering experience depending on which country you're in.

    In summary, if you're ok with a bit of coding, then sub-1GHz is a good, free option for this distance.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • brains93
    brains93 over 8 years ago in reply to shabaz

    Thanks, My coding skills are firmly in the copy and paste commando range but that sounds good image also you are 100% correct on the automatic transmissions but If i have it at a lower power and have the transmissions limited to a set time and length I can get permission to transmit.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • brains93
    brains93 over 8 years ago in reply to RParkerE

    Wow they are fantastic bits of kit, I will Have to have a look at them in more depth. I don't think built up areas would be an issue I'm In quite a rural area, It is in a dip but with a bit of heights and gains should be just fine. Thanks image

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • mcb1
    mcb1 over 8 years ago

    It's a great idea and you've at least thought about some options before posting ...great.

     

    Firstly I think you'll find many of the 'max power' regulations are written around radiated power which includes the aerial system.

    Having said that, you can do an awful lot with a good quality yagi antenna at both ends and UHF (433MHz) lends itself very well to that.

    Eric showed a few good examples using the RFM69 series transceivers in the Forget-Me-Not Challenge. They have a much lower receiver threshold and all the hard work is done for you.

     

     

    HF is not very useful in short distances.

    It relies on bouncing a signal off the ionsphere and varies depending on day/night. The antenna tend to be quite large as well.

    I'm not sure how you'd get on splattering the band with morse code to pass data, but I'm predicting it won't be positive.

     

    The 3G solution is also an idea. We use a similar system for getting data from remote sites. I know that TP-Link MR3020 takes a USB dongle for data, and has great features. Portable 3G/4G Wireless N Router - TP-Link

    I suspect that once it's up and running you'll want to add motion dection camera and then the 3G comes into it's own, and with the WiFi aspect you can probably link directly and whenever you're on site.

     

     

    Having your system automatic is ideal, but be aware that you might want to ensure you have a belts and braces approach to detecting that the instruction did actually work.

    I have known a simple watering system continue to water when it quite happily thought the valve was off image

     

    Mark

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • dougw
    dougw over 8 years ago

    I think an ideal technology for your application is LoRa. It is low power and can easily reach 5 to 20 miles.

    There are many low cost modules that implement LoRa including LoPy which has built-in Python.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • brains93
    brains93 over 8 years ago in reply to mcb1

    Hi Mark,

     

    Thanks that Challenge is an interesting read and definitely gives rise to a few ideas.

    I had a chat last night with the amateur radio society in the area, lets face it these guys know more about radios than anyone at my job! They had said about the Yagi Antenna and it is definitely an option. I will probably go down the VHF or UHF route after hearing everyone's advice but in case it is useful to anyone I thought I should expand on what I was planning with the HF.

     

    The HF antenna I was intending to use was going to be a more passive approach to sky-wave i.e not a full dipole while that would be an option using 1/4λ and keeping the frequency high to shorten the antenna length there are also devices i could acquire from my work which can be set to move the height of the antenna in order to adjust for night time atmospheric changes. BUT the way I was thinking was to use an inverted V antenna.

    image

    Now Keeping the Antenna length small would be key but with a bit of fiddling and the help of a coupler this could be mounted on top of a shed and be "relatively" low footprint, I can then bring the two 'Legs' closer to narrow the beam and make it very directional (a poor mans Yagi) and due to where I live any "overshoot" of the signal would be out the Sea (and is Isle of Man/England's problem after that **Joking of course***)

     

    As I said it sounds like VHF and UHF would be far better plans but I thought I should share my thought process in case it could be of help to others image

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube