Skip to content
This repository has been archived by the owner on Sep 6, 2024. It is now read-only.

Commit

Permalink
merge 1.5.2.beta++ -> master
Browse files Browse the repository at this point in the history
Former-commit-id: 32c6f43
Former-commit-id: 41905f8
  • Loading branch information
rgatkinson committed Jun 24, 2016
2 parents 7501c78 + b3f452b commit 9941542
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 3 deletions.
Binary file modified FtcRobotController/libs/FtcCommon-release.aar
Binary file not shown.
Binary file modified FtcRobotController/libs/Hardware-release.aar
Binary file not shown.
Binary file modified FtcRobotController/libs/RobotCore-release.aar
Binary file not shown.

This file was deleted.

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++);
}
}
1 change: 0 additions & 1 deletion doc/tutorial/Build guide for k9bot.pdf.REMOVED.git-id

This file was deleted.

1 change: 0 additions & 1 deletion doc/tutorial/FTCTraining_Manual.pdf.REMOVED.git-id

This file was deleted.

0 comments on commit 9941542

Please sign in to comment.