Skip to content

Commit

Permalink
Started adding handeye
Browse files Browse the repository at this point in the history
  • Loading branch information
Brevinbanks committed Sep 2, 2023
1 parent 6aafad4 commit 3b6e4cc
Show file tree
Hide file tree
Showing 9 changed files with 254 additions and 9 deletions.
245 changes: 245 additions & 0 deletions HandEye.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,245 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<!--CSS Styles -->
<link rel="stylesheet" href="assets/css/styles.css" />

<!-- Favicons -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/icons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/icons/favicon-32x32.png"
/>

<!-- Animate CSS CDN -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<title>Brevin Banks | Revyn FK&IK</title>


<style>
div.backhead {
padding: 1.1rem;
background-image: url(page-Revynline.png);
background-repeat: no-repeat;
/* background-attachment: fixed; */
text-shadow: -1px 1px #000000;
background-size: cover;
}

div.backblank {

padding: 1rem;
background-color: rgb(255, 255, 255);
background-repeat: no-repeat;
/* background-attachment: fixed; */


background-size: cover;
}


</style>


</head>

<body>
<!-- Navbar -->
<nav>
<h1>Brevin Banks </h1>
<ul class="navigation">
<li><a href="./index.html" class="nav-link">Home</a></li>
<li><a href="#description" class="nav-link">Description</a></li>
<li><a href="#FK" class="nav-link">FK</a></li>
<li><a href="#IK" class="nav-link">IK</a></li>
<li><a href="#Jac" class="nav-link">Jacobian</a></li>
<li><a href="#Traj" class="nav-link">Trajectory</a></li>
<li><a href="#Resources" class="nav-link">Resources</a></li>
<li><a href="./index.html#contact" class="nav-link">Contact</a></li>
<li><a href="./more.html" class="nav-link">More</a>
<ul>
<li><a href="./projectportfolio.html">Project Portfolio</a></li>
<li><a href="./revdev.html">Revyn Development</a></li>
<li><a href="./resources.html">Resources</a></li>
<li><a href="./gamedev.html">Game Development</a></li>
</ul>
</li>
</ul>
<button class="burger-menu" id="burger-menu">
<ion-icon class="bars" name="menu-outline"></ion-icon>
<!-- <ion-icon class="times" name="close-outline"></ion-icon> -->
</button>
</nav>

<div class="backhead">
<h2 style="color:white;">6 DOF Robot Arm Forward & Inverse Kinematics: The Revyn Arm </h2>
</div>

<div class="backblank">

</div>


<!-- More about -->

<!-- More about -->
<section class="basicparagraphrightim" id="description">
<h2>Project Description</h2>
<p>
see <a href='https://github.com/Brevinbanks/HandEyeCalibration/tree/main' target="_blank">The github project here.</a>

</p>
</section>





<!-- Projects section -->
<section class="projects" id="projects">
<h2 class="projects-title">Some of my Recent Projects</h2>
<div class="projects-container">
<div class="project-container project-card">
<img
src="assets/images/6DofRobotArm3.png"
alt="6DOF Robot Arm IK and FK"
loading="lazy"
class="project-pic"
/>
<h3 class="project-title">6DOF Linear Trajectory, IK, & FK</h3>
<p class="project-details">
Linear Trajectory generator that uses inverse kinematics and forward kinematics
to maintain orientation as the robot moves.
</p>
<a href="./RevynFKIK" class="project-link">Check it Out</a>
</div>
<div class="project-container project-card">
<img
src="assets/images/6DofRobotArm2.png"
alt="6DOF Robot Arm Design"
loading="lazy"
class="project-pic"
/>
<h3 class="project-title">6DOF Robot Arm Mechanical Design</h3>
<p class="project-details">
Hardware design, CAD design, 3D printing, and Arduino Schematics for a 6 DOF small desk robot.
Useful for small repeatable tasks.
</p>
<a href="./RevynDesign.html" class="project-link">Check it Out</a>
</div>
<div class="project-container project-card">
<img
src="assets/images/StayTuned2.png"
alt="Check back for details later"
loading="lazy"
class="project-pic"
/>
<h3 class="project-title">Hand Eye Calibration</h3>
<p class="project-details">
Stay Tuned. Project is currently in a planning phase/development phase.
More details will be posted when the information is available.
</p>
<a href="./HandEye.html" class="project-link">Check it Out</a>
</div>
</div>
</section>

<!-- Social accounts - Fixed to the right -->
<div class="socials">
<a href="https://www.linkedin.com/in/brevinbanks" target="_blank"
><img
src="assets/icons/icons8-linkedin.png"
alt="Linkedin"
title="Linkedin"
loading="lazy"
class="socicon"
/></a>
<a href="https://app.joinhandshake.com/stu/users/43200986" target="_blank"
><img
src="assets/icons/icons8-handsharke.png"
alt="Handshake"
title="Handshake"
loading="lazy"
class="socicon"
/></a>
<a href="https://github.com/Brevinbanks" target="_blank"
><img
src="assets/icons/icons8-smallgit.png"
alt="Github"
title="Github"
loading="lazy"
class="socicon"
/></a>
<a href="assets/images/Brevin Banks Resume.pdf" target="_blank"
><img
src="assets/icons/Resume.png"
alt="Resume"
title="Resume"
loading="lazy"
class="socicon"
/></a>
</div>

