This is the repoitory for assignment submission of Software Subsystem of Team AUV-IITK
Compulsory for ALL subsystems You are required to complete the bandit wargame till level 15. This assignment will get you accustomed with CLI interface and the usage of basic bash commands.
- Fork this repository
- Make a folder titled "[Name]_[Roll No.]"
- Make a markdown file (Readme.md/Submission.md) and list down the steps documented by you for the levels
- Create a PR to make the submission.
- You may use the internet to understand the required commands and concepts.
- Make sure to properly document your steps for each level in the README.md file.
- Be sure to give a proper Title to your PR. (The title of PR should be "[Assignment # Submission]_[Name]_[Roll Number]_[Subsystem]")
An example submission can have the title "Assignment 1 Submission_Tejas Gupta_211107_Software" - If you encounter any issues or have questions, feel free to ask for assistance.
Please let me know if you need further clarification
Some useful resources :
- Guide to markdown file syntax - Link
These assignemnts are compulsory for the junior team members in software subsystem or those who would like to shift there subsystem. Though the first assignment is recommended for all.
- Basic knowledge of version control and md file syntax
- Basic knowledge of bash scripting
Understanding basic concepts related to ROS: nodes, topics, publishers, subscribers, messages and packages
31st May, 2023
- Create a Pull Request against the Submission branch
- Your submission should contain your source (src) folder from your workspace and a markdown file explaining all the procedures to code in detail
- Create a catkin workspace for doing your assignments.
- Create a package titles math in that workspace.
- Implement two ROS nodes within the "math" package:
- Node 1: input_node
- Create two ROS topics.
- Publish two numbers (preferably random) on the topics.
- Node 2: output_node
- Subscribe to the topics published by input_node.
- Calculate the sum of the two numbers.
- Publish the sum on a separate topic.
- Create a ROS service named "add_two_numbers".
- The service should accept two numbers from the topics published by input_node.
- The service should return the sum of the two numbers.
- Node 1: input_node
Start with the official ROS tutorials here; Do note Intermediate ones are also compulsory.Other resources will be posted as required