From 7c6b1fb7c1f43d261d26ba957b74f739e1d61127 Mon Sep 17 00:00:00 2001 From: FTC Engineering Date: Wed, 20 Sep 2017 07:05:21 -0400 Subject: [PATCH] Updated Creating and Running an Op Mode (Android Studio) (markdown) --- Creating-and-Running-an-Op-Mode-(Android-Studio).md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Creating-and-Running-an-Op-Mode-(Android-Studio).md b/Creating-and-Running-an-Op-Mode-(Android-Studio).md index 93683e3..3343f28 100644 --- a/Creating-and-Running-an-Op-Mode-(Android-Studio).md +++ b/Creating-and-Running-an-Op-Mode-(Android-Studio).md @@ -107,7 +107,7 @@ You can see from the sample code that an op mode is defined as a Java class. In public class MyFIRSTJavaOpMode extends LinearOpMode { ``` -You can also see that the OnBot Java editor created five private member variables for this op mode. These variables will hold references to the five configured devices that the OnBot Java editor detected in the configuration file of your Robot Controller. +You can also see that the sample op mode includes five private member variables for this op mode. These variables will hold references to the five devices that you configured earlier for the configuration file of your Robot Controller. ``` private Gyroscope imu;