Update javadocs

This commit is contained in:
Yash Karandikar 2022-02-15 17:09:58 -06:00
parent 684aac8aff
commit 90f519cbad
43 changed files with 1980 additions and 1147 deletions

View file

@ -438,6 +438,17 @@ public class API {
return this.gamepad.y;
}
/**
Returns the status of all four buttons, as a 4-bit integer.
<br>
The four bits are A, B, X, and Y, respectively.
<br>
To get B, do: {@code (abxy >> 2) % 2}
<br>
The amount to bitshift is determined its position in the returned number.
@return The status of all four buttons as a 4-bit integer
*/
public int getABXY() {
return
0b1000 * (this.getA() ? 1 : 0) +

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>All Classes</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="script.js"></script>
@ -27,7 +27,7 @@
catch(err) {
}
//-->
var data = {"i0":2,"i1":4,"i2":4,"i3":2,"i4":4,"i5":4,"i6":4,"i7":2};
var data = {"i0":2,"i1":4,"i2":4,"i3":4,"i4":4,"i5":2,"i6":2};
var tabs = {65535:["t0","All Classes"],2:["t2","Class Summary"],4:["t3","Enum Summary"]};
var altColor = "altColor";
var rowColor = "rowColor";
@ -118,26 +118,22 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
<th class="colLast" scope="row">&nbsp;</th>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><a href="org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></td>
<td class="colFirst"><a href="org/firstinspires/ftc/teamcode/API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode">API.GamepadIndex</a></td>
<th class="colLast" scope="row">&nbsp;</th>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><a href="org/firstinspires/ftc/teamcode/API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode">API.HubIMU</a></td>
<th class="colLast" scope="row">&nbsp;</th>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><a href="org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></td>
<th class="colLast" scope="row">&nbsp;</th>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><a href="org/firstinspires/ftc/teamcode/API.MotorBehaviour.html" title="enum in org.firstinspires.ftc.teamcode">API.MotorBehaviour</a></td>
<th class="colLast" scope="row">&nbsp;</th>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><a href="org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></td>
<tr id="i4" class="altColor">
<td class="colFirst"><a href="org/firstinspires/ftc/teamcode/GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a></td>
<th class="colLast" scope="row">&nbsp;</th>
</tr>
<tr id="i7" class="rowColor">
<tr id="i5" class="rowColor">
<td class="colFirst"><a href="org/firstinspires/ftc/teamcode/GameMotors.html" title="class in org.firstinspires.ftc.teamcode">GameMotors</a></td>
<th class="colLast" scope="row">&nbsp;</th>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><a href="org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></td>
<th class="colLast" scope="row">&nbsp;</th>
</tr>

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>All Classes</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="script.js"></script>
@ -23,11 +23,10 @@
<ul>
<li><a href="org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></li>
<li><a href="org/firstinspires/ftc/teamcode/API.Direction.html" title="enum in org.firstinspires.ftc.teamcode">API.Direction</a></li>
<li><a href="org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></li>
<li><a href="org/firstinspires/ftc/teamcode/API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode">API.HubIMU</a></li>
<li><a href="org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></li>
<li><a href="org/firstinspires/ftc/teamcode/API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode">API.GamepadIndex</a></li>
<li><a href="org/firstinspires/ftc/teamcode/API.MotorBehaviour.html" title="enum in org.firstinspires.ftc.teamcode">API.MotorBehaviour</a></li>
<li><a href="org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></li>
<li><a href="org/firstinspires/ftc/teamcode/GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a></li>
<li><a href="org/firstinspires/ftc/teamcode/GameMotors.html" title="class in org.firstinspires.ftc.teamcode">GameMotors</a></li>
<li><a href="org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></li>
</ul>
</main>

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>All Packages</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="script.js"></script>

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>Constant Field Values</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="script.js"></script>

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>Deprecated List</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="script.js"></script>

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>API Help</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="script.js"></script>

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>A-Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
@ -91,7 +91,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
</nav>
</header>
<main role="main">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:A">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:A">
<!-- -->
</a>
<h2 class="title">A</h2>
@ -102,22 +102,26 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
</dd>
<dt><a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API</span></a> - Class in <a href="../org/firstinspires/ftc/teamcode/package-summary.html">org.firstinspires.ftc.teamcode</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#%3Cinit%3E()">API()</a></span> - Constructor for class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#%3Cinit%3E(com.qualcomm.robotcore.eventloop.opmode.OpMode)">API(OpMode)</a></span> - Constructor for class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#%3Cinit%3E(com.qualcomm.robotcore.eventloop.opmode.OpMode,boolean)">API(OpMode, boolean)</a></span> - Constructor for class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dd>&nbsp;</dd>
<dt><a href="../org/firstinspires/ftc/teamcode/API.Direction.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Direction</span></a> - Enum in <a href="../org/firstinspires/ftc/teamcode/package-summary.html">org.firstinspires.ftc.teamcode</a></dt>
<dd>&nbsp;</dd>
<dt><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Gamepad</span></a> - Enum in <a href="../org/firstinspires/ftc/teamcode/package-summary.html">org.firstinspires.ftc.teamcode</a></dt>
<dt><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Gamepad</span></a> - Class in <a href="../org/firstinspires/ftc/teamcode/package-summary.html">org.firstinspires.ftc.teamcode</a></dt>
<dd>&nbsp;</dd>
<dt><a href="../org/firstinspires/ftc/teamcode/API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.GamepadIndex</span></a> - Enum in <a href="../org/firstinspires/ftc/teamcode/package-summary.html">org.firstinspires.ftc.teamcode</a></dt>
<dd>&nbsp;</dd>
<dt><a href="../org/firstinspires/ftc/teamcode/API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.HubIMU</span></a> - Class in <a href="../org/firstinspires/ftc/teamcode/package-summary.html">org.firstinspires.ftc.teamcode</a></dt>
<dd>&nbsp;</dd>
<dt><a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Motor</span></a> - Enum in <a href="../org/firstinspires/ftc/teamcode/package-summary.html">org.firstinspires.ftc.teamcode</a></dt>
<dt><a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Motor</span></a> - Class in <a href="../org/firstinspires/ftc/teamcode/package-summary.html">org.firstinspires.ftc.teamcode</a></dt>
<dd>&nbsp;</dd>
<dt><a href="../org/firstinspires/ftc/teamcode/API.MotorBehaviour.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.MotorBehaviour</span></a> - Enum in <a href="../org/firstinspires/ftc/teamcode/package-summary.html">org.firstinspires.ftc.teamcode</a></dt>
<dd>&nbsp;</dd>
<dt><a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Servo</span></a> - Enum in <a href="../org/firstinspires/ftc/teamcode/package-summary.html">org.firstinspires.ftc.teamcode</a></dt>
<dt><a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Servo</span></a> - Class in <a href="../org/firstinspires/ftc/teamcode/package-summary.html">org.firstinspires.ftc.teamcode</a></dt>
<dd>&nbsp;</dd>
</dl>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
</main>
<footer role="contentinfo">
<nav role="navigation">

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<title>O-Index</title>
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>N-Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
@ -21,7 +21,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="O-Index";
parent.document.title="N-Index";
}
}
catch(err) {
@ -91,15 +91,15 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
</nav>
</header>
<main role="main">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:O">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:N">
<!-- -->
</a>
<h2 class="title">O</h2>
<h2 class="title">N</h2>
<dl>
<dt><a href="../org/firstinspires/ftc/teamcode/package-summary.html">org.firstinspires.ftc.teamcode</a> - package org.firstinspires.ftc.teamcode</dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/GameMotor.html#name">name</a></span> - Variable in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a></dt>
<dd>&nbsp;</dd>
</dl>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
</main>
<footer role="contentinfo">
<nav role="navigation">

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<title>P-Index</title>
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>O-Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
@ -21,7 +21,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="P-Index";
parent.document.title="O-Index";
}
}
catch(err) {
@ -91,25 +91,15 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
</nav>
</header>
<main role="main">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:P">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:O">
<!-- -->
</a>
<h2 class="title">P</h2>
<h2 class="title">O</h2>
<dl>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#pause(double)">pause(double)</a></span> - Static method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dd>
<div class="block">Pauses for a given amount of seconds, with sub-millisecond accuracy</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#print(java.lang.String)">print(String)</a></span> - Static method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dd>
<div class="block">Prints a line to telemetry</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#print(java.lang.String,java.lang.String)">print(String, String)</a></span> - Static method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dd>
<div class="block">Prints a value to telemetry, formatted as "caption: value"</div>
</dd>
<dt><a href="../org/firstinspires/ftc/teamcode/package-summary.html">org.firstinspires.ftc.teamcode</a> - package org.firstinspires.ftc.teamcode</dt>
<dd>&nbsp;</dd>
</dl>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
</main>
<footer role="contentinfo">
<nav role="navigation">

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<title>R-Index</title>
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>P-Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
@ -21,7 +21,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="R-Index";
parent.document.title="P-Index";
}
}
catch(err) {
@ -91,23 +91,25 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
</nav>
</header>
<main role="main">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:R">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:P">
<!-- -->
</a>
<h2 class="title">R</h2>
<h2 class="title">P</h2>
<dl>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.HubIMU.html#reset()">reset()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode">API.HubIMU</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#pause(double)">pause(double)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dd>
<div class="block">Resets the IMU</div>
<div class="block">Pauses for a given amount of seconds, with sub-millisecond accuracy</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#resetEncoder()">resetEncoder()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#print(java.lang.String)">print(String)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dd>
<div class="block">Stops and resets the encoder</div>
<div class="block">Prints a line to telemetry</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#print(java.lang.String,java.lang.String)">print(String, String)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dd>
<div class="block">Prints a value to telemetry, formatted as "caption: value"</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Direction.html#REVERSE">REVERSE</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Direction.html" title="enum in org.firstinspires.ftc.teamcode">API.Direction</a></dt>
<dd>&nbsp;</dd>
</dl>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
</main>
<footer role="contentinfo">
<nav role="navigation">

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<title>S-Index</title>
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>R-Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
@ -21,7 +21,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="S-Index";
parent.document.title="R-Index";
}
}
catch(err) {
@ -91,85 +91,23 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
</nav>
</header>
<main role="main">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:S">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:R">
<!-- -->
</a>
<h2 class="title">S</h2>
<h2 class="title">R</h2>
<dl>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#S0">S0</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#S1">S1</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#S10">S10</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#S11">S11</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#S2">S2</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#S3">S3</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#S4">S4</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#S5">S5</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#S6">S6</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#S7">S7</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#S8">S8</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#S9">S9</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#setBehaviour(org.firstinspires.ftc.teamcode.API.MotorBehaviour)">setBehaviour(API.MotorBehaviour)</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.HubIMU.html#reset()">reset()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode">API.HubIMU</a></dt>
<dd>
<div class="block">Set the zero-power behaviour of the motor.</div>
<div class="block">Resets the IMU</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#setDirection(org.firstinspires.ftc.teamcode.API.Direction)">setDirection(API.Direction)</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#resetEncoder()">resetEncoder()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Sets the direction the motor should move in, without starting the motor</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#setDirection(org.firstinspires.ftc.teamcode.API.Direction,boolean)">setDirection(API.Direction, boolean)</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Sets the direction the motor should move in</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#setDirection(org.firstinspires.ftc.teamcode.API.Direction,boolean)">setDirection(API.Direction, boolean)</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>
<div class="block">Sets the direction of the servo.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#setPosition(double)">setPosition(double)</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>
<div class="block">Sets the intended position of the servo, in degrees.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#setPower(double)">setPower(double)</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Sets the power without starting the motor</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#start()">start()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Starts the motor with the previously set power</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#start(double)">start(double)</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Starts the motor with the specified power</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#start(double)">start(double)</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>
<div class="block">Starts the servo</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#stop()">stop()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Stops the motor</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#stop()">stop()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>
<div class="block">Stops the servo by setting the power to 0.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#stop()">stop()</a></span> - Static method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dd>
<div class="block">Stops the robot</div>
<div class="block">Stops and resets the encoder</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Direction.html#REVERSE">REVERSE</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Direction.html" title="enum in org.firstinspires.ftc.teamcode">API.Direction</a></dt>
<dd>&nbsp;</dd>
</dl>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
</main>
<footer role="contentinfo">
<nav role="navigation">

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<title>U-Index</title>
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>S-Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
@ -21,7 +21,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="U-Index";
parent.document.title="S-Index";
}
}
catch(err) {
@ -91,15 +91,63 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
</nav>
</header>
<main role="main">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:U">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:S">
<!-- -->
</a>
<h2 class="title">U</h2>
<h2 class="title">S</h2>
<dl>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#useLogFile">useLogFile</a></span> - Static variable in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#setBehaviour(org.firstinspires.ftc.teamcode.API.MotorBehaviour)">setBehaviour(API.MotorBehaviour)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Set the zero-power behaviour of the motor.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#setDirection(org.firstinspires.ftc.teamcode.API.Direction)">setDirection(API.Direction)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Sets the direction the motor should move in, without starting the motor</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#setDirection(org.firstinspires.ftc.teamcode.API.Direction,boolean)">setDirection(API.Direction, boolean)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Sets the direction the motor should move in</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#setDirection(org.firstinspires.ftc.teamcode.API.Direction,boolean)">setDirection(API.Direction, boolean)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="class in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>
<div class="block">Sets the direction of the servo.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#setFlipped(boolean)">setFlipped(boolean)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#setPosition(double)">setPosition(double)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="class in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>
<div class="block">Sets the intended position of the servo, in degrees.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#setPower(double)">setPower(double)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Sets the power without starting the motor</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#start()">start()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Starts the motor with the previously set power</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#start(double)">start(double)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Starts the motor with the specified power</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#start(double)">start(double)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="class in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>
<div class="block">Starts the servo</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#stop()">stop()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Stops the motor</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#stop()">stop()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="class in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>
<div class="block">Stops the servo by setting the power to 0.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#stop()">stop()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dd>
<div class="block">Stops the robot</div>
</dd>
</dl>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
</main>
<footer role="contentinfo">
<nav role="navigation">

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<title>V-Index</title>
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>U-Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
@ -21,7 +21,7 @@
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="V-Index";
parent.document.title="U-Index";
}
}
catch(err) {
@ -91,58 +91,15 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
</nav>
</header>
<main role="main">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:V">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:U">
<!-- -->
</a>
<h2 class="title">V</h2>
<h2 class="title">U</h2>
<dl>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Direction.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Direction.html" title="enum in org.firstinspires.ftc.teamcode">API.Direction</a></dt>
<dd>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.MotorBehaviour.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.MotorBehaviour.html" title="enum in org.firstinspires.ftc.teamcode">API.MotorBehaviour</a></dt>
<dd>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Direction.html#values()">values()</a></span> - Static method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Direction.html" title="enum in org.firstinspires.ftc.teamcode">API.Direction</a></dt>
<dd>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#values()">values()</a></span> - Static method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#values()">values()</a></span> - Static method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.MotorBehaviour.html#values()">values()</a></span> - Static method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.MotorBehaviour.html" title="enum in org.firstinspires.ftc.teamcode">API.MotorBehaviour</a></dt>
<dd>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#values()">values()</a></span> - Static method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#useLogFile">useLogFile</a></span> - Variable in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dd>&nbsp;</dd>
</dl>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
</main>
<footer role="contentinfo">
<nav role="navigation">

View file

@ -0,0 +1,183 @@
<!DOCTYPE HTML>
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>V-Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
<script type="text/javascript" src="../jquery/jszip/dist/jszip.min.js"></script>
<script type="text/javascript" src="../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
<!--[if IE]>
<script type="text/javascript" src="../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
<![endif]-->
<script type="text/javascript" src="../jquery/jquery-3.5.1.js"></script>
<script type="text/javascript" src="../jquery/jquery-ui.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="V-Index";
}
}
catch(err) {
}
//-->
var pathtoroot = "../";
var useModuleDirectories = true;
loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<header role="banner">
<nav role="navigation">
<div class="fixedNav">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a id="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../org/firstinspires/ftc/teamcode/package-summary.html">Package</a></li>
<li>Class</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../allclasses.html">All&nbsp;Classes</a></li>
</ul>
<ul class="navListSearch">
<li><label for="search">SEARCH:</label>
<input type="text" id="search" value="search" disabled="disabled">
<input type="reset" id="reset" value="reset" disabled="disabled">
</li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<a id="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
</div>
<div class="navPadding">&nbsp;</div>
<script type="text/javascript"><!--
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
//-->
</script>
</nav>
</header>
<main role="main">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:V">
<!-- -->
</a>
<h2 class="title">V</h2>
<dl>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Direction.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Direction.html" title="enum in org.firstinspires.ftc.teamcode">API.Direction</a></dt>
<dd>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.GamepadIndex.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode">API.GamepadIndex</a></dt>
<dd>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.MotorBehaviour.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.MotorBehaviour.html" title="enum in org.firstinspires.ftc.teamcode">API.MotorBehaviour</a></dt>
<dd>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/GameMotor.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a></dt>
<dd>
<div class="block">Returns the enum constant of this type with the specified name.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Direction.html#values()">values()</a></span> - Static method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Direction.html" title="enum in org.firstinspires.ftc.teamcode">API.Direction</a></dt>
<dd>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.GamepadIndex.html#values()">values()</a></span> - Static method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode">API.GamepadIndex</a></dt>
<dd>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.MotorBehaviour.html#values()">values()</a></span> - Static method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.MotorBehaviour.html" title="enum in org.firstinspires.ftc.teamcode">API.MotorBehaviour</a></dt>
<dd>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/GameMotor.html#values()">values()</a></span> - Static method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a></dt>
<dd>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</dd>
</dl>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
</main>
<footer role="contentinfo">
<nav role="navigation">
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a id="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../org/firstinspires/ftc/teamcode/package-summary.html">Package</a></li>
<li>Class</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../allclasses.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<a id="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</nav>
</footer>
</body>
</html>

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>B-Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
@ -91,15 +91,23 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
</nav>
</header>
<main role="main">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:B">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:B">
<!-- -->
</a>
<h2 class="title">B</h2>
<dl>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/GameMotors.html#bl">bl</a></span> - Variable in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/GameMotors.html" title="class in org.firstinspires.ftc.teamcode">GameMotors</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/GameMotor.html#BL">BL</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/GameMotors.html#br">br</a></span> - Variable in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/GameMotors.html" title="class in org.firstinspires.ftc.teamcode">GameMotors</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/GameMotor.html#BR">BR</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.MotorBehaviour.html#BRAKE">BRAKE</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.MotorBehaviour.html" title="enum in org.firstinspires.ftc.teamcode">API.MotorBehaviour</a></dt>
<dd>&nbsp;</dd>
</dl>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
</main>
<footer role="contentinfo">
<nav role="navigation">

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>C-Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
@ -91,33 +91,37 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
</nav>
</header>
<main role="main">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:C">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:C">
<!-- -->
</a>
<h2 class="title">C</h2>
<dl>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#clear()">clear()</a></span> - Static method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/GameMotors.html#carousel">carousel</a></span> - Variable in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/GameMotors.html" title="class in org.firstinspires.ftc.teamcode">GameMotors</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/GameMotor.html#CAROUSEL">CAROUSEL</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#clear()">clear()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dd>
<div class="block">Clears the telemetry</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#controlWithOneButton(boolean)">controlWithOneButton(boolean)</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#controlWithOneButton(boolean)">controlWithOneButton(boolean)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Moves the motor forward at maximum speed if the button is pressed.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#controlWithOneButton(boolean,double)">controlWithOneButton(boolean, double)</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#controlWithOneButton(boolean,double)">controlWithOneButton(boolean, double)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Moves the motor forward at the provided speed if the button is pressed.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#controlWithTwoButtons(boolean,boolean)">controlWithTwoButtons(boolean, boolean)</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#controlWithTwoButtons(boolean,boolean)">controlWithTwoButtons(boolean, boolean)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Moves the motor forward or backward at maximum speed based on the button inputs</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#controlWithTwoButtons(boolean,boolean,double)">controlWithTwoButtons(boolean, boolean, double)</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#controlWithTwoButtons(boolean,boolean,double)">controlWithTwoButtons(boolean, boolean, double)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Moves the motor forward or backward at the provided speed based on the button inputs</div>
</dd>
</dl>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
</main>
<footer role="contentinfo">
<nav role="navigation">

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>F-Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
@ -91,17 +91,25 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
</nav>
</header>
<main role="main">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:F">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:F">
<!-- -->
</a>
<h2 class="title">F</h2>
<dl>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/GameMotors.html#fl">fl</a></span> - Variable in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/GameMotors.html" title="class in org.firstinspires.ftc.teamcode">GameMotors</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/GameMotor.html#FL">FL</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.MotorBehaviour.html#FLOAT">FLOAT</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.MotorBehaviour.html" title="enum in org.firstinspires.ftc.teamcode">API.MotorBehaviour</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Direction.html#FORWARD">FORWARD</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Direction.html" title="enum in org.firstinspires.ftc.teamcode">API.Direction</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/GameMotors.html#fr">fr</a></span> - Variable in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/GameMotors.html" title="class in org.firstinspires.ftc.teamcode">GameMotors</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/GameMotor.html#FR">FR</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a></dt>
<dd>&nbsp;</dd>
</dl>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
</main>
<footer role="contentinfo">
<nav role="navigation">

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>G-Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
@ -91,107 +91,119 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
</nav>
</header>
<main role="main">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:G">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:G">
<!-- -->
</a>
<h2 class="title">G</h2>
<dl>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#G1">G1</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><a href="../org/firstinspires/ftc/teamcode/GameMotor.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">GameMotor</span></a> - Enum in <a href="../org/firstinspires/ftc/teamcode/package-summary.html">org.firstinspires.ftc.teamcode</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#G2">G2</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><a href="../org/firstinspires/ftc/teamcode/GameMotors.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">GameMotors</span></a> - Class in <a href="../org/firstinspires/ftc/teamcode/package-summary.html">org.firstinspires.ftc.teamcode</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getA()">getA()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/GameMotors.html#%3Cinit%3E(org.firstinspires.ftc.teamcode.API)">GameMotors(API)</a></span> - Constructor for class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/GameMotors.html" title="class in org.firstinspires.ftc.teamcode">GameMotors</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getABXY()">getABXY()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#gamepad1">gamepad1</a></span> - Variable in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getAllButtons()">getAllButtons()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.GamepadIndex.html#GAMEPAD1">GAMEPAD1</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode">API.GamepadIndex</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getB()">getB()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#gamepad2">gamepad2</a></span> - Variable in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getBack()">getBack()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.GamepadIndex.html#GAMEPAD2">GAMEPAD2</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode">API.GamepadIndex</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#getBL()">getBL()</a></span> - Static method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getA()">getA()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#getBR()">getBR()</a></span> - Static method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getABXY()">getABXY()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>
<div class="block">Returns the status of all four buttons, as a 4-bit integer.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getAllButtons()">getAllButtons()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getBumpers()">getBumpers()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getB()">getB()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getDPad()">getDPad()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getBack()">getBack()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getDPadDown()">getDPadDown()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#getBL()">getBL()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getDPadLeft()">getDPadLeft()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#getBR()">getBR()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getDPadRight()">getDPadRight()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getBumpers()">getBumpers()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getDPadUp()">getDPadUp()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getDPad()">getDPad()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#getFL()">getFL()</a></span> - Static method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getDPadDown()">getDPadDown()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#getFR()">getFR()</a></span> - Static method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getDPadLeft()">getDPadLeft()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getGuide()">getGuide()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getDPadRight()">getDPadRight()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getDPadUp()">getDPadUp()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#getFL()">getFL()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#getFR()">getFR()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getGuide()">getGuide()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.HubIMU.html#getHeading()">getHeading()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode">API.HubIMU</a></dt>
<dd>
<div class="block">Gets the yaw change since the last time the IMU was reset</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getL3()">getL3()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getL3()">getL3()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getLB()">getLB()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getLB()">getLB()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getLeftStickX()">getLeftStickX()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getLeftStickX()">getLeftStickX()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getLeftStickY()">getLeftStickY()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getLeftStickY()">getLeftStickY()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getLT()">getLT()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getLT()">getLT()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getMiscButtons()">getMiscButtons()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getMiscButtons()">getMiscButtons()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.HubIMU.html#getPitch()">getPitch()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode">API.HubIMU</a></dt>
<dd>
<div class="block">Gets the pitch</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#getPosition()">getPosition()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Servo.html#getPosition()">getPosition()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Servo.html" title="class in org.firstinspires.ftc.teamcode">API.Servo</a></dt>
<dd>
<div class="block">Gets the current position of the servo.</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#getPower()">getPower()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#getPower()">getPower()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Gets the previously set power</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getR3()">getR3()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getR3()">getR3()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#getRawPower()">getRawPower()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#getRawPower()">getRawPower()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>
<div class="block">Gets the power the motor is currently moving at, or 0 if not moving</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getRB()">getRB()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getRB()">getRB()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getRightStickX()">getRightStickX()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getRightStickX()">getRightStickX()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getRightStickY()">getRightStickY()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getRightStickY()">getRightStickY()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.HubIMU.html#getRoll()">getRoll()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode">API.HubIMU</a></dt>
<dd>
<div class="block">Gets the roll</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getRT()">getRT()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getRT()">getRT()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getStart()">getStart()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getStart()">getStart()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getStickClicks()">getStickClicks()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getStickClicks()">getStickClicks()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getX()">getX()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getX()">getX()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getY()">getY()</a></span> - Method in enum org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html#getY()">getY()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.HubIMU.html#getYaw()">getYaw()</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode">API.HubIMU</a></dt>
<dd>
<div class="block">Gets the yaw</div>
</dd>
</dl>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
</main>
<footer role="contentinfo">
<nav role="navigation">

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>H-Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
@ -91,15 +91,15 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
</nav>
</header>
<main role="main">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:H">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:H">
<!-- -->
</a>
<h2 class="title">H</h2>
<dl>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.HubIMU.html#%3Cinit%3E(java.lang.String,com.qualcomm.robotcore.hardware.HardwareMap)">HubIMU(String, HardwareMap)</a></span> - Constructor for class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode">API.HubIMU</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.HubIMU.html#%3Cinit%3E(java.lang.String)">HubIMU(String)</a></span> - Constructor for class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode">API.HubIMU</a></dt>
<dd>&nbsp;</dd>
</dl>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
</main>
<footer role="contentinfo">
<nav role="navigation">

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>I-Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
@ -91,31 +91,19 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
</nav>
</header>
<main role="main">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:I">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:I">
<!-- -->
</a>
<h2 class="title">I</h2>
<dl>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#imu">imu</a></span> - Static variable in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#imu">imu</a></span> - Variable in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/GameMotors.html#intake">intake</a></span> - Variable in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/GameMotors.html" title="class in org.firstinspires.ftc.teamcode">GameMotors</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/GameMotor.html#INTAKE">INTAKE</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#init()">init()</a></span> - Static method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dd>
<div class="block">Initializes the API with the motors in the GameMotor enum</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#init(com.qualcomm.robotcore.eventloop.opmode.OpMode)">init(OpMode)</a></span> - Static method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dd>
<div class="block">Initializes the API</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#init(com.qualcomm.robotcore.eventloop.opmode.OpMode,boolean)">init(OpMode, boolean)</a></span> - Static method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dd>
<div class="block">Initializes the API</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#init(org.firstinspires.ftc.teamcode.API.Motor,org.firstinspires.ftc.teamcode.API.Motor,org.firstinspires.ftc.teamcode.API.Motor,org.firstinspires.ftc.teamcode.API.Motor)">init(API.Motor, API.Motor, API.Motor, API.Motor)</a></span> - Static method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dd>
<div class="block">Initializes the API</div>
</dd>
</dl>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
</main>
<footer role="contentinfo">
<nav role="navigation">

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>L-Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
@ -91,15 +91,19 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
</nav>
</header>
<main role="main">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:L">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:L">
<!-- -->
</a>
<h2 class="title">L</h2>
<dl>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#logFile">logFile</a></span> - Static variable in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/GameMotors.html#lift">lift</a></span> - Variable in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/GameMotors.html" title="class in org.firstinspires.ftc.teamcode">GameMotors</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/GameMotor.html#LIFT">LIFT</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.html#logFile">logFile</a></span> - Variable in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dt>
<dd>&nbsp;</dd>
</dl>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
</main>
<footer role="contentinfo">
<nav role="navigation">

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>M-Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
@ -91,49 +91,39 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
</nav>
</header>
<main role="main">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:M">
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a><a id="I:M">
<!-- -->
</a>
<h2 class="title">M</h2>
<dl>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#M0">M0</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#M1">M1</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#M2">M2</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#M3">M3</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#M4">M4</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#M5">M5</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#M6">M6</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/API.Motor.html#M7">M7</a></span> - org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#move(double,double)">move(double, double)</a></span> - Static method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#move(double,double)">move(double, double)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dd>
<div class="block">Moves the robot in a given direction with a given speed</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#move(double,double,boolean)">move(double, double, boolean)</a></span> - Static method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#move(double,double,boolean)">move(double, double, boolean)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dd>
<div class="block">Moves the robot in a given direction with a given speed</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#move(double,double,double,double)">move(double, double, double, double)</a></span> - Static method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#move(double,double,double,double)">move(double, double, double, double)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dd>
<div class="block">Moves the robot given the speed to move forward/back and left/right</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#move(double,double,double,double,boolean)">move(double, double, double, double, boolean)</a></span> - Static method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#move(double,double,double,double,boolean)">move(double, double, double, double, boolean)</a></span> - Method in class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dd>
<div class="block">Moves the robot given the speed to move forward/back and left/right</div>
</dd>
<dt><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">MovementAPI</span></a> - Class in <a href="../org/firstinspires/ftc/teamcode/package-summary.html">org.firstinspires.ftc.teamcode</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#%3Cinit%3E()">MovementAPI()</a></span> - Constructor for class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#%3Cinit%3E(org.firstinspires.ftc.teamcode.API,org.firstinspires.ftc.teamcode.API.Motor,org.firstinspires.ftc.teamcode.API.Motor,org.firstinspires.ftc.teamcode.API.Motor,org.firstinspires.ftc.teamcode.API.Motor)">MovementAPI(API, API.Motor, API.Motor, API.Motor, API.Motor)</a></span> - Constructor for class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dd>
<div class="block">Initializes the API</div>
</dd>
<dt><span class="memberNameLink"><a href="../org/firstinspires/ftc/teamcode/MovementAPI.html#%3Cinit%3E(org.firstinspires.ftc.teamcode.API,org.firstinspires.ftc.teamcode.GameMotors)">MovementAPI(API, GameMotors)</a></span> - Constructor for class org.firstinspires.ftc.teamcode.<a href="../org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode">MovementAPI</a></dt>
<dd>
<div class="block">Initializes the API with the motors in the GameMotor enum</div>
</dd>
</dl>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">R</a>&nbsp;<a href="index-13.html">S</a>&nbsp;<a href="index-14.html">U</a>&nbsp;<a href="index-15.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">F</a>&nbsp;<a href="index-5.html">G</a>&nbsp;<a href="index-6.html">H</a>&nbsp;<a href="index-7.html">I</a>&nbsp;<a href="index-8.html">L</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">N</a>&nbsp;<a href="index-11.html">O</a>&nbsp;<a href="index-12.html">P</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">U</a>&nbsp;<a href="index-16.html">V</a>&nbsp;<br><a href="../allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="../allpackages-index.html">All&nbsp;Packages</a></div>
</main>
<footer role="contentinfo">
<nav role="navigation">

