SG Crawlers Forum


Join the forum, it's quick and easy

SG Crawlers Forum
SG Crawlers Forum
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
 
 

Display results as :
 


Rechercher Advanced Search

SGCrawlers - Crawl & Trail videos
SGCrawlers - Bash Tour Drift videos
Who is online?
In total there are 8 users online :: 0 Registered, 0 Hidden and 8 Guests

None

[ View the whole list ]


Most users ever online was 301 on Thu 21 Oct 2021 - 11:24
Latest topics
» RC Submarine: Russian Akula Class
by redboat219 Tue 27 Sep 2022 - 11:43

» Land Rover Defender D90 photos and details only (picture intensive!)
by babyboy Fri 25 Jun 2021 - 16:39

» [Offroad Bashing and Rally] Offroad Bashing and Rally at Tampines Track 12 Jan 2020 - 0900hrs
by boolean21 Sat 11 Jan 2020 - 10:15

» [Scale Trail] Woodgrove Ave - Sunday 20 Oct 2019 0900hrs
by boolean21 Sat 19 Oct 2019 - 16:31

» vHOBBY RC videos
by CraftRC Fri 21 Jun 2019 - 21:32

» Suzuki Samurai 3D Printted project
by CraftRC Sat 4 May 2019 - 18:39

» WTS : Redcat Gen 7 Pro
by staypuft Mon 7 Jan 2019 - 11:31

» Hello all! Dan here
by csd8888 Fri 5 Oct 2018 - 8:27

» [Offroad Trails] Offroading at Tampines Quarry 16 Sep 2018 - 0900hrs
by boolean21 Sat 15 Sep 2018 - 18:41

» [Scale Trail] Woodgrove Ave - Sunday 12 Aug 2018 0900hrs
by boolean21 Sat 11 Aug 2018 - 22:51

» [Trail and Bash!] Woodgrove Ave - Sunday 22 Jul 2018 0900hrs
by boolean21 Sat 21 Jul 2018 - 19:39

» [Scale Trail] Woodgrove Ave - Sunday 01 Jul 2018 0900hrs
by boolean21 Sat 30 Jun 2018 - 20:39

» wts hobbywing esc + motor
by kelvintan_hc Thu 28 Jun 2018 - 15:36

» Axial roll cage crash
by CraftRC Fri 1 Jun 2018 - 20:16

» Jeep cherokee XJ crawling
by CraftRC Sat 26 May 2018 - 21:54

» Jeep cherokee XJ crawling
by CraftRC Sat 26 May 2018 - 21:54

» Extreme Rock Crawler Axial Wraith
by CraftRC Tue 8 May 2018 - 17:35

» [Scale Trail] Woodgrove Ave - Sunday 06 May 2018 0900hrs
by boolean21 Sat 5 May 2018 - 17:14

» Cab Land Rover Defender
by CraftRC Fri 4 May 2018 - 17:41

» Cab Land Rover Defender
by CraftRC Fri 4 May 2018 - 17:41

April 2024
MonTueWedThuFriSatSun
1234567
891011121314
15161718192021
22232425262728
2930     

Calendar Calendar

Affiliates
free forum


Build your own RC car receiver

Go down

Build your own RC car receiver Empty Build your own RC car receiver

Post by laneboysrc Sun 28 Dec 2014 - 14:32

Its always fun learning something new. Ever since we got a 2.4 GHz RC system a few years ago, I wanted to understand how these things actually work. How do they send data over the air? What components are used?

Well, in the last months we finally got around digging into it. And it turned out that it is a rather simple affair. So we built our own RC receivers.

Note: these receivers are only for the HobbyKing HK310 and Turnigy 3XS radios. Different brands use different RF systems and configurations, so 2.4GHz systems are incompatible by design.

Build your own RC car receiver 16125370325_e27a67a8c8
The HobbyKing HKR3000 and XR3100 receivers along with two different versions of compatible, home-brew receivers.



The HobbyKing system uses RF technology from Nordic Semiconductor. It employs the famous nRF24 RF transceivers. Those chips are extremely popular in hobby electronic circles due to their low cost, reliability and ease of use. This is good news as it means that components and even ready made modules are easily available at low prices.

Like most 2.4GHz RF systems, the nRF24 can be configured in many different ways to achieve the functionality suitable for the application at hand. So the first task was to reverse engineer how exactly the RF system is set up in the HobbyKing RC system. This was quite some work as no documentation is available, but with a bit of preserverance we managed to find out all we need to know. We have documented everything in detail.

Building the actual receivers was straight-forward once we knew how the system works. We built two different flavours, each having strengths and weaknesses.

Build your own RC car receiver 15938071020_104bd9f138
lpc812-nrf24l01 variant on the left, nrf24le1 variant on the right

The first variant, we call it lpc812-nrf24l01, uses a commonly available NRF24L01+ module along with a NXP LPC812 micro-controller.

The NRF24L01+ module can be found for less than USD 1 per piece in qty 10 from online suppliers. The NXP LPC812 is a tiny 16-pin micro-controller that contains a 32-bit ARM Cortex-M0 core along with other useful hardware. Despite what it offers, it costs less than USD 2. It has a built-in ROM bootloader so that firmware can be flashed with an off-the-shelf USB-to-serial dongle -- no proprietary programming hardware needed. The toolchain is standard GNU GCC for ARM, hence very easy to program for.

The lpc812-nrf24l01 hardware requires a circuit board as the components come in a very small pin pitch package only. Compared to the second variant, the lpc812-nrf24l01 does not have a CPPM output, but it does have a UART preprocessour output which achieves the same functionality.

Build your own RC car receiver 16099579936_d68c0d28fb
lpc812-nrf24l01 variant on the left, nrf24le1 variant on the right

The second variant is based on the NRF24LE1 chip. Hence we call it nrf24le1. This chip includes the same RF hardware as the NRF24L01, but also has a 8051-compatible micro-controller on board. This exact same chip is used in the HobbyKing receivers.

This receiver has a very low part count: NRF24LE1 module, voltage regulator, a few capacitors; done! It can be built on a breadboard if needed. Beside the UART preprocessour output we also added a CPPM output. CPPM carries Steering, Throttle and CH3 information in a single wire.

The NRF24LE1 module is about USD 6, so more expensive than the NRF24L01. To flash the firmware one needs a special programmer, but there are lots of open designs available on the Internet. You can also get ready-made programmers in online shops for reasonable cost.

There are different versions of NRF24LE1 modules for sale, so be careful to buy the right one if you want to use the PCB we provided.

The firmware of both receiver variants is in large parts identical. The major difference lies in the hardware aspects as the 8051 is quite a different animal than the NXP LPC812.

All hardware and firmware for both designes is Open-Source. Please find all related project documents on our nrf24l01-rc Github page.

The NRF24LE1 firmware included in this project can be compiled to be compatible with the HKR3000 and XR3100 hardware. However, since those receivers use the OTP version (NRF24LE1G) one would have to replace the chip with the NR24LE1E versions to be able to use it.

have fun with RC, Werner

PS: some say I am working way to much on electronics projects lately. This is strictly not true Twisted Evil
laneboysrc
laneboysrc
Crawler

Posts : 877
Join date : 2012-05-21

http://laneboysrc.blogspot.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum