MRC/Tutorials: Difference between revisions

From Control Systems Technology Group
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
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 [[Embedded_Motion_Control_2018/FAQ | FAQ]].
# [[ Embedded Motion Control/Tutorials/Introduction | Introduction ]]
# [[ Embedded Motion Control/Tutorials/Introduction | Introduction ]]
# [[ Embedded Motion Control/Tutorials/Installing Ubuntu | Installing Ubuntu ]]
# [[ Embedded Motion Control/Tutorials/Installing Ubuntu | Installing Ubuntu ]]

Revision as of 09:06, 2 May 2018

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.

  1. Introduction
  2. Installing Ubuntu
  3. Customizing Ubuntu
  4. Do the following C++ tutorials:
    1. cplusplus.com: up to and including Name visibility
    2. 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
  1. Installing the EMC environment
  2. Setting up your project
  3. Setting up an IDE
  4. Setting up the PICO simulator
  5. Towards an autonomous robot
  6. Obtaining laser and odometry data
  7. Sharing your project through git