View file

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>Generated Documentation (Untitled)</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript">window.location.replace('org/firstinspires/ftc/teamcode/package-summary.html')</script>

File diff suppressed because one or more lines are too long

Binary file not shown.

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>API.Direction</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>API.Gamepad</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
@ -27,8 +27,8 @@
catch(err) {
}
//-->
var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":9,"i28":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
@ -88,14 +88,14 @@ loadScripts(document, 'script');</script>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
@ -115,67 +115,33 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
<main role="main">
<div class="header">
<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.firstinspires.ftc.teamcode</a></div>
<h2 title="Enum API.Gamepad" class="title">Enum API.Gamepad</h2>
<h2 title="Class API.Gamepad" class="title">Class API.Gamepad</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>java.lang.Enum&lt;<a href="API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a>&gt;</li>
<li>
<ul class="inheritance">
<li>org.firstinspires.ftc.teamcode.API.Gamepad</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><code>java.io.Serializable</code>, <code>java.lang.Comparable&lt;<a href="API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a>&gt;</code></dd>
</dl>
<dl>
<dt>Enclosing class:</dt>
<dd><a href="API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dd>
</dl>
<hr>
<pre>public static enum <span class="typeNameLabel">API.Gamepad</span>
extends java.lang.Enum&lt;<a href="API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a>&gt;</pre>
<pre>public class <span class="typeNameLabel">API.Gamepad</span>
extends java.lang.Object</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== ENUM CONSTANT SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="enum.constant.summary">
<!-- -->
</a>
<h3>Enum Constant Summary</h3>
<table class="memberSummary">
<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Enum Constant</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#G1">G1</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#G2">G2</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
</table>
</li>
</ul>
</section>
<!-- ========== METHOD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
@ -184,7 +150,7 @@ extends java.lang.Enum&lt;<a href="API.Gamepad.html" title="enum in org.firstins
</a>
<h3>Method Summary</h3>
<table class="memberSummary">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colSecond" scope="col">Method</th>
@ -198,7 +164,9 @@ extends java.lang.Enum&lt;<a href="API.Gamepad.html" title="enum in org.firstins
<tr id="i1" class="rowColor">
<td class="colFirst"><code>int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getABXY()">getABXY</a></span>()</code></th>
<td class="colLast">&nbsp;</td>
<td class="colLast">
<div class="block">Returns the status of all four buttons, as a 4-bit integer.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>double</code></td>
@ -325,35 +293,13 @@ extends java.lang.Enum&lt;<a href="API.Gamepad.html" title="enum in org.firstins
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getY()">getY</a></span>()</code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr id="i27" class="rowColor">
<td class="colFirst"><code>static <a href="API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>&#8203;(java.lang.String&nbsp;name)</code></th>
<td class="colLast">
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr id="i28" class="altColor">
<td class="colFirst"><code>static <a href="API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a>[]</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th>
<td class="colLast">
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Enum</h3>
<code>compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
<code>getClass, notify, notifyAll, wait, wait, wait</code></li>
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
@ -364,34 +310,6 @@ the order they are declared.</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ ENUM CONSTANT DETAIL =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="enum.constant.detail">
<!-- -->
</a>
<h3>Enum Constant Detail</h3>
<a id="G1">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>G1</h4>
<pre>public static final&nbsp;<a href="API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a> G1</pre>
</li>
</ul>
<a id="G2">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>G2</h4>
<pre>public static final&nbsp;<a href="API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a> G2</pre>
</li>
</ul>
</li>
</ul>
</section>
<!-- ============ METHOD DETAIL ========== -->
<section role="region">
<ul class="blockList">
@ -399,48 +317,6 @@ the order they are declared.</div>
<!-- -->
</a>
<h3>Method Detail</h3>
<a id="values()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>values</h4>
<pre class="methodSignature">public static&nbsp;<a href="API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a>[]&nbsp;values()</pre>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
<pre>
for (API.Gamepad c : API.Gamepad.values())
&nbsp; System.out.println(c);
</pre></div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>an array containing the constants of this enum type, in the order they are declared</dd>
</dl>
</li>
</ul>
<a id="valueOf(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>valueOf</h4>
<pre class="methodSignature">public static&nbsp;<a href="API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a>&nbsp;valueOf&#8203;(java.lang.String&nbsp;name)</pre>
<div class="block">Returns the enum constant of this type with the specified name.
The string must match <i>exactly</i> an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>name</code> - the name of the enum constant to be returned.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the enum constant with the specified name</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd>
<dd><code>java.lang.NullPointerException</code> - if the argument is null</dd>
</dl>
</li>
</ul>
<a id="getLeftStickX()">
<!-- -->
</a>
@ -520,6 +396,17 @@ not permitted.)</div>
<li class="blockList">
<h4>getABXY</h4>
<pre class="methodSignature">public&nbsp;int&nbsp;getABXY()</pre>
<div class="block">Returns the status of all four buttons, as a 4-bit integer.
<br>
The four bits are A, B, X, and Y, respectively.
<br>
To get B, do: <code>(abxy &gt;&gt; 2) % 2</code>
<br>
The amount to bitshift is determined its position in the returned number.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The status of all four buttons as a 4-bit integer</dd>
</dl>
</li>
</ul>
<a id="getDPadUp()">
@ -735,14 +622,14 @@ not permitted.)</div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>