<!-- Scroll to top -->

<div id="back-to-top" class="back-to-top animate__animated animate__backOutDown">Back to Top</div>


<!-- Website scripts -->
<!-- This script controls the hamburger menu -->
<script src="assets/js/app.js"></script>

<!-- This script will hide the back to top button or show it -->
<script type="text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js">
</script>

<script type="text/javascript" language="javascript">
$(function () {
var $win = $(window);

$win.scroll(function () {
if ($win.scrollTop() < 5){
document.getElementById("back-to-top").classList.remove('back-to-top:hover');
document.getElementById("back-to-top").classList.remove('animate__animated', 'animate__backInUp');
document.getElementById("back-to-top").classList.add('animate__animated', 'animate__backOutDown');
}
else{
document.getElementById("back-to-top").classList.add('back-to-top:hover');
document.getElementById("back-to-top").classList.remove('animate__animated', 'animate__backOutDown');
document.getElementById("back-to-top").classList.add('animate__animated', 'animate__backInUp');
}

});

});
</script>

<!-- Ion icons scripts -->
<script
type="module"
src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"
></script>

</body>
</html>


<!-- Fix the hamburger menu so tapping away will hide it -->
2 changes: 1 addition & 1 deletion RevynDesign.html
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ <h3 class="project-title">Hand Eye Calibration</h3>
Stay Tuned. Project is currently in a planning phase/development phase.
More details will be posted when the information is available.
</p>
<a href="#" class="project-link">Check it Out</a>
<a href="./HandEye.html" class="project-link">Check it Out</a>
</div>
</div>
</section>
Expand Down
2 changes: 1 addition & 1 deletion RevynFKIK.html
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ <h3 class="project-title">Hand Eye Calibration</h3>
Stay Tuned. Project is currently in a planning phase/development phase.
More details will be posted when the information is available.
</p>
<a href="#" class="project-link">Check it Out</a>
<a href="./HandEye.html" class="project-link">Check it Out</a>
</div>
</div>
</section>
Expand Down
Binary file added assets/images/Checker.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion gamedev.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ <h3 class="project-title">Hand Eye Calibration</h3>
Stay Tuned. Project is currently in a planning phase/development phase.
More details will be posted when the information is available.
</p>
<a href="#" class="project-link">Check it Out</a>
<a href="./HandEye.html" class="project-link">Check it Out</a>
</div>
</div>
</section>
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ <h3 class="project-title">6DOF Robot Arm Mechanical Design</h3>
</div>
<div class="project-container project-card">
<img
src="assets/images/StayTuned2.png"
src="assets/images/Checker.png"
alt="Check back for details later"
loading="lazy"
class="project-pic"
Expand All @@ -355,7 +355,7 @@ <h3 class="project-title">Hand Eye Calibration</h3>
Stay Tuned. Project is currently in a planning phase/development phase.
More details will be posted when the information is available.
</p>
<a href="#" target="_blank" class="project-link">Check it Out</a>
<a href="./HandEye.html" target="_blank" class="project-link">Check it Out</a>
</div>
</div>
</section>
Expand Down
4 changes: 2 additions & 2 deletions projectportfolio.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ <h3>Hand Eye Calibration</h3>
<p>
Project is currently in a planning phase/development phase. More details
will be posted when the information is available.
<!-- <a href="./RevynFKIK.html">Check it out here</a> -->
<a href="./HandEye.html">Check it out here</a>
</p>
<br>

Expand Down Expand Up @@ -221,7 +221,7 @@ <h3 class="project-title">Hand Eye Calibration</h3>
Stay Tuned. Project is currently in a planning phase/development phase.
More details will be posted when the information is available.
</p>
<a href="#" class="project-link">Check it Out</a>
<a href="./HandEye.html" class="project-link">Check it Out</a>
</div>
</div>
</section>
Expand Down
2 changes: 1 addition & 1 deletion resources.html
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ <h3 class="project-title">Hand Eye Calibration</h3>
Stay Tuned. Project is currently in a planning phase/development phase.
More details will be posted when the information is available.
</p>
<a href="#" class="project-link">Check it Out</a>
<a href="./HandEye.html" class="project-link">Check it Out</a>
</div>
</div>
</section>
Expand Down
2 changes: 1 addition & 1 deletion revdev.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ <h3 class="project-title">Hand Eye Calibration</h3>
Stay Tuned. Project is currently in a planning phase/development phase.
More details will be posted when the information is available.
</p>
<a href="#" class="project-link">Check it Out</a>
<a href="./HandEye.html" class="project-link">Check it Out</a>
</div>
</div>
</section>
Expand Down

0 comments on commit 3b6e4cc

Please sign in to comment.