MRC/Tutorials: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 14: | Line 14: | ||
# [[ MRC/Tutorials/Setting up an IDE | Setting up an IDE ]] | # [[ MRC/Tutorials/Setting up an IDE | Setting up an IDE ]] | ||
# [[ MRC/Tutorials/Setting_up_the_PICO_simulator| Setting up the PICO simulator ]] | # [[ MRC/Tutorials/Setting_up_the_PICO_simulator| Setting up the PICO simulator ]] | ||
# [[ | # [[ MRC/Tutorials/Towards an autonomous robot | Towards an autonomous robot ]] | ||
# [[ MRC/Tutorials/Obtaining laser, odometry, and control effort data | Obtaining laser, odometry, and control effort data ]] | # [[ MRC/Tutorials/Obtaining laser, odometry, and control effort data | Obtaining laser, odometry, and control effort data ]] | ||
# [[ MRC/Tutorials/Sharing your project through git | Sharing your project through git ]] | # [[ MRC/Tutorials/Sharing your project through git | Sharing your project through git ]] |
Revision as of 11:14, 27 March 2020
In here, one can find the programs that are going to be used for this course and the proper way of operating them. If one encounters a problem/error, this is typically resolved in the tutorial. If not, then one can also consult the FAQ.
- Introduction
- Installing Ubuntu
- Customizing Ubuntu
- Do the following C++ tutorials:
- cplusplus.com: up to and including Name visibility
- MIT's Introduction to C++: up to and including Classes
- Remarks:
- For now, use a simple editor such as gedit (the ubuntu version of Notepad). We will install a more advanced editor (IDE - Integrated Development Environment) later.
- Once you have saved your C++ program (e.g. as example.cpp), it can be compiled from a terminal using:
g++ example.cpp -o example
and run with./example
- Installing the EMC environment
- Setting up your project
- Setting up an IDE
- Setting up the PICO simulator
- Towards an autonomous robot
- Obtaining laser, odometry, and control effort data
- Sharing your project through git
- Testing on the real robot and recording data
- Full Example
- Additional OpenCV
- Wall following code example
- JSON Parsing