Changes between Version 16 and Version 17 of Other/Summer/2023/SelfDriving
- Timestamp:
- Jul 6, 2023, 1:55:30 PM (17 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Other/Summer/2023/SelfDriving
v16 v17 98 98 - You need to add the setup file for the catkin workspace of the project in your .bashrc file. To do this, first take note of the absolute path to the project directory. You will need to add "source path_to_catkin_ws/catkin_ws/devel/setup.bash" (replace path_to_catkin_ws with the actual absolute path on your system.) 99 99 - One you are done changing the setup files, logout and login. 100 - Install the joy package by following this tutorial: http://wiki.ros.org/joy/Tutorials/ConfiguringALinuxJoystick 100 101 101 102 - To run a ROS node: use "rosrun package nodename". For example, "rosrun joy joy_node" to run the joystick package. 103 - roscore must be running first by typing "roscore" in the terminal. 104 - To run multiple processes at once, you can use Tmux (terminal multiplexer). More advanced uses can be found online, but the basic usage is as follows: 105 - use "sudo apt install tmux" to install it. 106 - use "tmux" to launch. hit ctrl+b and then % to split vertically, and ctrl+b and then " to split horizontally. 107 - ctrl+b and then arrow key lets you switch between panes 108 - Mouse can be enabled if you use a tmux configuration file. Follow this: https://unix.stackexchange.com/questions/516800/how-do-i-enable-tmux-mouse-support 102 109 103 110 Other Notes: