From d2ccf6e3ea77891513994c356d9948434ebad3ea Mon Sep 17 00:00:00 2001 From: Westside Robotics Date: Tue, 21 Dec 2021 17:05:17 -0800 Subject: [PATCH] Expand the Examples links. --- Timers-in-FTC-Blocks.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Timers-in-FTC-Blocks.md b/Timers-in-FTC-Blocks.md index bc26653..8efe252 100644 --- a/Timers-in-FTC-Blocks.md +++ b/Timers-in-FTC-Blocks.md @@ -112,11 +112,12 @@ When testing your OpMode, make sure the final Telemetry message **stays on the s Here are five common uses of timers in FTC: -[1. ](#1-loop-for-time)Loop until a time limit is reached. Think of this as an alarm clock.
-[2. ](#2-measure-duration-of-action)Measure the length of time (until an action stops or occurs). Think of this as a stopwatch.
-[3. ](#3-safety-timeout)Safety timeout. Don't get stuck in a loop!
-[4. ](#4-match-timer)Match timer or countdown timer.
-[5. ](#5-device-timer-in-teleop)Device timer in TeleOp. +1. [Loop until a time limit is reached](#1-loop-for-time). Think of this as an alarm clock.
+2. [Measure the length of time](#2-measure-duration-of-action) until an action occurs or stops. Think of this as a stopwatch.
+3. [Safety timeout](#3-safety-timeout). Don't get stuck in a loop!
+4. [Match timer](#4-match-timer) or countdown timer.
+5. [Device timer in TeleOp](#5-device-timer-in-teleop). + More advanced applications are mentioned at the end of this tutorial.