View file

@ -0,0 +1,378 @@
<!DOCTYPE HTML>
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>API.GamepadIndex</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
<!--[if IE]>
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
<![endif]-->
<script type="text/javascript" src="../../../../jquery/jquery-3.5.1.js"></script>
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="API.GamepadIndex";
}
}
catch(err) {
}
//-->
var data = {"i0":9,"i1":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
var pathtoroot = "../../../../";
var useModuleDirectories = true;
loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<header role="banner">
<nav role="navigation">
<div class="fixedNav">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a id="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
</ul>
<ul class="navListSearch">
<li><label for="search">SEARCH:</label>
<input type="text" id="search" value="search" disabled="disabled">
<input type="reset" id="reset" value="reset" disabled="disabled">
</li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a id="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
</div>
<div class="navPadding">&nbsp;</div>
<script type="text/javascript"><!--
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
//-->
</script>
</nav>
</header>
<!-- ======== START OF CLASS DATA ======== -->
<main role="main">
<div class="header">
<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.firstinspires.ftc.teamcode</a></div>
<h2 title="Enum API.GamepadIndex" class="title">Enum API.GamepadIndex</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>java.lang.Enum&lt;<a href="API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode">API.GamepadIndex</a>&gt;</li>
<li>
<ul class="inheritance">
<li>org.firstinspires.ftc.teamcode.API.GamepadIndex</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><code>java.io.Serializable</code>, <code>java.lang.Comparable&lt;<a href="API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode">API.GamepadIndex</a>&gt;</code></dd>
</dl>
<dl>
<dt>Enclosing class:</dt>
<dd><a href="API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dd>
</dl>
<hr>
<pre>public static enum <span class="typeNameLabel">API.GamepadIndex</span>
extends java.lang.Enum&lt;<a href="API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode">API.GamepadIndex</a>&gt;</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== ENUM CONSTANT SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="enum.constant.summary">
<!-- -->
</a>
<h3>Enum Constant Summary</h3>
<table class="memberSummary">
<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Enum Constant</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#GAMEPAD1">GAMEPAD1</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#GAMEPAD2">GAMEPAD2</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
</table>
</li>
</ul>
</section>
<!-- ========== METHOD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colSecond" scope="col">Method</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static <a href="API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode">API.GamepadIndex</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>&#8203;(java.lang.String&nbsp;name)</code></th>
<td class="colLast">
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static <a href="API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode">API.GamepadIndex</a>[]</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th>
<td class="colLast">
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Enum</h3>
<code>compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
<code>getClass, notify, notifyAll, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</section>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ ENUM CONSTANT DETAIL =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="enum.constant.detail">
<!-- -->
</a>
<h3>Enum Constant Detail</h3>
<a id="GAMEPAD1">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>GAMEPAD1</h4>
<pre>public static final&nbsp;<a href="API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode">API.GamepadIndex</a> GAMEPAD1</pre>
</li>
</ul>
<a id="GAMEPAD2">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>GAMEPAD2</h4>
<pre>public static final&nbsp;<a href="API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode">API.GamepadIndex</a> GAMEPAD2</pre>
</li>
</ul>
</li>
</ul>
</section>
<!-- ============ METHOD DETAIL ========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a id="values()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>values</h4>
<pre class="methodSignature">public static&nbsp;<a href="API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode">API.GamepadIndex</a>[]&nbsp;values()</pre>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
<pre>
for (API.GamepadIndex c : API.GamepadIndex.values())
&nbsp; System.out.println(c);
</pre></div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>an array containing the constants of this enum type, in the order they are declared</dd>
</dl>
</li>
</ul>
<a id="valueOf(java.lang.String)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>valueOf</h4>
<pre class="methodSignature">public static&nbsp;<a href="API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode">API.GamepadIndex</a>&nbsp;valueOf&#8203;(java.lang.String&nbsp;name)</pre>
<div class="block">Returns the enum constant of this type with the specified name.
The string must match <i>exactly</i> an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>name</code> - the name of the enum constant to be returned.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the enum constant with the specified name</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd>
<dd><code>java.lang.NullPointerException</code> - if the argument is null</dd>
</dl>
</li>
</ul>
</li>
</ul>
</section>
</li>
</ul>
</div>
</div>
</main>
<!-- ========= END OF CLASS DATA ========= -->
<footer role="contentinfo">
<nav role="navigation">
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a id="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a id="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</nav>
</footer>
</body>
</html>

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>API.HubIMU</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
@ -134,7 +134,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
<dd><a href="API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dd>
</dl>
<hr>
<pre>public static class <span class="typeNameLabel">API.HubIMU</span>
<pre>public class <span class="typeNameLabel">API.HubIMU</span>
extends java.lang.Object</pre>
</li>
</ul>
@ -156,8 +156,7 @@ extends java.lang.Object</pre>
<th class="colLast" scope="col">Description</th>
</tr>
<tr class="altColor">
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(java.lang.String,com.qualcomm.robotcore.hardware.HardwareMap)">HubIMU</a></span>&#8203;(java.lang.String&nbsp;name,
com.qualcomm.robotcore.hardware.HardwareMap&nbsp;hardwareMap)</code></th>
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(java.lang.String)">HubIMU</a></span>&#8203;(java.lang.String&nbsp;name)</code></th>
<td class="colLast">&nbsp;</td>
</tr>
</table>
@ -244,14 +243,13 @@ extends java.lang.Object</pre>
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a id="&lt;init&gt;(java.lang.String,com.qualcomm.robotcore.hardware.HardwareMap)">
<a id="&lt;init&gt;(java.lang.String)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>HubIMU</h4>
<pre>public&nbsp;HubIMU&#8203;(java.lang.String&nbsp;name,
com.qualcomm.robotcore.hardware.HardwareMap&nbsp;hardwareMap)</pre>
<pre>public&nbsp;HubIMU&#8203;(java.lang.String&nbsp;name)</pre>
</li>
</ul>
</li>

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>API.Motor</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
@ -27,8 +27,8 @@
catch(err) {
}
//-->
var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":9,"i15":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
@ -88,14 +88,14 @@ loadScripts(document, 'script');</script>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
@ -115,91 +115,33 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
<main role="main">
<div class="header">
<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.firstinspires.ftc.teamcode</a></div>
<h2 title="Enum API.Motor" class="title">Enum API.Motor</h2>
<h2 title="Class API.Motor" class="title">Class API.Motor</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>java.lang.Enum&lt;<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a>&gt;</li>
<li>
<ul class="inheritance">
<li>org.firstinspires.ftc.teamcode.API.Motor</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><code>java.io.Serializable</code>, <code>java.lang.Comparable&lt;<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a>&gt;</code></dd>
</dl>
<dl>
<dt>Enclosing class:</dt>
<dd><a href="API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dd>
</dl>
<hr>
<pre>public static enum <span class="typeNameLabel">API.Motor</span>
extends java.lang.Enum&lt;<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a>&gt;</pre>
<pre>public class <span class="typeNameLabel">API.Motor</span>
extends java.lang.Object</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== ENUM CONSTANT SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="enum.constant.summary">
<!-- -->
</a>
<h3>Enum Constant Summary</h3>
<table class="memberSummary">
<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Enum Constant</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#M0">M0</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#M1">M1</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#M2">M2</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#M3">M3</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#M4">M4</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#M5">M5</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#M6">M6</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#M7">M7</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
</table>
</li>
</ul>
</section>
<!-- ========== METHOD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
@ -208,7 +150,7 @@ extends java.lang.Enum&lt;<a href="API.Motor.html" title="enum in org.firstinspi
</a>
<h3>Method Summary</h3>
<table class="memberSummary">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colSecond" scope="col">Method</th>
@ -317,35 +259,13 @@ extends java.lang.Enum&lt;<a href="API.Motor.html" title="enum in org.firstinspi
<div class="block">Stops the motor</div>
</td>
</tr>
<tr id="i14" class="altColor">
<td class="colFirst"><code>static <a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>&#8203;(java.lang.String&nbsp;name)</code></th>
<td class="colLast">
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr id="i15" class="rowColor">
<td class="colFirst"><code>static <a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a>[]</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th>
<td class="colLast">
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Enum</h3>
<code>compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
<code>getClass, notify, notifyAll, wait, wait, wait</code></li>
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
@ -356,88 +276,6 @@ the order they are declared.</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ ENUM CONSTANT DETAIL =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="enum.constant.detail">
<!-- -->
</a>
<h3>Enum Constant Detail</h3>
<a id="M0">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>M0</h4>
<pre>public static final&nbsp;<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a> M0</pre>
</li>
</ul>
<a id="M1">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>M1</h4>
<pre>public static final&nbsp;<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a> M1</pre>
</li>
</ul>
<a id="M2">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>M2</h4>
<pre>public static final&nbsp;<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a> M2</pre>
</li>
</ul>
<a id="M3">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>M3</h4>
<pre>public static final&nbsp;<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a> M3</pre>
</li>
</ul>
<a id="M4">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>M4</h4>
<pre>public static final&nbsp;<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a> M4</pre>
</li>
</ul>
<a id="M5">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>M5</h4>
<pre>public static final&nbsp;<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a> M5</pre>
</li>
</ul>
<a id="M6">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>M6</h4>
<pre>public static final&nbsp;<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a> M6</pre>
</li>
</ul>
<a id="M7">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>M7</h4>
<pre>public static final&nbsp;<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a> M7</pre>
</li>
</ul>
</li>
</ul>
</section>
<!-- ============ METHOD DETAIL ========== -->
<section role="region">
<ul class="blockList">
@ -445,48 +283,6 @@ the order they are declared.</div>
<!-- -->
</a>
<h3>Method Detail</h3>
<a id="values()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>values</h4>
<pre class="methodSignature">public static&nbsp;<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a>[]&nbsp;values()</pre>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
<pre>
for (API.Motor c : API.Motor.values())
&nbsp; System.out.println(c);
</pre></div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>an array containing the constants of this enum type, in the order they are declared</dd>
</dl>
</li>
</ul>
<a id="valueOf(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>valueOf</h4>
<pre class="methodSignature">public static&nbsp;<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;valueOf&#8203;(java.lang.String&nbsp;name)</pre>
<div class="block">Returns the enum constant of this type with the specified name.
The string must match <i>exactly</i> an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>name</code> - the name of the enum constant to be returned.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the enum constant with the specified name</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd>
<dd><code>java.lang.NullPointerException</code> - if the argument is null</dd>
</dl>
</li>
</ul>
<a id="start()">
<!-- -->
</a>
@ -732,14 +528,14 @@ not permitted.)</div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>API.MotorBehaviour</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>API.Servo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
@ -27,8 +27,8 @@
catch(err) {
}
//-->
var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":9,"i6":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
@ -88,14 +88,14 @@ loadScripts(document, 'script');</script>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
@ -115,107 +115,33 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
<main role="main">
<div class="header">
<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.firstinspires.ftc.teamcode</a></div>
<h2 title="Enum API.Servo" class="title">Enum API.Servo</h2>
<h2 title="Class API.Servo" class="title">Class API.Servo</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>java.lang.Enum&lt;<a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a>&gt;</li>
<li>
<ul class="inheritance">
<li>org.firstinspires.ftc.teamcode.API.Servo</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><code>java.io.Serializable</code>, <code>java.lang.Comparable&lt;<a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a>&gt;</code></dd>
</dl>
<dl>
<dt>Enclosing class:</dt>
<dd><a href="API.html" title="class in org.firstinspires.ftc.teamcode">API</a></dd>
</dl>
<hr>
<pre>public static enum <span class="typeNameLabel">API.Servo</span>
extends java.lang.Enum&lt;<a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a>&gt;</pre>
<pre>public class <span class="typeNameLabel">API.Servo</span>
extends java.lang.Object</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== ENUM CONSTANT SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="enum.constant.summary">
<!-- -->
</a>
<h3>Enum Constant Summary</h3>
<table class="memberSummary">
<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Enum Constant</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#S0">S0</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#S1">S1</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#S10">S10</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#S11">S11</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#S2">S2</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#S3">S3</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#S4">S4</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#S5">S5</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#S6">S6</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#S7">S7</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#S8">S8</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#S9">S9</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
</table>
</li>
</ul>
</section>
<!-- ========== METHOD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
@ -224,7 +150,7 @@ extends java.lang.Enum&lt;<a href="API.Servo.html" title="enum in org.firstinspi
</a>
<h3>Method Summary</h3>
<table class="memberSummary">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colSecond" scope="col">Method</th>
@ -266,35 +192,13 @@ extends java.lang.Enum&lt;<a href="API.Servo.html" title="enum in org.firstinspi
<div class="block">Stops the servo by setting the power to 0.</div>
</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>static <a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>&#8203;(java.lang.String&nbsp;name)</code></th>
<td class="colLast">
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>static <a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a>[]</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th>
<td class="colLast">
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Enum</h3>
<code>compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
<code>getClass, notify, notifyAll, wait, wait, wait</code></li>
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
@ -305,124 +209,6 @@ the order they are declared.</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ ENUM CONSTANT DETAIL =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="enum.constant.detail">
<!-- -->
</a>
<h3>Enum Constant Detail</h3>
<a id="S0">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>S0</h4>
<pre>public static final&nbsp;<a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a> S0</pre>
</li>
</ul>
<a id="S1">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>S1</h4>
<pre>public static final&nbsp;<a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a> S1</pre>
</li>
</ul>
<a id="S2">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>S2</h4>
<pre>public static final&nbsp;<a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a> S2</pre>
</li>
</ul>
<a id="S3">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>S3</h4>
<pre>public static final&nbsp;<a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a> S3</pre>
</li>
</ul>
<a id="S4">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>S4</h4>
<pre>public static final&nbsp;<a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a> S4</pre>
</li>
</ul>
<a id="S5">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>S5</h4>
<pre>public static final&nbsp;<a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a> S5</pre>
</li>
</ul>
<a id="S6">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>S6</h4>
<pre>public static final&nbsp;<a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a> S6</pre>
</li>
</ul>
<a id="S7">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>S7</h4>
<pre>public static final&nbsp;<a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a> S7</pre>
</li>
</ul>
<a id="S8">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>S8</h4>
<pre>public static final&nbsp;<a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a> S8</pre>
</li>
</ul>
<a id="S9">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>S9</h4>
<pre>public static final&nbsp;<a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a> S9</pre>
</li>
</ul>
<a id="S10">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>S10</h4>
<pre>public static final&nbsp;<a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a> S10</pre>
</li>
</ul>
<a id="S11">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>S11</h4>
<pre>public static final&nbsp;<a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a> S11</pre>
</li>
</ul>
</li>
</ul>
</section>
<!-- ============ METHOD DETAIL ========== -->
<section role="region">
<ul class="blockList">
@ -430,48 +216,6 @@ the order they are declared.</div>
<!-- -->
</a>
<h3>Method Detail</h3>
<a id="values()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>values</h4>
<pre class="methodSignature">public static&nbsp;<a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a>[]&nbsp;values()</pre>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
<pre>
for (API.Servo c : API.Servo.values())
&nbsp; System.out.println(c);
</pre></div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>an array containing the constants of this enum type, in the order they are declared</dd>
</dl>
</li>
</ul>
<a id="valueOf(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>valueOf</h4>
<pre class="methodSignature">public static&nbsp;<a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a>&nbsp;valueOf&#8203;(java.lang.String&nbsp;name)</pre>
<div class="block">Returns the enum constant of this type with the specified name.
The string must match <i>exactly</i> an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>name</code> - the name of the enum constant to be returned.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the enum constant with the specified name</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd>
<dd><code>java.lang.NullPointerException</code> - if the argument is null</dd>
</dl>
</li>
</ul>
<a id="setPosition(double)">
<!-- -->
</a>
@ -592,14 +336,14 @@ not permitted.)</div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>API</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
@ -27,8 +27,8 @@
catch(err) {
}
//-->
var data = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
var data = {"i0":10,"i1":10,"i2":10,"i3":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
@ -158,28 +158,33 @@ extends java.lang.Object</pre>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></span></code></th>
<td class="colFirst"><code>class&nbsp;</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode">API.HubIMU</a></span></code></th>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode">API.GamepadIndex</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></span></code></th>
<td class="colFirst"><code>class&nbsp;</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode">API.HubIMU</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class&nbsp;</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="API.MotorBehaviour.html" title="enum in org.firstinspires.ftc.teamcode">API.MotorBehaviour</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></span></code></th>
<tr class="altColor">
<td class="colFirst"><code>class&nbsp;</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="API.Servo.html" title="class in org.firstinspires.ftc.teamcode">API.Servo</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
</table>
@ -201,17 +206,27 @@ extends java.lang.Object</pre>
<th class="colLast" scope="col">Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode">API.HubIMU</a></code></td>
<td class="colFirst"><code><a href="API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#gamepad1">gamepad1</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#gamepad2">gamepad2</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode">API.HubIMU</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#imu">imu</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.io.File</code></td>
<td class="colFirst"><code>java.io.File</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#logFile">logFile</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static boolean</code></td>
<td class="colFirst"><code>boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#useLogFile">useLogFile</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
@ -233,7 +248,12 @@ extends java.lang.Object</pre>
<th class="colLast" scope="col">Description</th>
</tr>
<tr class="altColor">
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">API</a></span>()</code></th>
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(com.qualcomm.robotcore.eventloop.opmode.OpMode)">API</a></span>&#8203;(com.qualcomm.robotcore.eventloop.opmode.OpMode&nbsp;mode)</code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(com.qualcomm.robotcore.eventloop.opmode.OpMode,boolean)">API</a></span>&#8203;(com.qualcomm.robotcore.eventloop.opmode.OpMode&nbsp;mode,
boolean&nbsp;useLogFile)</code></th>
<td class="colLast">&nbsp;</td>
</tr>
</table>
@ -248,50 +268,35 @@ extends java.lang.Object</pre>
</a>
<h3>Method Summary</h3>
<table class="memberSummary">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colSecond" scope="col">Method</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#clear()">clear</a></span>()</code></th>
<td class="colLast">
<div class="block">Clears the telemetry</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#init(com.qualcomm.robotcore.eventloop.opmode.OpMode)">init</a></span>&#8203;(com.qualcomm.robotcore.eventloop.opmode.OpMode&nbsp;mode)</code></th>
<td class="colLast">
<div class="block">Initializes the API</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>static void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#init(com.qualcomm.robotcore.eventloop.opmode.OpMode,boolean)">init</a></span>&#8203;(com.qualcomm.robotcore.eventloop.opmode.OpMode&nbsp;mode,
boolean&nbsp;useLogFile)</code></th>
<td class="colLast">
<div class="block">Initializes the API</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#pause(double)">pause</a></span>&#8203;(double&nbsp;seconds)</code></th>
<td class="colLast">
<div class="block">Pauses for a given amount of seconds, with sub-millisecond accuracy</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>static void</code></td>
<tr id="i2" class="altColor">
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#print(java.lang.String)">print</a></span>&#8203;(java.lang.String&nbsp;s)</code></th>
<td class="colLast">
<div class="block">Prints a line to telemetry</div>
</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>static void</code></td>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#print(java.lang.String,java.lang.String)">print</a></span>&#8203;(java.lang.String&nbsp;caption,
java.lang.String&nbsp;value)</code></th>
<td class="colLast">
@ -328,7 +333,25 @@ extends java.lang.Object</pre>
<ul class="blockList">
<li class="blockList">
<h4>imu</h4>
<pre>public static&nbsp;<a href="API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode">API.HubIMU</a> imu</pre>
<pre>public final&nbsp;<a href="API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode">API.HubIMU</a> imu</pre>
</li>
</ul>
<a id="gamepad1">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>gamepad1</h4>
<pre>public final&nbsp;<a href="API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a> gamepad1</pre>
</li>
</ul>
<a id="gamepad2">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>gamepad2</h4>
<pre>public final&nbsp;<a href="API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode">API.Gamepad</a> gamepad2</pre>
</li>
</ul>
<a id="useLogFile">
@ -337,7 +360,7 @@ extends java.lang.Object</pre>
<ul class="blockList">
<li class="blockList">
<h4>useLogFile</h4>
<pre>public static&nbsp;boolean useLogFile</pre>
<pre>public final&nbsp;boolean useLogFile</pre>
</li>
</ul>
<a id="logFile">
@ -346,7 +369,7 @@ extends java.lang.Object</pre>
<ul class="blockListLast">
<li class="blockList">
<h4>logFile</h4>
<pre>public static&nbsp;java.io.File logFile</pre>
<pre>public&nbsp;java.io.File logFile</pre>
</li>
</ul>
</li>
@ -359,13 +382,32 @@ extends java.lang.Object</pre>
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a id="&lt;init&gt;()">
<a id="&lt;init&gt;(com.qualcomm.robotcore.eventloop.opmode.OpMode,boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>API</h4>
<pre>public&nbsp;API&#8203;(com.qualcomm.robotcore.eventloop.opmode.OpMode&nbsp;mode,
boolean&nbsp;useLogFile)</pre>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>mode</code> - the opmode to initialize with</dd>
<dd><code>useLogFile</code> - whether or not to log to a log file</dd>
</dl>
</li>
</ul>
<a id="&lt;init&gt;(com.qualcomm.robotcore.eventloop.opmode.OpMode)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>API</h4>
<pre>public&nbsp;API()</pre>
<pre>public&nbsp;API&#8203;(com.qualcomm.robotcore.eventloop.opmode.OpMode&nbsp;mode)</pre>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>mode</code> - the opmode to initialize with</dd>
</dl>
</li>
</ul>
</li>
@ -378,43 +420,13 @@ extends java.lang.Object</pre>
<!-- -->
</a>
<h3>Method Detail</h3>
<a id="init(com.qualcomm.robotcore.eventloop.opmode.OpMode,boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>init</h4>
<pre class="methodSignature">public static&nbsp;void&nbsp;init&#8203;(com.qualcomm.robotcore.eventloop.opmode.OpMode&nbsp;mode,
boolean&nbsp;useLogFile)</pre>
<div class="block">Initializes the API</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>mode</code> - the opmode to initialize with</dd>
<dd><code>useLogFile</code> - whether or not to log to a log file</dd>
</dl>
</li>
</ul>
<a id="init(com.qualcomm.robotcore.eventloop.opmode.OpMode)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>init</h4>
<pre class="methodSignature">public static&nbsp;void&nbsp;init&#8203;(com.qualcomm.robotcore.eventloop.opmode.OpMode&nbsp;mode)</pre>
<div class="block">Initializes the API</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>mode</code> - the opmode to initialize with</dd>
</dl>
</li>
</ul>
<a id="pause(double)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>pause</h4>
<pre class="methodSignature">public static&nbsp;void&nbsp;pause&#8203;(double&nbsp;seconds)</pre>
<pre class="methodSignature">public&nbsp;void&nbsp;pause&#8203;(double&nbsp;seconds)</pre>
<div class="block">Pauses for a given amount of seconds, with sub-millisecond accuracy</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
@ -428,7 +440,7 @@ extends java.lang.Object</pre>
<ul class="blockList">
<li class="blockList">
<h4>print</h4>
<pre class="methodSignature">public static&nbsp;void&nbsp;print&#8203;(java.lang.String&nbsp;s)</pre>
<pre class="methodSignature">public&nbsp;void&nbsp;print&#8203;(java.lang.String&nbsp;s)</pre>
<div class="block">Prints a line to telemetry</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
@ -444,8 +456,8 @@ extends java.lang.Object</pre>
<ul class="blockList">
<li class="blockList">
<h4>print</h4>
<pre class="methodSignature">public static&nbsp;void&nbsp;print&#8203;(java.lang.String&nbsp;caption,
java.lang.String&nbsp;value)</pre>
<pre class="methodSignature">public&nbsp;void&nbsp;print&#8203;(java.lang.String&nbsp;caption,
java.lang.String&nbsp;value)</pre>
<div class="block">Prints a value to telemetry, formatted as "caption: value"</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
@ -462,7 +474,7 @@ extends java.lang.Object</pre>
<ul class="blockListLast">
<li class="blockList">
<h4>clear</h4>
<pre class="methodSignature">public static&nbsp;void&nbsp;clear()</pre>
<pre class="methodSignature">public&nbsp;void&nbsp;clear()</pre>
<div class="block">Clears the telemetry</div>
</li>
</ul>

