lab1
pdf
keyboard_arrow_up
School
Georgia Institute Of Technology *
*We aren’t endorsed by this school
Course
8750
Subject
Mechanical Engineering
Date
Apr 3, 2024
Type
Pages
5
Uploaded by BrigadierArmadillo2134
CS/ME/ECE/AE/BME 7785
Lab 1
Due: September 15, 2023 by 4 pm
Overview
The objective of this lab is to get you familiar with the robot and to get started writing code.
Specifically, this lab consists of two parts:
•
Part 1a (individual)
: run provided Turtlebot3 code to get experience interfacing with the
robot.
•
Part 1b (group)
: answer the ROS related questions.
•
Part 2 (group)
: create your own image processing script that enables the robot to identify
a desired object in its camera image.
The code generated in Part 2 can be reused in Lab 2 to have your robot move to track whichever
object you have chosen.
Note Part 1 will take far less time than Part 2, so budget your time wisely.
Part 1 is an individual assignment, each person must demonstrate ability to run the robot from a
machine that they have access to. You can use your own laptop or the lab machines. You can not
use your partner’s laptop to demo.
We strongly encourage you to use all available resources to complete this assignment. This includes
looking at the sample code provided with the robot, borrowing pieces of code from online tutorials,
and talking to classmates. You may discuss solutions and problem solve with other groups in the
class, but each group must submit their own solution. Multiple groups should not jointly write the
same program and each submit a copy, this will not be considered a valid submission.
Submission instruction and grading details are included at the end of the document.
Handle your robot with care!
•
Battery Handling
: The robots can be powered up using 2 methods:
1. Power the OpenCR board through the AC adapter.
This is recommended if you’re
debugging code and the robot doesn’t need to be mobile.
1
Introduction to Robotics Research, Lab 1: Spring, 2024
2. LiPo (Lithium Polymer) battery: LiPo batteries are high energy density batteries which
are a popular power source for mobile robots such as UAVs, Rovers, (and Turtlebots!).
They must be operated with care as they may explode and catch fire if mishandled.
Here are some tips for handling LiPo batteries:
1. Do not hot swap batteries.
This means do not plug in the AC adapter and switch
batteries. Always power the robot down fully before removing and plugging in batteries.
2. NEVER puncture/pierce the LiPo battery and keep it away from sharp objects.
3. Do not leave batteries plugged into the robot, always unplug them after use.
4. If you notice any swollen/puffed batteries, notify the staff at once.
5. Use the LiPo battery chargers for recharging batteries.
Red LED indicates charging,
Green indicates charged.
6. If you are the last one leaving the lab, please unplug batteries from the chargers.
A constant beeping sound indicates low battery. Ensure to save your work and shutdown your
robot before replacing the battery.
•
Robot shutdown procedure
: Before plugging out the power supply, please run the com-
mand:
sudo shutdown now
Wait for the LIDAR to stop spinning and the Raspberry Pi’s green LED to stop blinking. At
this point, it is safe to remove the power supply. Abruptly powering off may lead to your SD
card getting corrupted and data loss.
Part 1a: Interfacing with the Turtlebot3
All instructions for the Turtlebot3 are available online at
http://emanual.robotis.com/docs/en/platform/turtlebot3/overview/
Complete the following steps:
1. Ensure you’ve completed the PC Setup and Turtlebot3 package installation as outlined in Lab
0.
2.
Note
: Section 3.1.5 has you place the line
export ROS_DOMAIN_ID=30
#
TURTLEBOT3
in the
bashrc.
This number should be edited depending on what robot you are using (the robot
domain IDs are listed on the OLED on boot).
3. You will be able to ping, SSH, transfer files, and exchange ROS 2 messages to the robot if you
are on the 7785/7785-5G network. Password is
robot-wifi
2
Introduction to Robotics Research, Lab 1: Spring, 2024
4. Make sure you can access the Raspberry Pi on the robot. You will need to SSH ( secure shell)
into the robot using the command,
ssh burger@192.168.1.152
(The IP 192.168.1.152 should be replaced by your Raspberry Pi’s IP or hostname)
The password is “
burger
” for all the robots. Once entering the password you should see the
terminal environment on the Raspberry Pi of your Turtlebot3!
5. Complete the Quick Start guide on the above website (listed as item 3 on the left side menu)
and verify that you are able to teleoperate the robot using the keyboard (Sections 3.5 and
3.6.1.1). Optionally, feel free to run any other examples, such as Turtlebot Follower to test
out the robot functionality.
Note:
For ROS2 the robot and your laptop have to be on the
same network for messages to communicate (e.g. run teleop on your PC rather than on the
robot). Thus, switch the network you are on to CS3660 for controlling the robot.
Part 1b: ROS Related Questions
Please answer the following questions (from Lab 0) and submit them as a PDF with your code
submission from part 2.
•
What is a ROS_DOMAIN_ID? (2pt)
•
What is a node? (2pt)
•
What is a topic? (2pt)
•
What is a message? (2pt)
•
What is a subscriber? Write the syntax to create a subscriber that subscribes to the topic
amazing_int
, which takes message of type
UInt64
, and uses the callback function
magic_fun
,
in C++ or Python. Note: This should only be a few lines of code, not a full script. (5pt)
•
What is a publisher?
Write the syntax to create a publisher that publishes to the topic
amazing_bool
, which takes message of type
Bool
, in Python. Note: This should only be a
few lines of code, not a full script. (5pt)
•
Can a node have multiple subscribers? Can a node have multiple publishers? (2pt)
Part 2: Object Following
Objective:
Create a program to reliably locate and track an object of your choice from a real-time
images stream on your computer. You are encouraged to use libraries such as OpenCV to complete
this assignment.
Note: This cannot be done using a pre-made tag tracker package like ArUco nor
using premade ML packages like ImageAI.
In this part of the lab, you will use OpenCV to locate an object from your laptop’s webcam. This
is a valuable step towards Lab 2, in which you will track the object from your robots camera frame
3
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
Introduction to Robotics Research, Lab 1: Spring, 2024
and add driving capabilities to your code. Feel free to use any additional python libraries you want,
at the very least you should use cv2 (OpenCV). You are not expected to create image processing
algorithms from scratch.
Create a new python script called
find_object.py
.
This script should receive images from the
webcam on your laptop and track the location of a specific object of your choice in the frame.
Note:
Again, this cannot be done using a pre-made tag tracker package like ArUco nor using premade ML
packages like ImageAI.
Once you have made the script it is often useful to make it an
executable
.
To do this you must first make sure you have the type of environment being used in the first line of
your code. For python this typically is,
#!/usr/bin/env python
Then, to make the file executable, using the command line in the directory (or with the full path
specified) where your file is stored type,
chmod +x object_follower.py
You may now run your python script from the command line, when in the directory where it is
stored, by giving the command,
./object_follower.py
Tips, Tricks, and Suggestions
Example code to capture and display your webcam with OpenCV in python can be found at
https://docs.opencv.org/3.0-beta/doc/py_tutorials/py_gui/py_video_display/py_video_display.html
After grabbing the image, process the image to look for your object. An easy place to start is to
use either the HoughCircles() functionality within OpenCV if your object is circular
circles = cv2.HoughCircles(cv_image, cv2.HOUGH_GRADIENT, 1, 90, param1=70, param2=60,
minRadius=50, maxRadius=0)
or use findContours() to find blobs of the same color:
im2, contours, hierarchy = cv.findContours(thresh, cv.RETR_TREE, cv.CHAIN_APPROX_SIMPLE)
As described in class, these alone will likely not be enough to produce a reliable tracking algorithm.
Be sure to prefilter your images (changing color space, blurring, sharpening, improving contrast,
thresholding, etc).
You are not required to use Hough circles or contours, if you prefer to try a
different method that is completely acceptable so long as the object is tracked.
Once you have located the object in an image, print the pixel coordinate of the object and display
some sort of marker or bounding box on the image itself.
4
Introduction to Robotics Research, Lab 1: Spring, 2024
We will provide balls of several sizes and colors for your use in the lab.
Feel free to use any of
them, or a different object of your choosing. For this lab, the object can be at any distance from
the webcam that you choose. However, it cannot take up the entire frame nor only be tracked at a
single distance exactly (you cannot say it only works at 15cm from your monitor exactly).
Grading Rubric
The lab is graded out of 100 points, with the following point distribution:
Answer ROS questions from Part 1b
20%
Successfully run teleop or example code on the robot (individual assignment)
15%
Find your chosen object in images in >65% of the frames
55%
Print the pixel location of each identified shape
5%
Annotate output images with bounding boxes or markers
5%
Submission
Part 1a:
Perform a live demonstration of you running the robot to one of the course staff by the
listed deadline. You can use your own laptop or the lab machines, you can not use your partner’s
laptop to demo Part 1. There is no code to submit.
Part 1b and 2:
1. Perform a live demonstration of you running the robot to one of the course staff by the listed
deadline.
2. Put the names of both lab partners into the header of the python script. Put your python
script, any supplementary files, and a PDF with your answers to Part 1b in a single zip file
called
Lab1_LastName1_LastName2.zip and upload on Canvas under Assignments–Lab 1.
3. Only one of the partners needs to upload code and answers.
We will set aside class time and office hours on the due date for these demos, but if your code is
ready ahead of time we encourage you to demo earlier in any of the office hours (you can then skip
class on the due date). Office hour times are listed on the Canvas homepage.
5
Related Documents
Related Questions
b.
ENGT 2020 -Robotic Fundamentals
Lab 3.5 Creating a Program
1.
What are the four types of moves and describe how they move between
waypoints.
a.
C.
arrow_forward
Please choose the false answer(s) from the following statements related to CAD!
a. It can be used for programming of robots, which may operate in a workcell arrangement, selecting and positioning tools and workpieces for NC machines.
b. It is a technology which uses computer system to assist in the creation, modification, analysis and optimization of a design.
c. Geometry can be used as a basis for other functions in CAE and CAM, saving time and reducing errors caused by redefining the geometry of design.
d. Basic role of CAD is to define the geometry of design (computer aided drafting, and geometric modelling are the most important component of CAD).
arrow_forward
a. Currently, you serve as a robotic engineer by a company, and your boss want you
to design a robot in spatial space to satisfy the following conditions:
i. Max reachable distance of the robot is 1 meter.
ii.
Only using revolute joints, connecting links and rigid load bearing links
(the length of link is 0.5m).
iii. The degree of freedom (Dof) of the robot is 2.
What is your design, how many joints and links will you use?
b. The payload of your design is 10 kg (each load bearing link can hold 5 kg, 5 kg+5
kg=10kg, the weight and payload of the connecting links will be ignored), but
your boss wants your designed robots to handle 20 kg payload. How will you
update your current design, and how many joints and links will you use in the
new design? What is the Dof of the new designed robot.
arrow_forward
You are spending the summer as an assistant learning how to navigate on a large ship carrying freight across Lake Erie. One day, you and your ship are to travel across the lake a distance of 200 km traveling due north from yourorigin port to your destination port. Just as you leave your origin port, the navigation electronics go down. The captain continues sailing, claiming he can depend on his years of experience on the water as a guide. The engineers work on the navigation system while the ship continues to sail,and winds and waves push it off course. Eventually, enough of the navigation system comes back up to tell you your location. The system tells you that your current position is 50.0 km north of the origin port and 25.0 km east of the port. The captain is a little embarrassed that his ship is sofar off course and barks an order to you to tell him immediately what heading he should set from your current position to the destination port. Give him an appropriate heading angle.
arrow_forward
System Specification
Task 1 is to complete the development of a simple simulated 2-wheel drive mobile robot platform.
You will need to research suitable actuators and platform designs. From review of your research then produce
a specification and model of the platform to hold the proposed processor unit (myRIO), and actuators together
(your chosen motors from selection available) with a battery (Hardware datasheets on BB).
arrow_forward
You are assigned as the head of the engineering team to work on selecting the right-sized blower that will go on your new line of hybrid vehicles.The fan circulates the warm air on the inside of the windshield to stop condensation of water vapor and allow for maximum visibility during wintertime (see images). You have been provided with some info. and are asked to pick from the bottom table, the right model number(s) that will satisfy the requirement. Your car is equipped with a fan blower setting that allow you to choose between speeds 0, 1,2 and 3. Variation of the convection heat transfer coefficient is dependent upon multiple factors, including the size and the blower configuration.You can only use the following parameters:
arrow_forward
Statics Problem !!!
Help me Part A , Part B , Part C!!!! Answer it this Problem Correctly!! Please give correct Solution
arrow_forward
Answer all the calculations questions, if you are not not expert please don't attempt, don't use artificial intelligence
arrow_forward
Help!!! Answer all parts correctly!! Please
arrow_forward
Help with this would be great, thanks!
arrow_forward
Hello. I just want to make sure the answers I chosen on the image attached are correct because I am unsure.
arrow_forward
You are an engineer in a company that manufactures and designs several mechanical devices, and your manager asked you to help your customers. In this time, you have two customers, one of them wants to ask about internal combustion engines while the other requires a heat exchanger with particular specifications. Follow the parts in the following tasks to do your job and support your customers.Task 1:Your first customer asked for an internal combustion engine to use it in a designed car. Your role is to describe the operation sequence of different types of available engines, explain their mechanical efficiency, and deliver a detailed technical report which includes the following steps:STEP 1Describe with the aid of diagrams the operational sequence of four stroke spark ignition and four stroke compression ignition engines.STEP 2Explain and compare the mechanical efficiency of two and four-stroke engines.STEP 3Review the efficiency of ideal heat engines operating on the Otto and Diesel…
arrow_forward
1. Please help me solve this mech. engineering question
arrow_forward
The Weather Monitor. Your South American expedition splits into two groups: one that stays at home base, and yours that goes off to
set up a sensor that will monitor precipitation, temperature, and sunlight through the upcoming winter. The sensor must link up to a
central communications system at base camp that simultaneously uploads the data from numerous sensors to a satellite. In order to
set up and calibrate the sensor, you will have to communicate with base camp to give them specific location information.
Unfortunately, the group's communication and navigation equipment has dwindled to walkie-talkies and a compass due to a river-raft
mishap, which means your group must not exceed the range of the walkie-talkies (3.0 miles). However, you do have a laser rangefinder
to help you measure distances as you navigate with the compass. After a few hours of hiking, you find the perfect plateau on which to
mount the sensor. You have carefully mapped your path from base camp around lakes and…
arrow_forward
System Specification
The aim of task 2 is to design a simulated obstacle detection sensor system for a mobile robot platform. You
should assume your chosen sensors will be placed on a small mobile robot platform as designed in task 1.
The sensor system must be able to detect objects within the range of 0mm to 1000mm and have a field of
vision of 90 degrees (see diagram below). You may need to use multiple sensors to achieve the desired
specification.
Robot
platform
H
0-1000mm
range
90° sensor
view
Example
object
arrow_forward
Help with this would be great, thanks!
arrow_forward
LESSON: AUTODESK AUTOCAD
Choose from the choices:
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you

