Giter Club home page Giter Club logo

rccaronrpi's Introduction

#picar

##Overview Use your raspberry pi to control a 1/10 scale RC car via a web page hosted wirelessly on your PI. All you need to do is set up your PI to use your mobile as a hotspot then log onto it's hosted web page and tilt your phone to control your car like a Wii Remote. I've used an old Tamiya hornet in this example; any car will do but if you are buying one try and get one with enough space under the bodyshell to fit all your electronics.

This is a fork of an existing github project that I've modified to:

  • Improve documentation
  • Get rid of 2/3 of the components
  • Improve control sensitivity

##Electrical This project is based on [shaunuk/picar] but replaces the servo board with a soft PWM driver on the PIs GPIO pins. I've provided the option to use either an isolated supply for the Pi or to use the supply off the ESC. The latter is the most elegant solution but has issues with the motor pulling the battery voltage down and causing the Pi to reset.

There's a video of the project here:

http://youtu.be/zxGGJxSDCvE

###Pi Power supply When it comes to powering the PI it is necessary to have a stable 5V power supply otherwise the Pi will reset. I've provided 2 methods of powering the Pi; one using a 7.2V AA battery pack and a 5V linear regulator to give a clean 5V supply and one that uses the ESC power supply and uses a software algorithm to stop the motor accidentally reseting the Pi.

There are a number of RC car electrical setups but my example uses an ESC and receiver with battery eliminator circuit . The electronics supply normally comes from the electronic speed controller (ESC) and powers the receiver and steeirng servo with 5V (note these devices are more tolerant of power supply dips than the Pi). The receiver normally receives commands from the radio controller than sends them to the ESC (throttle) and steering servo (steering). These commands fall within the 0-5V supplied by the ESC for example: 1V = steer fwds; 1.5 = steer right; 0.5 = steer left.

###Servo signal levels We'll be using PWM to control the servos which will be capable of driving 0-3.3V in 3.3mv steps; it is therefore necessary first to measure what your servo command signal voltage levels are and check they fall within this range. You can do this with a multi-meter connected to the receiver pins. On my car speed and steering both use 3 pin headers which are wired:

  • Gnd - Black
  • Power - Red
  • Throttle / Steer - Orange or White

For my car the throttle voltages were:

  • Full Fwd: .19V
  • Idle: .28V
  • Full Reverse: .36V

The steering voltages were:

  • Full Left: .19V
  • Fwds: .28V
  • Full Right: .355V

Pi with Isolated supply

Once you are happy about how you are going to power your PI and that the GPIO are up to the job you can start thinking about wiring it up.

For the 3 pin headers I used 2.54mm PCB header and soldered the wires direct. I then used superglue to stop the pins moving about. You'll also need heat-shrink or equivalent to cover over the solder joints. To power the PI I chopped a micro USB cable and used the black and red wires from that as my 5V supply. For my linear power supply I used an LM7805 circuit and put a heatsink on it to keep it nice and cool. I'd recommend using a different LDO regulator if you have one though; this circuit will stop working at 7V; a LM2940CT will regulate down to 5.5V and would be a much better option.

