This project aims at hacking a remote controlled car by replacing the tx/rx and navigation systems. This project implements the car side.

Dependencies:   mbed-rtos mbed ssWi

This project consists of a remote controller which pilots a car holding a video camera onboard. It is divided in two main parts:

  • user side: the microcontroller reads the user input from the joystick (four potentiometers), elaborates them and then sends those commands through the wireless connection (using a XBee module);
  • car side: the microcontroller receives the sent commands (using a XBee module), elaborates them and adjusts the main engine, the steering servomotor and the two servos which move the X-Y axis of the onboard video camera.

Here are a image of the hardware and a video I recorderd and edited. http://www.mario-bambagini.it/web/sections/software/car.jpg

Concerning the part related to the user side, the project is the following.

Import programrover_pc

This project aims at hacking a remote controlled car by replacing the tx/rx and navigation systems. This project implements the pc side.

The communication protocol I exploited to make the two parts communicate each other is ssWi.

Import libraryssWi

A simple wireless protocol to let my examples communicate each other. ssWi stands for Shared Slotted Wireless protocol

Committer:
mariob
Date:
Tue Mar 12 07:35:28 2013 +0000
Revision:
0:97d3a2b0ff58
rover project - car side; MB

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mariob 0:97d3a2b0ff58 1 #include "car.hpp"
mariob 0:97d3a2b0ff58 2
mariob 0:97d3a2b0ff58 3 Car::Car ( PinName pinCamX, PinName pinCamY,
mariob 0:97d3a2b0ff58 4 PinName pinSteering, PinName pinMotor):
mariob 0:97d3a2b0ff58 5 cameraX(pinCamX), cameraY(pinCamY),
mariob 0:97d3a2b0ff58 6 steering(pinSteering), motor(pinMotor)
mariob 0:97d3a2b0ff58 7 {
mariob 0:97d3a2b0ff58 8 angleX = 0;
mariob 0:97d3a2b0ff58 9 angleY = 0;
mariob 0:97d3a2b0ff58 10 cameraX = 0.0;
mariob 0:97d3a2b0ff58 11 cameraY = 0.0;
mariob 0:97d3a2b0ff58 12 steering = 0.0;
mariob 0:97d3a2b0ff58 13 motor = 0.0;
mariob 0:97d3a2b0ff58 14 }
mariob 0:97d3a2b0ff58 15
mariob 0:97d3a2b0ff58 16 void Car::setSpeed (float s)
mariob 0:97d3a2b0ff58 17 {
mariob 0:97d3a2b0ff58 18 motor = s;
mariob 0:97d3a2b0ff58 19 }
mariob 0:97d3a2b0ff58 20
mariob 0:97d3a2b0ff58 21 void Car::setSteering (float angle)
mariob 0:97d3a2b0ff58 22 {
mariob 0:97d3a2b0ff58 23 steering = -angle;
mariob 0:97d3a2b0ff58 24 }
mariob 0:97d3a2b0ff58 25
mariob 0:97d3a2b0ff58 26 void Car::setCamera (float x, float y)
mariob 0:97d3a2b0ff58 27 {
mariob 0:97d3a2b0ff58 28 cameraX = x;
mariob 0:97d3a2b0ff58 29 cameraY = y;
mariob 0:97d3a2b0ff58 30 }