Elements Of Electromagnetics
Mechanical Engineering
ISBN:9780190698614
Author:Sadiku, Matthew N. O.
Publisher:Oxford University Press

Mechanics of Materials (10th Edition)
Mechanical Engineering
ISBN:9780134319650
Author:Russell C. Hibbeler
Publisher:PEARSON

Thermodynamics: An Engineering Approach
Mechanical Engineering
ISBN:9781259822674
Author:Yunus A. Cengel Dr., Michael A. Boles
Publisher:McGraw-Hill Education

Control Systems Engineering
Mechanical Engineering
ISBN:9781118170519
Author:Norman S. Nise
Publisher:WILEY

Mechanics of Materials (MindTap Course List)
Mechanical Engineering
ISBN:9781337093347
Author:Barry J. Goodno, James M. Gere
Publisher:Cengage Learning

Engineering Mechanics: Statics
Mechanical Engineering
ISBN:9781118807330
Author:James L. Meriam, L. G. Kraige, J. N. Bolton
Publisher:WILEY
Related Questions
- b. ENGT 2020 -Robotic Fundamentals Lab 3.5 Creating a Program 1. What are the four types of moves and describe how they move between waypoints. a. C.arrow_forwardPlease choose the false answer(s) from the following statements related to CAD! a. It can be used for programming of robots, which may operate in a workcell arrangement, selecting and positioning tools and workpieces for NC machines. b. It is a technology which uses computer system to assist in the creation, modification, analysis and optimization of a design. c. Geometry can be used as a basis for other functions in CAE and CAM, saving time and reducing errors caused by redefining the geometry of design. d. Basic role of CAD is to define the geometry of design (computer aided drafting, and geometric modelling are the most important component of CAD).arrow_forwarda. Currently, you serve as a robotic engineer by a company, and your boss want you to design a robot in spatial space to satisfy the following conditions: i. Max reachable distance of the robot is 1 meter. ii. Only using revolute joints, connecting links and rigid load bearing links (the length of link is 0.5m). iii. The degree of freedom (Dof) of the robot is 2. What is your design, how many joints and links will you use? b. The payload of your design is 10 kg (each load bearing link can hold 5 kg, 5 kg+5 kg=10kg, the weight and payload of the connecting links will be ignored), but your boss wants your designed robots to handle 20 kg payload. How will you update your current design, and how many joints and links will you use in the new design? What is the Dof of the new designed robot.arrow_forward
- You are spending the summer as an assistant learning how to navigate on a large ship carrying freight across Lake Erie. One day, you and your ship are to travel across the lake a distance of 200 km traveling due north from yourorigin port to your destination port. Just as you leave your origin port, the navigation electronics go down. The captain continues sailing, claiming he can depend on his years of experience on the water as a guide. The engineers work on the navigation system while the ship continues to sail,and winds and waves push it off course. Eventually, enough of the navigation system comes back up to tell you your location. The system tells you that your current position is 50.0 km north of the origin port and 25.0 km east of the port. The captain is a little embarrassed that his ship is sofar off course and barks an order to you to tell him immediately what heading he should set from your current position to the destination port. Give him an appropriate heading angle.arrow_forwardSystem Specification Task 1 is to complete the development of a simple simulated 2-wheel drive mobile robot platform. You will need to research suitable actuators and platform designs. From review of your research then produce a specification and model of the platform to hold the proposed processor unit (myRIO), and actuators together (your chosen motors from selection available) with a battery (Hardware datasheets on BB).arrow_forwardYou are assigned as the head of the engineering team to work on selecting the right-sized blower that will go on your new line of hybrid vehicles.The fan circulates the warm air on the inside of the windshield to stop condensation of water vapor and allow for maximum visibility during wintertime (see images). You have been provided with some info. and are asked to pick from the bottom table, the right model number(s) that will satisfy the requirement. Your car is equipped with a fan blower setting that allow you to choose between speeds 0, 1,2 and 3. Variation of the convection heat transfer coefficient is dependent upon multiple factors, including the size and the blower configuration.You can only use the following parameters:arrow_forward
- Statics Problem !!! Help me Part A , Part B , Part C!!!! Answer it this Problem Correctly!! Please give correct Solutionarrow_forwardAnswer all the calculations questions, if you are not not expert please don't attempt, don't use artificial intelligencearrow_forwardHelp!!! Answer all parts correctly!! Pleasearrow_forward
- Help with this would be great, thanks!arrow_forwardHello. I just want to make sure the answers I chosen on the image attached are correct because I am unsure.arrow_forwardYou are an engineer in a company that manufactures and designs several mechanical devices, and your manager asked you to help your customers. In this time, you have two customers, one of them wants to ask about internal combustion engines while the other requires a heat exchanger with particular specifications. Follow the parts in the following tasks to do your job and support your customers.Task 1:Your first customer asked for an internal combustion engine to use it in a designed car. Your role is to describe the operation sequence of different types of available engines, explain their mechanical efficiency, and deliver a detailed technical report which includes the following steps:STEP 1Describe with the aid of diagrams the operational sequence of four stroke spark ignition and four stroke compression ignition engines.STEP 2Explain and compare the mechanical efficiency of two and four-stroke engines.STEP 3Review the efficiency of ideal heat engines operating on the Otto and Diesel…arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Elements Of ElectromagneticsMechanical EngineeringISBN:9780190698614Author:Sadiku, Matthew N. O.Publisher:Oxford University PressMechanics of Materials (10th Edition)Mechanical EngineeringISBN:9780134319650Author:Russell C. HibbelerPublisher:PEARSONThermodynamics: An Engineering ApproachMechanical EngineeringISBN:9781259822674Author:Yunus A. Cengel Dr., Michael A. BolesPublisher:McGraw-Hill Education
- Control Systems EngineeringMechanical EngineeringISBN:9781118170519Author:Norman S. NisePublisher:WILEYMechanics of Materials (MindTap Course List)Mechanical EngineeringISBN:9781337093347Author:Barry J. Goodno, James M. GerePublisher:Cengage LearningEngineering Mechanics: StaticsMechanical EngineeringISBN:9781118807330Author:James L. Meriam, L. G. Kraige, J. N. BoltonPublisher:WILEY

Elements Of Electromagnetics
Mechanical Engineering
ISBN:9780190698614
Author:Sadiku, Matthew N. O.
Publisher:Oxford University Press

Mechanics of Materials (10th Edition)
Mechanical Engineering
ISBN:9780134319650
Author:Russell C. Hibbeler
Publisher:PEARSON

Thermodynamics: An Engineering Approach
Mechanical Engineering
ISBN:9781259822674
Author:Yunus A. Cengel Dr., Michael A. Boles
Publisher:McGraw-Hill Education

Control Systems Engineering
Mechanical Engineering
ISBN:9781118170519
Author:Norman S. Nise
Publisher:WILEY

Mechanics of Materials (MindTap Course List)
Mechanical Engineering
ISBN:9781337093347
Author:Barry J. Goodno, James M. Gere
Publisher:Cengage Learning

Engineering Mechanics: Statics
Mechanical Engineering
ISBN:9781118807330
Author:James L. Meriam, L. G. Kraige, J. N. Bolton
Publisher:WILEY