View file

@ -0,0 +1,481 @@
<!DOCTYPE HTML>
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>GameMotor</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
<!--[if IE]>
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
<![endif]-->
<script type="text/javascript" src="../../../../jquery/jquery-3.5.1.js"></script>
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="GameMotor";
}
}
catch(err) {
}
//-->
var data = {"i0":9,"i1":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
var pathtoroot = "../../../../";
var useModuleDirectories = true;
loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<header role="banner">
<nav role="navigation">
<div class="fixedNav">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a id="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
</ul>
<ul class="navListSearch">
<li><label for="search">SEARCH:</label>
<input type="text" id="search" value="search" disabled="disabled">
<input type="reset" id="reset" value="reset" disabled="disabled">
</li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a id="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
</div>
<div class="navPadding">&nbsp;</div>
<script type="text/javascript"><!--
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
//-->
</script>
</nav>
</header>
<!-- ======== START OF CLASS DATA ======== -->
<main role="main">
<div class="header">
<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.firstinspires.ftc.teamcode</a></div>
<h2 title="Enum GameMotor" class="title">Enum GameMotor</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>java.lang.Enum&lt;<a href="GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a>&gt;</li>
<li>
<ul class="inheritance">
<li>org.firstinspires.ftc.teamcode.GameMotor</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><code>java.io.Serializable</code>, <code>java.lang.Comparable&lt;<a href="GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a>&gt;</code></dd>
</dl>
<hr>
<pre>public enum <span class="typeNameLabel">GameMotor</span>
extends java.lang.Enum&lt;<a href="GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a>&gt;</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== ENUM CONSTANT SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="enum.constant.summary">
<!-- -->
</a>
<h3>Enum Constant Summary</h3>
<table class="memberSummary">
<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Enum Constant</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BL">BL</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BR">BR</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#CAROUSEL">CAROUSEL</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FL">FL</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FR">FR</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#INTAKE">INTAKE</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#LIFT">LIFT</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
</table>
</li>
</ul>
</section>
<!-- =========== FIELD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="memberSummary">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colSecond" scope="col">Field</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#name">name</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
</table>
</li>
</ul>
</section>
<!-- ========== METHOD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colSecond" scope="col">Method</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static <a href="GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>&#8203;(java.lang.String&nbsp;name)</code></th>
<td class="colLast">
<div class="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static <a href="GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a>[]</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th>
<td class="colLast">
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Enum</h3>
<code>compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
<code>getClass, notify, notifyAll, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</section>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ ENUM CONSTANT DETAIL =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="enum.constant.detail">
<!-- -->
</a>
<h3>Enum Constant Detail</h3>
<a id="FL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>FL</h4>
<pre>public static final&nbsp;<a href="GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a> FL</pre>
</li>
</ul>
<a id="FR">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>FR</h4>
<pre>public static final&nbsp;<a href="GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a> FR</pre>
</li>
</ul>
<a id="BL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>BL</h4>
<pre>public static final&nbsp;<a href="GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a> BL</pre>
</li>
</ul>
<a id="BR">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>BR</h4>
<pre>public static final&nbsp;<a href="GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a> BR</pre>
</li>
</ul>
<a id="INTAKE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>INTAKE</h4>
<pre>public static final&nbsp;<a href="GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a> INTAKE</pre>
</li>
</ul>
<a id="LIFT">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>LIFT</h4>
<pre>public static final&nbsp;<a href="GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a> LIFT</pre>
</li>
</ul>
<a id="CAROUSEL">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>CAROUSEL</h4>
<pre>public static final&nbsp;<a href="GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a> CAROUSEL</pre>
</li>
</ul>
</li>
</ul>
</section>
<!-- ============ FIELD DETAIL =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="field.detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a id="name">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>name</h4>
<pre>public final&nbsp;java.lang.String name</pre>
</li>
</ul>
</li>
</ul>
</section>
<!-- ============ METHOD DETAIL ========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a id="values()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>values</h4>
<pre class="methodSignature">public static&nbsp;<a href="GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a>[]&nbsp;values()</pre>
<div class="block">Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
<pre>
for (GameMotor c : GameMotor.values())
&nbsp; System.out.println(c);
</pre></div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>an array containing the constants of this enum type, in the order they are declared</dd>
</dl>
</li>
</ul>
<a id="valueOf(java.lang.String)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>valueOf</h4>
<pre class="methodSignature">public static&nbsp;<a href="GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a>&nbsp;valueOf&#8203;(java.lang.String&nbsp;name)</pre>
<div class="block">Returns the enum constant of this type with the specified name.
The string must match <i>exactly</i> an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>name</code> - the name of the enum constant to be returned.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the enum constant with the specified name</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd>
<dd><code>java.lang.NullPointerException</code> - if the argument is null</dd>
</dl>
</li>
</ul>
</li>
</ul>
</section>
</li>
</ul>
</div>
</div>
</main>
<!-- ========= END OF CLASS DATA ========= -->
<footer role="contentinfo">
<nav role="navigation">
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a id="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a id="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</nav>
</footer>
</body>
</html>

View file

@ -0,0 +1,390 @@
<!DOCTYPE HTML>
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>GameMotors</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
<!--[if IE]>
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
<![endif]-->
<script type="text/javascript" src="../../../../jquery/jquery-3.5.1.js"></script>
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="GameMotors";
}
}
catch(err) {
}
//-->
var pathtoroot = "../../../../";
var useModuleDirectories = true;
loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<header role="banner">
<nav role="navigation">
<div class="fixedNav">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a id="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
</ul>
<ul class="navListSearch">
<li><label for="search">SEARCH:</label>
<input type="text" id="search" value="search" disabled="disabled">
<input type="reset" id="reset" value="reset" disabled="disabled">
</li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li>Method</li>
</ul>
</div>
<a id="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
</div>
<div class="navPadding">&nbsp;</div>
<script type="text/javascript"><!--
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
//-->
</script>
</nav>
</header>
<!-- ======== START OF CLASS DATA ======== -->
<main role="main">
<div class="header">
<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.firstinspires.ftc.teamcode</a></div>
<h2 title="Class GameMotors" class="title">Class GameMotors</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>org.firstinspires.ftc.teamcode.GameMotors</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<pre>public class <span class="typeNameLabel">GameMotors</span>
extends java.lang.Object</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="memberSummary">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colSecond" scope="col">Field</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#bl">bl</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#br">br</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#carousel">carousel</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#fl">fl</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#fr">fr</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#intake">intake</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lift">lift</a></span></code></th>
<td class="colLast">&nbsp;</td>
</tr>
</table>
</li>
</ul>
</section>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Constructor</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tr class="altColor">
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.firstinspires.ftc.teamcode.API)">GameMotors</a></span>&#8203;(<a href="API.html" title="class in org.firstinspires.ftc.teamcode">API</a>&nbsp;api)</code></th>
<td class="colLast">&nbsp;</td>
</tr>
</table>
</li>
</ul>
</section>
<!-- ========== METHOD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</section>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="field.detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a id="fl">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fl</h4>
<pre>public final&nbsp;<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a> fl</pre>
</li>
</ul>
<a id="fr">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fr</h4>
<pre>public final&nbsp;<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a> fr</pre>
</li>
</ul>
<a id="bl">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>bl</h4>
<pre>public final&nbsp;<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a> bl</pre>
</li>
</ul>
<a id="br">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>br</h4>
<pre>public final&nbsp;<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a> br</pre>
</li>
</ul>
<a id="intake">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>intake</h4>
<pre>public final&nbsp;<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a> intake</pre>
</li>
</ul>
<a id="lift">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>lift</h4>
<pre>public final&nbsp;<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a> lift</pre>
</li>
</ul>
<a id="carousel">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>carousel</h4>
<pre>public final&nbsp;<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a> carousel</pre>
</li>
</ul>
</li>
</ul>
</section>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a id="&lt;init&gt;(org.firstinspires.ftc.teamcode.API)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>GameMotors</h4>
<pre>public&nbsp;GameMotors&#8203;(<a href="API.html" title="class in org.firstinspires.ftc.teamcode">API</a>&nbsp;api)</pre>
</li>
</ul>
</li>
</ul>
</section>
</li>
</ul>
</div>
</div>
</main>
<!-- ========= END OF CLASS DATA ========= -->
<footer role="contentinfo">
<nav role="navigation">
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a id="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li>Method</li>
</ul>
</div>
<a id="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</nav>
</footer>
</body>
</html>

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>MovementAPI</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
@ -27,8 +27,8 @@
catch(err) {
}
//-->
var data = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9,"i9":9,"i10":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
@ -152,8 +152,21 @@ extends java.lang.Object</pre>
<th class="colLast" scope="col">Description</th>
</tr>
<tr class="altColor">
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">MovementAPI</a></span>()</code></th>
<td class="colLast">&nbsp;</td>
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.firstinspires.ftc.teamcode.API,org.firstinspires.ftc.teamcode.API.Motor,org.firstinspires.ftc.teamcode.API.Motor,org.firstinspires.ftc.teamcode.API.Motor,org.firstinspires.ftc.teamcode.API.Motor)">MovementAPI</a></span>&#8203;(<a href="API.html" title="class in org.firstinspires.ftc.teamcode">API</a>&nbsp;api,
<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;_fl,
<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;_fr,
<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;_bl,
<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;_br)</code></th>
<td class="colLast">
<div class="block">Initializes the API</div>
</td>
</tr>
<tr class="rowColor">
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.firstinspires.ftc.teamcode.API,org.firstinspires.ftc.teamcode.GameMotors)">MovementAPI</a></span>&#8203;(<a href="API.html" title="class in org.firstinspires.ftc.teamcode">API</a>&nbsp;api,
<a href="GameMotors.html" title="class in org.firstinspires.ftc.teamcode">GameMotors</a>&nbsp;motors)</code></th>
<td class="colLast">
<div class="block">Initializes the API with the motors in the GameMotor enum</div>
</td>
</tr>
</table>
</li>
@ -167,59 +180,42 @@ extends java.lang.Object</pre>
</a>
<h3>Method Summary</h3>
<table class="memberSummary">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colSecond" scope="col">Method</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>static <a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></code></td>
<td class="colFirst"><code><a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBL()">getBL</a></span>()</code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>static <a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></code></td>
<td class="colFirst"><code><a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBR()">getBR</a></span>()</code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>static <a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></code></td>
<td class="colFirst"><code><a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFL()">getFL</a></span>()</code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>static <a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></code></td>
<td class="colFirst"><code><a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFR()">getFR</a></span>()</code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>static void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#init()">init</a></span>()</code></th>
<td class="colLast">
<div class="block">Initializes the API with the motors in the GameMotor enum</div>
</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>static void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#init(org.firstinspires.ftc.teamcode.API.Motor,org.firstinspires.ftc.teamcode.API.Motor,org.firstinspires.ftc.teamcode.API.Motor,org.firstinspires.ftc.teamcode.API.Motor)">init</a></span>&#8203;(<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;_fl,
<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;_fr,
<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;_bl,
<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;_br)</code></th>
<td class="colLast">
<div class="block">Initializes the API</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#move(double,double)">move</a></span>&#8203;(double&nbsp;direction,
double&nbsp;speed)</code></th>
<td class="colLast">
<div class="block">Moves the robot in a given direction with a given speed</div>
</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>static void</code></td>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#move(double,double,boolean)">move</a></span>&#8203;(double&nbsp;direction,
double&nbsp;speed,
boolean&nbsp;verbose)</code></th>
@ -227,8 +223,8 @@ extends java.lang.Object</pre>
<div class="block">Moves the robot in a given direction with a given speed</div>
</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code>static void</code></td>
<tr id="i6" class="altColor">
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#move(double,double,double,double)">move</a></span>&#8203;(double&nbsp;powerY,
double&nbsp;powerX,
double&nbsp;turn,
@ -237,8 +233,8 @@ extends java.lang.Object</pre>
<div class="block">Moves the robot given the speed to move forward/back and left/right</div>
</td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code>static void</code></td>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#move(double,double,double,double,boolean)">move</a></span>&#8203;(double&nbsp;powerY,
double&nbsp;powerX,
double&nbsp;turn,
@ -248,8 +244,13 @@ extends java.lang.Object</pre>
<div class="block">Moves the robot given the speed to move forward/back and left/right</div>
</td>
</tr>
<tr id="i10" class="altColor">
<td class="colFirst"><code>static void</code></td>
<tr id="i8" class="altColor">
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setFlipped(boolean)">setFlipped</a></span>&#8203;(boolean&nbsp;flipped)</code></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#stop()">stop</a></span>()</code></th>
<td class="colLast">
<div class="block">Stops the robot</div>
@ -279,13 +280,36 @@ extends java.lang.Object</pre>
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a id="&lt;init&gt;()">
<a id="&lt;init&gt;(org.firstinspires.ftc.teamcode.API,org.firstinspires.ftc.teamcode.API.Motor,org.firstinspires.ftc.teamcode.API.Motor,org.firstinspires.ftc.teamcode.API.Motor,org.firstinspires.ftc.teamcode.API.Motor)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MovementAPI</h4>
<pre>public&nbsp;MovementAPI&#8203;(<a href="API.html" title="class in org.firstinspires.ftc.teamcode">API</a>&nbsp;api,
<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;_fl,
<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;_fr,
<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;_bl,
<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;_br)</pre>
<div class="block">Initializes the API</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>_fl</code> - the front-left wheel</dd>
<dd><code>_fr</code> - the front-right wheel</dd>
<dd><code>_bl</code> - the back-left wheel</dd>
<dd><code>_br</code> - the back-right wheel</dd>
</dl>
</li>
</ul>
<a id="&lt;init&gt;(org.firstinspires.ftc.teamcode.API,org.firstinspires.ftc.teamcode.GameMotors)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>MovementAPI</h4>
<pre>public&nbsp;MovementAPI()</pre>
<pre>public&nbsp;MovementAPI&#8203;(<a href="API.html" title="class in org.firstinspires.ftc.teamcode">API</a>&nbsp;api,
<a href="GameMotors.html" title="class in org.firstinspires.ftc.teamcode">GameMotors</a>&nbsp;motors)</pre>
<div class="block">Initializes the API with the motors in the GameMotor enum</div>
</li>
</ul>
</li>
@ -304,7 +328,7 @@ extends java.lang.Object</pre>
<ul class="blockList">
<li class="blockList">
<h4>getFL</h4>
<pre class="methodSignature">public static&nbsp;<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;getFL()</pre>
<pre class="methodSignature">public&nbsp;<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;getFL()</pre>
</li>
</ul>
<a id="getFR()">
@ -313,7 +337,7 @@ extends java.lang.Object</pre>
<ul class="blockList">
<li class="blockList">
<h4>getFR</h4>
<pre class="methodSignature">public static&nbsp;<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;getFR()</pre>
<pre class="methodSignature">public&nbsp;<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;getFR()</pre>
</li>
</ul>
<a id="getBL()">
@ -322,7 +346,7 @@ extends java.lang.Object</pre>
<ul class="blockList">
<li class="blockList">
<h4>getBL</h4>
<pre class="methodSignature">public static&nbsp;<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;getBL()</pre>
<pre class="methodSignature">public&nbsp;<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;getBL()</pre>
</li>
</ul>
<a id="getBR()">
@ -331,37 +355,16 @@ extends java.lang.Object</pre>
<ul class="blockList">
<li class="blockList">
<h4>getBR</h4>
<pre class="methodSignature">public static&nbsp;<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;getBR()</pre>
<pre class="methodSignature">public&nbsp;<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;getBR()</pre>
</li>
</ul>
<a id="init(org.firstinspires.ftc.teamcode.API.Motor,org.firstinspires.ftc.teamcode.API.Motor,org.firstinspires.ftc.teamcode.API.Motor,org.firstinspires.ftc.teamcode.API.Motor)">
<a id="setFlipped(boolean)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>init</h4>
<pre class="methodSignature">public static&nbsp;void&nbsp;init&#8203;(<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;_fl,
<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;_fr,
<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;_bl,
<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a>&nbsp;_br)</pre>
<div class="block">Initializes the API</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>_fl</code> - the front-left wheel</dd>
<dd><code>_fr</code> - the front-right wheel</dd>
<dd><code>_bl</code> - the back-left wheel</dd>
<dd><code>_br</code> - the back-right wheel</dd>
</dl>
</li>
</ul>
<a id="init()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>init</h4>
<pre class="methodSignature">public static&nbsp;void&nbsp;init()</pre>
<div class="block">Initializes the API with the motors in the GameMotor enum</div>
<h4>setFlipped</h4>
<pre class="methodSignature">public&nbsp;void&nbsp;setFlipped&#8203;(boolean&nbsp;flipped)</pre>
</li>
</ul>
<a id="move(double,double,double,double,boolean)">
@ -370,11 +373,11 @@ extends java.lang.Object</pre>
<ul class="blockList">
<li class="blockList">
<h4>move</h4>
<pre class="methodSignature">public static&nbsp;void&nbsp;move&#8203;(double&nbsp;powerY,
double&nbsp;powerX,
double&nbsp;turn,
double&nbsp;speed,
boolean&nbsp;verbose)</pre>
<pre class="methodSignature">public&nbsp;void&nbsp;move&#8203;(double&nbsp;powerY,
double&nbsp;powerX,
double&nbsp;turn,
double&nbsp;speed,
boolean&nbsp;verbose)</pre>
<div class="block">Moves the robot given the speed to move forward/back and left/right</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
@ -392,10 +395,10 @@ extends java.lang.Object</pre>
<ul class="blockList">
<li class="blockList">
<h4>move</h4>
<pre class="methodSignature">public static&nbsp;void&nbsp;move&#8203;(double&nbsp;powerY,
double&nbsp;powerX,
double&nbsp;turn,
double&nbsp;speed)</pre>
<pre class="methodSignature">public&nbsp;void&nbsp;move&#8203;(double&nbsp;powerY,
double&nbsp;powerX,
double&nbsp;turn,
double&nbsp;speed)</pre>
<div class="block">Moves the robot given the speed to move forward/back and left/right</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
@ -412,9 +415,9 @@ extends java.lang.Object</pre>
<ul class="blockList">
<li class="blockList">
<h4>move</h4>
<pre class="methodSignature">public static&nbsp;void&nbsp;move&#8203;(double&nbsp;direction,
double&nbsp;speed,
boolean&nbsp;verbose)</pre>
<pre class="methodSignature">public&nbsp;void&nbsp;move&#8203;(double&nbsp;direction,
double&nbsp;speed,
boolean&nbsp;verbose)</pre>
<div class="block">Moves the robot in a given direction with a given speed</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
@ -430,8 +433,8 @@ extends java.lang.Object</pre>
<ul class="blockList">
<li class="blockList">
<h4>move</h4>
<pre class="methodSignature">public static&nbsp;void&nbsp;move&#8203;(double&nbsp;direction,
double&nbsp;speed)</pre>
<pre class="methodSignature">public&nbsp;void&nbsp;move&#8203;(double&nbsp;direction,
double&nbsp;speed)</pre>
<div class="block">Moves the robot in a given direction with a given speed</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
@ -446,7 +449,7 @@ extends java.lang.Object</pre>
<ul class="blockListLast">
<li class="blockList">
<h4>stop</h4>
<pre class="methodSignature">public static&nbsp;void&nbsp;stop()</pre>
<pre class="methodSignature">public&nbsp;void&nbsp;stop()</pre>
<div class="block">Stops the robot</div>
</li>
</ul>

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>org.firstinspires.ftc.teamcode</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
@ -109,7 +109,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode">API.HubIMU</a></th>
<th class="colFirst" scope="row"><a href="GameMotors.html" title="class in org.firstinspires.ftc.teamcode">GameMotors</a></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
@ -132,19 +132,15 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode">API.Gamepad</a></th>
<th class="colFirst" scope="row"><a href="API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode">API.GamepadIndex</a></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode">API.Motor</a></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="API.MotorBehaviour.html" title="enum in org.firstinspires.ftc.teamcode">API.MotorBehaviour</a></th>
<td class="colLast">&nbsp;</td>
</tr>
<tr class="altColor">
<th class="colFirst" scope="row"><a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode">API.Servo</a></th>
<tr class="rowColor">
<th class="colFirst" scope="row"><a href="GameMotor.html" title="enum in org.firstinspires.ftc.teamcode">GameMotor</a></th>
<td class="colLast">&nbsp;</td>
</tr>
</tbody>

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>org.firstinspires.ftc.teamcode Class Hierarchy</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
@ -101,7 +101,11 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
<li class="circle">java.lang.Object
<ul>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="API.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Gamepad</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.HubIMU</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="API.Motor.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Motor</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="API.Servo.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Servo</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="GameMotors.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">GameMotors</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="MovementAPI.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">MovementAPI</span></a></li>
</ul>
</li>
@ -115,10 +119,9 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
<li class="circle">java.lang.Enum&lt;E&gt; (implements java.lang.Comparable&lt;T&gt;, java.io.Serializable)
<ul>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="API.Direction.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Direction</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Gamepad</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="API.Motor.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Motor</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.GamepadIndex</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="API.MotorBehaviour.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.MotorBehaviour</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="API.Servo.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Servo</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="GameMotor.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">GameMotor</span></a></li>
</ul>
</li>
</ul>

