Difference between revisions of "Project ROS"

From MAE/ECE 148 - Introduction to Autonomous Vehicles
Jump to navigation Jump to search
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:


== What is ROS? ==
== What is ROS? ==
The open-source Robot Operating System, otherwise known as ROS, is a Linux based framework for robotic control. It aims to simplify the task of creating complex and robust robot behavior across a wide variety of robotic platforms. A ROS system is comprised of a number of independent nodes, each of which communicates with the other nodes using a publish/subscribe messaging model.  For example, a particular sensor’s driver might be implemented as a node, which publishes sensor data in a stream of messages. These messages could be consumed by any number of other nodes, including guidance, pathfinding, etc.




ROS was built from the ground up to encourage collaborative robotics software development. For example, one laboratory might have experts in mapping indoor environments, and could contribute a world-class system for producing maps. Another group might have experts at using maps to navigate, and yet another group might have discovered a computer vision approach that works well for recognizing small objects in clutter. ROS was designed specifically for groups like these to '''collaborate''' and '''build upon each other's work'''.


== Getting Started with ROS ==
Since there is limited time span for each version, we recommend you to install ROS kinetics, which lasts until 2021.


This instruction helps you install ROS Kinetic Kame on your platform. For Mac users, to install ROS on Ubuntu through Virtual Machine is preferred.
  [http://wiki.ros.org/kinetic/Installation ROS Kinetic installation instructions]


== Getting Started with ROS ==
The followings are step by step instructions for learning ROS from the start.
 
1.[http://wiki.ros.org/ROS/Tutorials/InstallingandConfiguringROSEnvironment Installing and Configuring Your ROS Environment]
 
This tutorial helps you installing ROS and setting up the ROS environment on your computer.
 
2.[http://wiki.ros.org/ROS/Tutorials/NavigatingTheFilesystem Navigating the ROS Filesystem]
 
This tutorial introduces ROS filesystem concepts, and covers command like roscd, rosls, and rospack.
 
3.[http://wiki.ros.org/ROS/Tutorials/CreatingPackage Creating a ROS Package]
[http://wiki.ros.org/ROS/Tutorials/BuildingPackages Building a ROS Package]
 
These tutorial cover using roscreate-pkg or catkin to create a new package,  rospack to list package dependencies and also the toolchain to build a package.
 
4.[http://wiki.ros.org/ROS/Tutorials/UnderstandingNodes Understanding ROS Nodes]
 
*A node is an '''executable file''' within a ROS package. The use of roscore, rosnode, and rosrun is also discussed in this tutorial.
 
5.[http://wiki.ros.org/ROS/Tutorials/UnderstandingTopics Understanding ROS Topics]
 
*This tutorial introduces ROS topics, basically how ROS works as well as how to use the rostopic and rqt_plot.
 
6.[http://wiki.ros.org/ROS/Tutorials/UnderstandingServicesParams Understanding ROS Services and Parameters]
 
This tutorial introduces ROS services, and parameters as well as using the rosservice and rosparam commandline tools.
 
7.[http://wiki.ros.org/ROS/Tutorials/UsingRqtconsoleRoslaunch Using rqt_console and roslaunch]
 
This tutorial introduces ROS using rqt_console and rqt_logger_level for debugging and roslaunch for starting many nodes at once.
 
8.[http://wiki.ros.org/ROS/Tutorials/UsingRosEd Using rosed to edit files in ROS]
 
This tutorial shows how to use rosed to make editing easier.
 
9.[http://wiki.ros.org/ROS/Tutorials/CreatingMsgAndSrv Creating a ROS msg and srv]
 
This tutorial covers how to create and build msg and srv files as well as the using rosmsg, rossrv and roscp.
 
 
10. *Writing nodes. By following the template in these tutorials, you will be able to create your own node!
 
[http://wiki.ros.org/ROS/Tutorials/WritingPublisherSubscriber%28c%2B%2B%29 Writing a Simple Publisher and Subscriber (C++)]
 
[http://wiki.ros.org/ROS/Tutorials/WritingPublisherSubscriber%28python%29 Writing a Simple Publisher and Subscriber (Python)]
 
[http://wiki.ros.org/ROS/Tutorials/ExaminingPublisherSubscriber Examining the Simple Publisher and Subscriber]


[INSERT TUTORIAL WALKTHROUGH HERE]


For further study, a complete tutorials can be found from [http://wiki.ros.org/ROS/Tutorials ROS Tutorials]


For reference, a list of commonly-used, core ROS commands and functions have been compiled for your convenience and can be accessed [https://drive.google.com/open?id=1bY-BdCF2-IZiV7DybYfufrefr8EV_izg HERE].
For reference, a list of commonly-used, core ROS commands and functions have been compiled for your convenience and can be accessed [https://drive.google.com/open?id=1bY-BdCF2-IZiV7DybYfufrefr8EV_izg HERE].
Line 219: Line 271:




===Controlling the Motor and Servo: actuator===
====Controlling the Motor and Servo: actuator====


The '''actuator.py''' script allows us to control the motors and servo. To use '''actuator.py''', make sure you have the '''Adafruit_PCA9685''' library installed. Installation instructions [https://github.com/adafruit/Adafruit_Python_PCA9685 here].
The '''actuator.py''' script allows us to control the motors and servo. To use '''actuator.py''', make sure you have the '''Adafruit_PCA9685''' library installed. Installation instructions [https://github.com/adafruit/Adafruit_Python_PCA9685 here].
Line 233: Line 285:
         self.pwm.set_pwm(self.channel, 0, pulse)
         self.pwm.set_pwm(self.channel, 0, pulse)
This function is a wrapper that makes it simpler to control the PWM by just providing the PWM '''pulse''' as input.
This function is a wrapper that makes it simpler to control the PWM by just providing the PWM '''pulse''' as input.


===Additional Nodes===
===Additional Nodes===
Line 241: Line 292:
== Challenges ==
== Challenges ==


One of the major problems we faced was inconsistent platform support from ROS. The version of ROS which we used, ROS Kinetic, was built for Ubuntu systems, so we ran into many issues with running it on the Raspberry Pi, which ran on a Raspbian.
One of the major problems we faced was inconsistent platform support from ROS. The version of ROS which we used, ROS Kinetic, was built for Ubuntu systems, so we ran into many issues with running it on the Raspberry Pi, which ran on a Raspbian. As a result, there were many issues with incompatibility between ROS and our Raspberry Pi.
 
Another problem we ran into was lack of memory (RAM) on our Raspberry Pi when running some ROS commands. When trying to run '''catkin_make''' on our Raspberry Pi, our Raspberry Pi would usually freeze. We fixed this issue by running '''catkin_make''' only on specific packages. Specifically, we used the command '''catkin_make -DCATKIN_WHITELIST_PACKAGES="package1;package2"''' More information [http://wiki.ros.org/catkin/commands/catkin_make here].


== Potential Future Work ==
== Potential Future Work ==
Since ROS  is a new software platform with a different framework from that of donkeycar, navigation, odometry and image recognition are all potential works that can be accomplished through ROS.
*Writing an image transcript publisher node and subscriber node to capture image.
There are many problems our group met when we  build our own publisher and subscriber node for image transports. There is a package called cvbridge which allows us to transform the Opencv image to the image ROS accept. It is a necessary step. But our RPI could not find this module no matter how we fixed it. Make sure the workspace is tidy and the version corresponds to your python version before download any packages and dependencies.
*Writing a publisher node and subscriber node for ps3 joysticks.
We used weeks to debug errors from [http://wiki.ros.org/joystick_drivers Joystick_drivers ] package. Again, RPI could not find roslib for unknown reasons. Setting nodes for Joysticks is more difficult than the keyboard. But joystick allows you to control your car way better than the keyboard does, which has a high latency.
* Motion Planning which involves odometry and navigation
This is the key part ROS played on industrial robots nowadays. Mostly TurtleBot and drone are used to achieve locomotion following certain paths. You can assemble encoders or range sensors on the RC car to capture distance while driving. Then several algorithms can be published to follow specific paths or to avoid blocks on the track. There will be more interactions between different nodes.

Latest revision as of 20:19, 24 March 2018

What is ROS?

The open-source Robot Operating System, otherwise known as ROS, is a Linux based framework for robotic control. It aims to simplify the task of creating complex and robust robot behavior across a wide variety of robotic platforms. A ROS system is comprised of a number of independent nodes, each of which communicates with the other nodes using a publish/subscribe messaging model. For example, a particular sensor’s driver might be implemented as a node, which publishes sensor data in a stream of messages. These messages could be consumed by any number of other nodes, including guidance, pathfinding, etc.


ROS was built from the ground up to encourage collaborative robotics software development. For example, one laboratory might have experts in mapping indoor environments, and could contribute a world-class system for producing maps. Another group might have experts at using maps to navigate, and yet another group might have discovered a computer vision approach that works well for recognizing small objects in clutter. ROS was designed specifically for groups like these to collaborate and build upon each other's work.

Getting Started with ROS

Since there is limited time span for each version, we recommend you to install ROS kinetics, which lasts until 2021.

This instruction helps you install ROS Kinetic Kame on your platform. For Mac users, to install ROS on Ubuntu through Virtual Machine is preferred.

  ROS Kinetic installation instructions

The followings are step by step instructions for learning ROS from the start.

1.Installing and Configuring Your ROS Environment

This tutorial helps you installing ROS and setting up the ROS environment on your computer.

2.Navigating the ROS Filesystem

This tutorial introduces ROS filesystem concepts, and covers command like roscd, rosls, and rospack.

3.Creating a ROS Package Building a ROS Package

These tutorial cover using roscreate-pkg or catkin to create a new package, rospack to list package dependencies and also the toolchain to build a package.

4.Understanding ROS Nodes

  • A node is an executable file within a ROS package. The use of roscore, rosnode, and rosrun is also discussed in this tutorial.

5.Understanding ROS Topics

  • This tutorial introduces ROS topics, basically how ROS works as well as how to use the rostopic and rqt_plot.

6.Understanding ROS Services and Parameters

This tutorial introduces ROS services, and parameters as well as using the rosservice and rosparam commandline tools.

7.Using rqt_console and roslaunch

This tutorial introduces ROS using rqt_console and rqt_logger_level for debugging and roslaunch for starting many nodes at once.

8.Using rosed to edit files in ROS

This tutorial shows how to use rosed to make editing easier.

9.Creating a ROS msg and srv

This tutorial covers how to create and build msg and srv files as well as the using rosmsg, rossrv and roscp.


10. *Writing nodes. By following the template in these tutorials, you will be able to create your own node!

Writing a Simple Publisher and Subscriber (C++)

Writing a Simple Publisher and Subscriber (Python)

Examining the Simple Publisher and Subscriber


For further study, a complete tutorials can be found from ROS Tutorials

For reference, a list of commonly-used, core ROS commands and functions have been compiled for your convenience and can be accessed HERE.


Controlling the Donkey Car Using ROS Nodes

Utilizing the Donkeycar framework, in theory, should be simple: a direct publisher-subscriber connection should suffice to directly operate and control the Donkeycar. To accomplish this, the following is implemented:

  > A publisher node to receive specified keyboard inputs and post them to the controls topic for subscribers to draw from.
  > A subscriber node to receive values posted to the controls topic and send them to the motors to operate the Donkeycar.

Specified details are described below. All of the following code can be found on GitHub at the following repository:

Winter 2018 "driving_donkey" ROS Package


Main Publisher Node: keyboard_inputs

Our central publisher node is named keyboard_inputs.py, and utilizes Python as the language of operation. This publisher node is organized such that additional keyboard-input features can easily be implemented for future projects.

The backbone of this node is built from the curses library, a powerful set of functions leveraging user keyboard inputs. Please note that this publisher node utilizes the curses library, so if you do not have it downloaded on your RPi (or similarly, if you receive an error stating that "import curses" failed), run the command:

  pip install curses

This will install the curses library on your machine.

Documentation for the curses library can be found HERE. We highly recommend taking a look through the various functions available through this library, to understand the scope of its functionality as well as to inspire potential add-ons to the current set of curses functions implemented in our publisher node.

In general, this program takes in a specified keyboard input (namely, the arrow keys, q, or spacebar) to modify the servo and speed control motors' PWM values. A list of currently-accepted keyboard inputs is shown below:

  > q: Shutsdown the user interface and node. NOTE: This command must be used in place of CTRL-C.
     Attempting to use CTRL-C to exit the node will effectively crash the terminal window.
  > spacebar: Fast stop. Pressing this immediately resets the speed control PWM to its neutral value.
  > left/right arrow: Decreases/Increases the servo (steering) motor PWM values posted to the controls topic
  > up/down arrow: Decreases/increases the speed control motor PWM values posted to the controls topic

Let's break down the code to see exactly what is going on. The first thing to note is that this file references the config.py file utilized in our traditional Donkey framework:

  from config import *

From here, the script pulls the max/neutral/min steering/throttle PWM values determined from the original Donkeycar calibration. Make sure an (updated) copy of this file identical to the one in your d2 folder exists in the same directory where keyboard_input.py exists. The next thing to note is that the type of message we'll be uploading to the controls topic is a double-precision float set of arrays:

  from std_msgs.msg import Int16MultiArray

This allows us to post all the PWM values simultaneously to our topic without having to send multiple messages. Each PWM value will be held in a different element of the array. This also allows to easily expand the scope of our message to send additional commands to the topic, should future features be implemented (for example, a binary on/off switch to initialize stereo vision). The next few sets of lines initialize the curses UI. Specific documentation of these commands may be found in the curses library link posted above. The next important line is the initialization of our safety timeout value:

  no_response_max_time = 5000 # milliseconds

Every time a keyboard input is triggered, a built-in counter within the curses framework resets to 0. This timer then counts the number of milliseconds before another keyboard input occurs; if no input is detected within the specified time (in this case, 5000 ms = 5 seconds), the interrupt-style function screen.getch() outputs -1 (in contrast to 'q', 'b', or any other character on the keyboard). This allows us to create a case that does something in the case that we experience a user timeout, i.e.: screen.getch() == -1. For our purposes, this will be a safety switch that automatically resets both the steering and throttle to its neutral positions (more on that below). The next important lines are the initialization of important parameters:

  rate = rospy.Rate(100) # 100hz
  steering_neutral = round((STEERING_RIGHT_PWM + STEERING_LEFT_PWM)/2.0)
  throttle_neutral = THROTTLE_STOPPED_PWM + 10
  throttle_max = THROTTLE_STOPPED_PWM + THROTTLE_RANGE
  throttle_min = THROTTLE_STOPPED_PWM - THROTTLE_RANGE
  steering_scale = 15

Our rospy rate is set to 100Hz -- thus messages are being published to the controls topic at a maximum rate of 100/second. This, of course, will rarely happen since messages are only going to be published when the user presses a key! Steering_neutral, throttle_neutral, throttle_max, throttle_min are all straightforward -- as mentioned earlier, these commands draw upon the config.py values to determine the bounds of potential PWM values to be posted to the topic. Lastly, steering_scale determines how much the PWM changes each time the user presses the right/left arrow keys. Next is our initialization of our publisher message:

  pwm_input = Int16MultiArray()
  pwm_input.data = [steering_neutral,throttle_neutral]

We initialize message pwm_input or type Int16MultiArray, which currently includes [steering, throttle] values set to their respective neutral values. These values will be dynamically updated and reposted to the controls topic as the user provides keyboard inputs. Additional parameters can easily be appended to the message by adding additional elements to the current array.

Now, onto the bulk of the script -- the case-based commands. In general, right/left and up/down keys do the same thing, but in a reverse direction, so only one of each will be documented here. The first part of the right key case checks to see if the current PWM is already maxed out -- if it is, nothing changes:

  elif char == curses.KEY_RIGHT:
       # print doesn't work with curses, use addstr instead
       if pwm_input.data[0] >= STEERING_RIGHT_PWM:
            # limit the steering max value (right side)
            pwm_input.data[0] = STEERING_RIGHT_PWM

If the current steering PWM falls between the MIN and MAX values, it will be changed by +steering_scale (+15):

       else:
            pwm_input.data[0] += steering_scale

The next chunk of text is purely for ease-of-use purposes. If a user is remotely controlling the car, they will be unable to visually see how far their wheels are turned -- that is, it will be hard to intuitively know how dramatic they are currently turning. Thus a visual aid was provided: Each time the right arrow is triggered, a '>' added to the screen so the user can see relatively how far over the user is turning. For example, if the node is currently posting a steering_PWM of neutral+3*steering_scale, the user would see the following on the terminal window:

  [         O>>>   ]

The reverse would be true for the user pressing the left arrow key.

The up/down cases are much more straightforward. Similar to the right/left case, the node checks to make sure the user input doesn't cause the resulting PWM throttle value to fall outside of its MIN/MAX range:

  elif char == curses.KEY_UP:
       if pwm_input.data[1] >= throttle_max:
            # limit the steering max value
            pwm_input.data[1] = throttle_max

Otherwise, the node adjusts its throttle PWM by +1

       else:
       pwm_input.data[1] += 1

Now, let's analyze the special cases. The first occurs when the user presses spacebar. This immediately resets the throttle to zero:

  elif char == ord(' '):
       # hard stop -- hitting spacebar resets the throttle PWM to neutral 
       pwm_input.data[1] = throttle_neutral

Lastly, the timeout case is utilized -- this resets both the steering and throttle PWMs to neutral:

  elif char == -1:
       # Increase the safety counter, in case connection is lost this will trigger a stop
       pwm_input.data = [steering_neutral,throttle_neutral]

In each case, the user terminal screen is updated to reflect the current state of the steering/throttle PWM values:

       screen.addstr(3, 0, \
                   'Currently outputting:'\
                   '[Steering PWM, Throttle PWM] = ')
       screen.addstr(3, 52, str(pwm_input.data))


The remainder of the code cleans up the curses platform in the case the node is exited.

LOGISTICAL CHALLENGES: We (sadly) found out that most laptop keyboards only accept 2 simultaneous keys at once, and can only read a single key continuously at a time. This holds problems when trying to quickly and dynamically control the car, such as rapidly changing steering from right to left, or trying to control both throttle and steering simultaneously (ex: holding both the right and up keys at once). This can be solved by utilizing an external/separate keyboard, but this is clearly not optimal. It would be practical to find an alternate solution to this problem.


Main Subscriber Node: controls_receiver

Our central subscriber node is named controls_receiver.py, and utilizes Python as the language of operation. The controls_receiver node makes use of the actuator.py file located in the same folder. The actuator.py file is explained in more detail in the following sub-section.

To run this node, make sure roscore is running. On the terminal:

roscore

Then run the command:

rosrun (package location) controls_receiver.py

By default, if you are using driving_donkey as the name for the package:

rosrun driving_donkey controls_receiver.py

Now, let's break down each line in the code:

import rospy

We must import rospy in order to use classes and functions for ROS.

from std_msgs.msg import Int16MultiArray as PWM

This imports the Int16MultiArray message type from the std_msgs/msg folder, and uses PWM as a nickname.

from actuator import PWMController

This imports the PWMController class from actuator.py, and allows us to send PWM to the Raspberry Pi and PWM controller.

from config import *

This imports all of our custom settings, such as the STEERING_CHANNEL, THROTTLE_STOPPED_PWM, etc.

STEERING = 0
THROTTLE = 1

This is the array position for steering or throttle in the Int16MultiArray message that is sent from the publisher.

steering_controller = PWMController(channel=STEERING_CHANNEL) 
throttle_controller = PWMController(channel=THROTTLE_CHANNEL)

Here we create an instance of PWMController to control each of the steering and throttle.

slower_downer = 0

This variable needs a better name. It is not entirely tested to actually work, but it was created in an attempt to slow down our motor, since it was too fast. Explained in detail later.

def listener():
    rospy.init_node("actuator", anonymous=True)
    print("Running actuator subscriber")
    rospy.Subscriber("controls", PWM, callback)
    rospy.spin()    

The listener function receives the messages from the publisher via the controls topic. The first line creates the node and names it actuator. The third line creates a subscriber so that we can receive PWM type messages from the controls topic. When a message is received, the function callback is called. Finally, rospy.spin() makes it so Python will not exit until this node is stopped.

def callback(data):
    global slower_downer
    rospy.loginfo(rospy.get_caller_id() + " Data received: %s", data)
   
    new_throttle = data.data[THROTTLE]
    new_steering = data.data[STEERING]

    slower_downer += 1
    slower_downer %= 10
    print("slower downer %d" % slower_downer)
    if (slower_downer == 0):
        throttle_controller.set_pwm(THROTTLE_STOPPED_PWM)
    elif (new_throttle < THROTTLE_STOPPED_PWM+THROTTLE_RANGE and new_throttle > THROTTLE_STOPPED_PWM- THROTTLE_RANGE):
        print("new throttle %d" % new_throttle)
        throttle_controller.set_pwm(new_throttle)
    
    print("new steering %d" % new_steering)
    steering_controller.set_pwm(new_steering)

This function is called whenever a message is received by the listener. We use global slower_downer to keep track of how many times slower_downer has been incremented. rospy.loginfo(rospy.get_caller_id() + " Data received: %s", data) allows us to print the data that is received from the controls topic to the terminal.

    new_throttle = data.data[THROTTLE]
    new_steering = data.data[STEERING]

This is the new PWM for both the throttle and the steering received from the controls topic.

    slower_downer += 1
    slower_downer %= 10
    print("slower downer %d" % slower_downer)
    if (slower_downer == 0):
        throttle_controller.set_pwm(THROTTLE_STOPPED_PWM)

The slower downer attempts to set the PWM to the stopped PWM every 10 times callback is called. This does not work entirely as expected, since callback is called only when a message is sent, so when we actually change the steering/throttle PWM from the keyboard_input node.

elif (new_throttle < THROTTLE_STOPPED_PWM+THROTTLE_RANGE and new_throttle > THROTTLE_STOPPED_PWM- THROTTLE_RANGE):
         print("new throttle %d" % new_throttle)
         throttle_controller.set_pwm(new_throttle)

The if condition allows us to set a maximum PWM (or minimum PWM for reverse direction) in order to prevent our car from moving too fast. The PWM for the throttle is then set to that of new_throttle.

    steering_controller.set_pwm(new_steering)

This simply sets the steering PWM to the value of new_steering.

if __name__ == '__main__':
    listener()

This simply calls the listener() function if controls_receiver.py is called from the terminal.


Controlling the Motor and Servo: actuator

The actuator.py script allows us to control the motors and servo. To use actuator.py, make sure you have the Adafruit_PCA9685 library installed. Installation instructions here.

   def __init__(self, channel, frequency=60):
       import Adafruit_PCA9685
       self.pwm = Adafruit_PCA9685.PCA9685() 
       self.pwm.set_pwm_freq(frequency)
       self.channel = channel

This creates an instance of the PWMController class. The user must provide a channel when creating an instance of this class. The user can also set a frequency, but it is set to 60 Hz by default. The first line of the function imports the Adafruit_PCA9685 library. Next we set the class variable pwm, which allows us to control the PWM at a specific channel on the PWM controller. The frequency of pwm is then set to the provided frequency. By default it is 60 Hz. Next, the channel for the PWM is set to self.channel.

   def set_pwm(self, pulse):
       self.pwm.set_pwm(self.channel, 0, pulse)

This function is a wrapper that makes it simpler to control the PWM by just providing the PWM pulse as input.

Additional Nodes

NOTE: These nodes DO NOT CURRENTLY WORK. Our team was unable to solve the logistical bug issues that resulted when attempting to run these nodes. Specific errors and their speculated causes are described below.

Challenges

One of the major problems we faced was inconsistent platform support from ROS. The version of ROS which we used, ROS Kinetic, was built for Ubuntu systems, so we ran into many issues with running it on the Raspberry Pi, which ran on a Raspbian. As a result, there were many issues with incompatibility between ROS and our Raspberry Pi.

Another problem we ran into was lack of memory (RAM) on our Raspberry Pi when running some ROS commands. When trying to run catkin_make on our Raspberry Pi, our Raspberry Pi would usually freeze. We fixed this issue by running catkin_make only on specific packages. Specifically, we used the command catkin_make -DCATKIN_WHITELIST_PACKAGES="package1;package2" More information here.

Potential Future Work

Since ROS is a new software platform with a different framework from that of donkeycar, navigation, odometry and image recognition are all potential works that can be accomplished through ROS.

  • Writing an image transcript publisher node and subscriber node to capture image.

There are many problems our group met when we build our own publisher and subscriber node for image transports. There is a package called cvbridge which allows us to transform the Opencv image to the image ROS accept. It is a necessary step. But our RPI could not find this module no matter how we fixed it. Make sure the workspace is tidy and the version corresponds to your python version before download any packages and dependencies.

  • Writing a publisher node and subscriber node for ps3 joysticks.

We used weeks to debug errors from Joystick_drivers package. Again, RPI could not find roslib for unknown reasons. Setting nodes for Joysticks is more difficult than the keyboard. But joystick allows you to control your car way better than the keyboard does, which has a high latency.

  • Motion Planning which involves odometry and navigation

This is the key part ROS played on industrial robots nowadays. Mostly TurtleBot and drone are used to achieve locomotion following certain paths. You can assemble encoders or range sensors on the RC car to capture distance while driving. Then several algorithms can be published to follow specific paths or to avoid blocks on the track. There will be more interactions between different nodes.