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
Arduino
  • Products
  • More
Arduino
Arduino Forum GPS
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Arduino to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 7 replies
  • Subscribers 395 subscribers
  • Views 545 views
  • Users 0 members are here
  • &
  • servo
  • gps
  • arduino
  • r/c
Related

GPS

Former Member
Former Member over 10 years ago

I was thinking about making a radio control boat about 30 inches (76 CM) long.  I would want to use the R/C unit to set a course then let the GPS to keep it on course.  I would want it to also be able to return to the launch point when I give it a signal.

It seems that this should be possible using an arduino, R/C servo and a GPS unit

  • Sign in to reply
  • Cancel

Top Replies

  • Former Member
    Former Member over 10 years ago +1
    Have you seen this site Random Tech Stuff: Experiments with the RFM69 433MHz digital transceiver module it uses a custom chip but does have some of what are looking for.
  • Robert Peter Oakes
    Robert Peter Oakes over 10 years ago +1
    An arduino could do it but with limited ram etc, it may be reduced to a very basic set of way points and not tracking intermediate spots. going home would be a case of either reversing the ay point order…
  • Former Member
    0 Former Member over 10 years ago

    Have you seen this site Random Tech Stuff: Experiments with the RFM69 433MHz digital transceiver module it uses a custom chip but does have some of what are looking for.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • clem57
    0 clem57 over 10 years ago

    The arduino is not enough processing to control and store much information on its own. You will need a an sd card attachment to save where you went and use for retracing the route. Another way would be using a raspberry pi having this and more.

    Clem

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Robert Peter Oakes
    0 Robert Peter Oakes over 10 years ago

    An arduino could do it but with limited ram etc, it may be reduced to a very basic set of way points and not tracking intermediate spots. going home would be a case of either reversing the ay point order or simple line of sight back to the starting point. correction etc on the way would be a simple matter of speed, current location and calculating the correction.

     

    This would take some cleaver programming and possibly in raw C or even assembly rather than wiring in order to get better memory usage and speed, or using an arduino MEGA2560 solving the RAM and flash issue. the overhead of having an SD card on an Arduino UNO would outway its benifits in this situation as the drivers and required bufferes will consume a significant part of the available flash and Ram

     

    A PI would work, just with more power consumption. It may be worth looking at a Arm Cortex Mx board as an option like the SAML21 from atmel

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • mcb1
    0 mcb1 over 10 years ago in reply to clem57

    The guys at Wyolum did a special board.

    https://docs.google.com/document/pub?id=1wtgUoS4d7RWNOscLEQqgQcdmxl_rW34bLy4mNCantpQ

     

    I happen to know where a few are ....

    Mark

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • clem57
    0 clem57 over 10 years ago in reply to mcb1

    Really? PM me if you can get one please. Thanks.

    Clem

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • screamingtiger
    0 screamingtiger over 10 years ago

    Thats exactly what I am doing with a quadcopter.

     

    It uses most of the Arduinos power to read and write PWM signals for a servo, assuming you also want to be able to manually control it.  2 arduinos would be suffice.  I am using an Raspberry Pi 2 for my project.

     

    Click here quadcop_project

     

     

    An rc boat is only a 2 channel item (throttle and steering) and then you need a manual override switch, so 3 channels min.  So 1 arduino might be enough if coded properly, mine is using 7 channels so its a bit much for it on top of GPS.  The GPS I am using is Serial based and called the Microstack GPS.

     

    There are many arduino variants out there, the chipkit, and the new Zero.  All of these would be more than enough power.

     

    There are already libraries written for arduino (AVR) only called ArduPilot.  Google for it, its all AVR code.  It can control an RC car which is not different from a boat in terms of what is needed.

     

    You will need the older release 2.8.1 as they have moved on to a new MCU.

    https://github.com/diydrones/ardupilot/tree/ArduCopter-2.8.1

     

    I've looked into the code before but its too much to understand so I am writing mine from scratch.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • clem57
    0 clem57 over 9 years ago

    Did this go anywhere?BOB NELSON

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • 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