![](https://github.com/lawsonkeith/Pi-Rc-Car/raw/master/media/reg cct.PNG)

I then attached a PP3 battery clip and 6xAA pack with a PP3 connector on it. I've also used a 26w header socket to attach to the raspberry PI GPIO lines; I like this method as it means it's hard to mis-wire when re-connecting plus you can quickly remove your Pi as required.

I've covered my regulator circuit in heatshrink to keep it protected. You can see I've also got some protection on my header pins in case a wire falls off. You can see here how I've packaged everything up in the car. The Pi Is placed in a plastic bag for protection; it's worth putting piece of card underneath it to make sure the PCB doesn't poke through the plastic. Here agin you can see the wiring harness I made up.

Pi using ESC supply

If you opt for this approach the wiring is much simpler; also there's a lot more room in the car. The only issue is you may have to play around with the motor demand rate of change limitiing algorithm in app.js to get to a point where your Pi doesn't keep resetting because of voltage drop caused by the motor loading the battery. You can control this problem quite effectively by controlling the rate of change of the speed demand that's allowed to be sent to the ESC from the PI - you'll find the amount of rate limiting you require to keep Pi happly will depend on:

  • Motor power (stock being best)
  • Battery technology i.e. NIMH being better than NICAD
  • Battery capacity and condition
  • Drive type 2WD being better than 4WD
  • Efficiency of ESC power supply circuitry
  • How the ESC reverse works the break->reverse can cause a big demand change
  • Running surface - grass being worst

With my setup I really didn't notice much of an issue in using this algorithm in terms of how the car handled.

You can see here the wiring harness is much simpler. And there's a lot more room in the car.

##Software The Pi uses node.js to run a web server; a wi-fi dongle on the PI uses your phone as a wireless hotspot to enable wifi communications. Once you enter the web address of the PI a dialog box appears prompting you to begin racing; at that point you can control your car by tiliting your phone. An emergency stop is built into the app so if it loses comms to your phone the vehicle stops accelerating and steers forwards. The Pi-Blaster program allows pins 17 and 18 of the PI to act as PWM outputs and control steering and throttle.

The app runs on raspbian using a raspberry PI rev B although you could use the A model.

To setup your Pi you need to download some software packages then setup your Pi to run the node.js program on boot.

###Get the app First we need to clone the app from github and place it in it's own directory.

  • [cd /home/pi]
  • Get this project from GITHUB.
  • [sudo git clone https://github.com/lawsonkeith/picar]
  • [cd picar]
  • Note - do everything in this dir from now on unless instructed otherwise.

###Download node.js Download a new version of node.js

  • [sudo wget http://nodejs.org/dist/v0.10.21/node-v0.10.21-linux-arm-pi.tar.gz]
  • Then unzip it.
  • [sudo tar -xvzf node-v0.10.21-linux-arm-pi.tar.gz]
  • [sudo rm node-v0.10.21-linux-arm-pi.tar.gz]
  • Create symbolic links to the node executables
  • [sudo ln -s /home/pi/picar/node-v0.10.21-linux-arm-pi/bin/node /bin/node]
  • Package manager
  • [sudo ln -s /home/pi/picar/node-v0.10.21-linux-arm-pi/bin/npm /bin/npm]

###Download additional node packages Next we use the node package manager (npm) to install some packages that we are going to use in node to give us the functionality required to control our RC car.

  • [sudo npm install socket.io node-static sleep optimist pi-blaster.js]

###Setup the pi to boot to command line You will want to not boot to the windows environment because the PWM library can interfere with it. If you do need to use the desktop you can always start it with the command

  • [startx].

###Download PI Blaster soft PWM daemon The Pi blaster node library also requires a daemon to be downloaded that runs in the background and runs the PWM. Have a look at [https://github.com/sarfata/pi-blaster.js/] to get some more info about this package.

Note - you will want to be able to stop the daemon; see note at end.

###Setup your PWM defaults I've included a node script file called pwm_test2. Tou run this you enter:

  • [node pwm_test2]

We are now going to integrate the pi int the RC car and check we can control the servos. You can either connect your Pi to your TV and a keyboard or setup vpn or ssh to do this.

The pi-blaster node setPwm() API requires a pin and demand parameter. For example setPwm(17,.5) would set ppin 17 to 50% PWM demand or 3.2/2 V. First off make sure you are happy with how the API works and make sure you can set the output voltage on pins 17 and 18 using a meter. Once you are happy with this you can connect up your steering servo and work out the constants you Need to send to get it to steer left; right forwards and backwards. Make sure that when you go full left or Right that the servo isn't over driving as you can damage the servo.

Do the same with throttle; the demand magnitudes should be the same so it should be just a case of proving the Wiring and signal directions.

You should now be fairly confident about controlling the servos and powering your pi from the RC platform. Just modify what's in 'pwm_test2' and keep running it till you are happy with how it all works.

Enter your platform specific constants into the 'readme' file; we'll use them later to do some scaling.

###Configure PI to use Smartphone WiFi We now need to set your Pi up to use your phone as wifi.

  • (Don't do this with the Pi RJ45 fitted)
  • On your phone enable the wifi hotspot option.
  • On your Pi disable the existing WiFi option and connect to your phone.
  • You may need to enter a network key to do this; this will be in your phone somewhere.
  • Check it all works by accessing the internet from your Pi.
  • Reboot your Pi and check it still all works.
  • You are now going to set your Pi IP address to static.
  • Enter [ifconfig] write down your IP address for wlan0.
  • Edit your network setup file [sudo nano /etc/network/interfaces] file and set to to the current wlan0 IP address and from dhcp to static using the 'interfaces' file in this project as an example.
  • Reboot the Pi and check all still works; your IP address will differ.

###Setup your smartphone defaults With the Wifi Setup you can now test out the phone.

  • [node app.js]
  • Navigate to http://PI_IPADDRESS:8080/socket.html on your phone.
  • A message comes up and asks you to race.
  • On the Pi you should see the values being sent to the setPWM API by the web page running on your Pi.
  • If these work; great you can skip the next step.

###Setup html file for your setup You may need to setup the scaling specific to your platform...

  • In socket.html comment out the min and max gamma if statements.
  • Also comment out the scaling M and C terms so the event.beta and event.gamma numbers are sent to the Pi.
  • Run up your app [node app.js] and make a note of the raw numbers in the specific orientation you want to use your phone in.
  • The nummbers are degrees; in my example I tilted +/- 30 degrees to steer and 0 was full fwds and 60 full reverse.
  • Put your numbers in the readme file
  • Using excel or a calculator work out the constants you need to use to convert your phone tilt values into the setPWM API demands required to control your car.
  • Comemnt out the min max demands if construct and enter your specific min max constants at the top.
  • Now edit app.js. In the emergency stop function enter the values for steering and throttle that stop your Pi.

Now run upp the app a few times and convince yourself it's all working.

###Configure PI to run node app by default We now need to configure the app to run as default when we power up the Pi.

  • [sudo cp node-server.sh /etc/init.d/]
  • [sudo update-rc.d node-server.sh defaults]

Reboot your Pi and check you can log onto the web page. You should now be ready to race.

#Issues PiBlaster can cause issues with the Pi windows environment; mine kept crashing when I moved them when it was running. If you stop running it the problem will go away.

  • [sudo /etc/init.d/pi-blaster stop]
  • Once you're sick of this project you can uninstall it using:
  • [cd ~/picar/pi-blaster]
  • [sudo make uninstall]
  • For more command info see the 'readme' file.

rccaronrpi's People

Contributors

cytrus77 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.