This repository has been archived by the owner on Sep 6, 2024. It is now read-only.
forked from ftctechnh/ftc_app
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
30 additions
and
3 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 0 additions & 1 deletion
1
SwerveRoboticsLibrary/doc/reference/BST_BNO055_DS000_13.pdf.REMOVED.git-id
This file was deleted.
Oops, something went wrong.
30 changes: 30 additions & 0 deletions
30
...RoboticsLibrary/src/main/java/org/swerverobotics/library/internal/tests/LongInitTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package org.swerverobotics.library.internal.tests; | ||
|
||
import com.qualcomm.robotcore.eventloop.opmode.OpMode; | ||
|
||
import org.swerverobotics.library.interfaces.Disabled; | ||
import org.swerverobotics.library.interfaces.TeleOp; | ||
|
||
@TeleOp(name="Long Init Test (Loop)", group="Swerve Tests") | ||
@Disabled | ||
public class LongInitTest extends OpMode | ||
{ | ||
int counter = 0; | ||
|
||
@Override | ||
public void init() | ||
{ | ||
try { | ||
Thread.sleep(3000); | ||
} | ||
catch (InterruptedException ignored) | ||
{ | ||
} | ||
} | ||
|
||
@Override | ||
public void loop() | ||
{ | ||
telemetry.addData("counter", counter++); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.