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

Commit

Permalink
illustrate telemetry issuance during init mode
Browse files Browse the repository at this point in the history
Former-commit-id: 44e12bb887a1b9d391c892bdbf0d3a632f27b3b7
Former-commit-id: 24eed1f
  • Loading branch information
rgatkinson committed Feb 2, 2016
1 parent e79fb76 commit d1dc257
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,15 @@ public class SynchTelemetryOp extends SynchronousOpMode
this.telemetry.log.setDisplayOldToNew(false); // And we show the log in new to old order, just because we want to
this.telemetry.log.setCapacity(10); // We can control the number of lines used by the log

// Wait until we've been given the ok to go
this.waitForStart();
// Wait until we've been given the ok to go. For fun, put out some
// telemetry while we're doing so.
while (!isStarted())
{
this.telemetry.addData("time", format(elapsed));
this.telemetry.update();
this.idle();
}

final int loopCountStart = getLoopCount();

// Go go gadget robot!
Expand Down
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 d1dc257

Please sign in to comment.