View file

@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.10) on Fri Jan 21 16:30:03 CST 2022 -->
<!-- Generated by javadoc (11.0.10) on Tue Feb 15 17:09:18 CST 2022 -->
<title>Class Hierarchy</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2022-01-21">
<meta name="dc.created" content="2022-02-15">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="script.js"></script>
@ -105,7 +105,11 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
<li class="circle">java.lang.Object
<ul>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="org/firstinspires/ftc/teamcode/API.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="org/firstinspires/ftc/teamcode/API.Gamepad.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Gamepad</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="org/firstinspires/ftc/teamcode/API.HubIMU.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.HubIMU</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="org/firstinspires/ftc/teamcode/API.Motor.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Motor</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="org/firstinspires/ftc/teamcode/API.Servo.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Servo</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="org/firstinspires/ftc/teamcode/GameMotors.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">GameMotors</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="org/firstinspires/ftc/teamcode/MovementAPI.html" title="class in org.firstinspires.ftc.teamcode"><span class="typeNameLink">MovementAPI</span></a></li>
</ul>
</li>
@ -119,10 +123,9 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
<li class="circle">java.lang.Enum&lt;E&gt; (implements java.lang.Comparable&lt;T&gt;, java.io.Serializable)
<ul>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="org/firstinspires/ftc/teamcode/API.Direction.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Direction</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="org/firstinspires/ftc/teamcode/API.Gamepad.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Gamepad</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="org/firstinspires/ftc/teamcode/API.Motor.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Motor</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="org/firstinspires/ftc/teamcode/API.GamepadIndex.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.GamepadIndex</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="org/firstinspires/ftc/teamcode/API.MotorBehaviour.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.MotorBehaviour</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="org/firstinspires/ftc/teamcode/API.Servo.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">API.Servo</span></a></li>
<li class="circle">org.firstinspires.ftc.teamcode.<a href="org/firstinspires/ftc/teamcode/GameMotor.html" title="enum in org.firstinspires.ftc.teamcode"><span class="typeNameLink">GameMotor</span></a></li>
</ul>
</li>
</ul>

