MRC/Tutorials: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary Tag: 2017 source edit |
||
(9 intermediate revisions by 4 users not shown) | |||
Line 11: | Line 11: | ||
Tutorials | Tutorials | ||
# Ubuntu | # Installation options: | ||
## [[MRC/Tutorials/ | #* Native Ubuntu | ||
## [[MRC/Tutorials/ | #*# [[MRC/Tutorials/Prerequisites Ubuntu|Prerequisites]] | ||
## [[MRC/Tutorials/Installation | #*# [[MRC/Tutorials/Installation of EMC environment|Installation of EMC environment]] | ||
#*Virtual Machine from a pre-configured image (RECOMMENDED) | |||
#*# [[MRC/Tutorials/Installation from OVA file|Instructions]]<nowiki/> | |||
# Using the simulator | # Using the simulator | ||
## [[MRC/Tutorials/Starting the simulator|Starting the simulator]] | ## [[MRC/Tutorials/Starting the simulator|Starting the simulator]] | ||
## [[MRC/Tutorials/Controlling the robot|Controlling the robot]] | ## [[MRC/Tutorials/Controlling the robot|Controlling the robot]] | ||
# [[MRC/Tutorials/Setting up and building your project|Setting up and building your project]] | # Your project | ||
## [[MRC/Tutorials/Setting up and building your project|Setting up and building your project]] | |||
## [[MRC/Tutorials/The EMC framework|The EMC framework]] | |||
## [[MRC/Tutorials/Cmake|Cmake]] | |||
# [[MRC/Tutorials/The EMC environment|The EMC environment]] | |||
# [[MRC/Tutorials/Simple C++ programs|Simple C++ programs]] | # [[MRC/Tutorials/Simple C++ programs|Simple C++ programs]] | ||
# [[MRC/Tutorials/Git|Git]] | #[[MRC/Tutorials/Git|Git]] | ||
# [[MRC/Tutorials/Vscode|Setting up VScode]] | #[[MRC/Tutorials/Vscode|Setting up VScode]] | ||
Documentation | Documentation | ||
# [[MRC/Tutorials/Using | The goal of the documentation is to guide as a reference to use the simulator and EMC environment. Use them when you need them. | ||
## Adding clutter and simulating wheelslip | #Using the simulator | ||
## Adding doors | ## [[MRC/Tutorials/Using a custom simulator map|Using a custom simulator map]] | ||
# | ##[[MRC/Tutorials/Adding clutter and simulating wheelslip|Adding clutter and simulating wheelslip]] | ||
##[[MRC/Tutorials/Adding doors|Adding doors]] | |||
# [[MRC/Tutorials/Frame transformations| Frame transformations]] | |||
# Working with the real robot | |||
## [[MRC/Tutorials/Real robot| Working with real robot]] | |||
## [[MRC/Tutorials/Real robot maps| Using maps on the real robot]] |
Latest revision as of 17:25, 23 April 2025
During the Mobile Robot Control (MRC) course you will encounter many tools, systems and concepts that you are currently unfamiliar with. This may be daunting at first, but soon you will notice the strengths of each of the tools and find out how they work together to allow you to program a real, physical robot. The following tutorials are aimed at getting you up speed with these tools as fast as possible.
Let's start with an overview of the tools we will be using and the roles they play within your project:
- Ubuntu: the Operating System we will be using. Ubuntu is a popular Linux distribution.
- C++: is the programming language we will be using. This means that your program, or code, will be written in C++.
- git: is a software versioning and revision control system. You will use it to share your project code between different group members, while maintaining a file version history. Think of it as Dropbox.
- VSCode: an Integrated Development Environment (IDE) for C++. All you need to create a C++ program is a simple text editor and a C++ compiler. However, it can become difficult to manage large projects, trace back where compile errors are coming from, etc. Think of VSCode as a very advanced text editor that understands C++ and makes programming C++ a lot nicer.
Tutorials
- Installation options:
- Native Ubuntu
- Virtual Machine from a pre-configured image (RECOMMENDED)
- Using the simulator
- Your project
- The EMC environment
- Simple C++ programs
- Git
- Setting up VScode
Documentation
The goal of the documentation is to guide as a reference to use the simulator and EMC environment. Use them when you need them.
- Using the simulator
- Frame transformations
- Working with the real robot