Embedded Motion Control/Tutorials 2017: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
 Created page with '#  Introduction  #  Installing Ubuntu  # [[ Embedded Motion Control…'  | 
				No edit summary  | 
				||
| Line 17: | Line 17: | ||
# [[ Embedded_Motion_Control/Tutorials/Sharing your project through git | Sharing your project through git ]]  | # [[ Embedded_Motion_Control/Tutorials/Sharing your project through git | Sharing your project through git ]]  | ||
# [[ Embedded_Motion_Control/Using_Pico | Testing on the real robot and recording data]]  | # [[ Embedded_Motion_Control/Using_Pico | Testing on the real robot and recording data]]  | ||
# [[ Embedded_Motion_Control/Tutorials/FullExample | Full Example ]]  | |||
<!--  | <!--  | ||
Revision as of 15:45, 4 May 2017
- 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 and odometry data
 - Sharing your project through git
 - Testing on the real robot and recording data
 - Full Example