Binary file not shown.

View file

@ -1 +1 @@
typeSearchIndex = [{"l":"All Classes","url":"allclasses-index.html"},{"p":"org.firstinspires.ftc.teamcode","l":"API"},{"p":"org.firstinspires.ftc.teamcode","l":"API.Direction"},{"p":"org.firstinspires.ftc.teamcode","l":"API.Gamepad"},{"p":"org.firstinspires.ftc.teamcode","l":"API.HubIMU"},{"p":"org.firstinspires.ftc.teamcode","l":"API.Motor"},{"p":"org.firstinspires.ftc.teamcode","l":"API.MotorBehaviour"},{"p":"org.firstinspires.ftc.teamcode","l":"MovementAPI"},{"p":"org.firstinspires.ftc.teamcode","l":"API.Servo"}]
typeSearchIndex = [{"l":"All Classes","url":"allclasses-index.html"},{"p":"org.firstinspires.ftc.teamcode","l":"API"},{"p":"org.firstinspires.ftc.teamcode","l":"API.Direction"},{"p":"org.firstinspires.ftc.teamcode","l":"GameMotor"},{"p":"org.firstinspires.ftc.teamcode","l":"GameMotors"},{"p":"org.firstinspires.ftc.teamcode","l":"API.Gamepad"},{"p":"org.firstinspires.ftc.teamcode","l":"API.GamepadIndex"},{"p":"org.firstinspires.ftc.teamcode","l":"API.HubIMU"},{"p":"org.firstinspires.ftc.teamcode","l":"API.Motor"},{"p":"org.firstinspires.ftc.teamcode","l":"API.MotorBehaviour"},{"p":"org.firstinspires.ftc.teamcode","l":"MovementAPI"},{"p":"org.firstinspires.ftc.teamcode","l":"API.Servo"}]

Binary file not shown.