mirror of
https://github.com/trc492/FtcTemplate.git
synced 2025-07-01 13:01:24 -07:00
107 lines
4.4 KiB
Java
107 lines
4.4 KiB
Java
/*
|
|
* Copyright (c) 2023 Titan Robotics Club (http://www.titanrobotics.com)
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
package teamcode.subsystems;
|
|
|
|
import ftclib.driverio.FtcRevBlinkin;
|
|
import trclib.drivebase.TrcDriveBase;
|
|
import trclib.driverio.TrcRevBlinkin;
|
|
|
|
/**
|
|
* This class encapsulates the REV Blinkin LED controller to provide a priority indicator showing the status of the
|
|
* robot.
|
|
*/
|
|
public class BlinkinLEDs extends FtcRevBlinkin
|
|
{
|
|
// LED pattern names.
|
|
public static final String APRIL_TAG = "AprilTag";
|
|
public static final String RED_BLOB = "RedBlob";
|
|
public static final String BLUE_BLOB = "BlueBlob";
|
|
public static final String DRIVE_ORIENTATION_FIELD = "FieldMode";
|
|
public static final String DRIVE_ORIENTATION_ROBOT = "RobotMode";
|
|
public static final String DRIVE_ORIENTATION_INVERTED = "InvertedMode";
|
|
public static final String OFF_PATTERN = "Off";
|
|
|
|
/**
|
|
* Constructor: Create an instance of the object.
|
|
*
|
|
* @param instanceName specifies the instance name. This is also the REV Blinkin's hardware name.
|
|
*/
|
|
public BlinkinLEDs(String instanceName)
|
|
{
|
|
super(instanceName);
|
|
// LED Patterns are sorted in decreasing priority order.
|
|
final TrcRevBlinkin.Pattern[] ledPatternPriorities = {
|
|
// Highest priority.
|
|
new TrcRevBlinkin.Pattern(APRIL_TAG, RevLedPattern.SolidAqua),
|
|
new TrcRevBlinkin.Pattern(RED_BLOB, RevLedPattern.SolidRed),
|
|
new TrcRevBlinkin.Pattern(BLUE_BLOB, RevLedPattern.SolidBlue),
|
|
new TrcRevBlinkin.Pattern(DRIVE_ORIENTATION_FIELD, RevLedPattern.SolidViolet),
|
|
new TrcRevBlinkin.Pattern(DRIVE_ORIENTATION_ROBOT, RevLedPattern.SolidWhite),
|
|
new TrcRevBlinkin.Pattern(DRIVE_ORIENTATION_INVERTED, RevLedPattern.SolidGray),
|
|
new TrcRevBlinkin.Pattern(OFF_PATTERN, RevLedPattern.SolidBlack)
|
|
// Lowest priority.
|
|
};
|
|
setPatternPriorities(ledPatternPriorities);
|
|
} //BlinkinLEDs
|
|
|
|
/**
|
|
* This method sets the pattern ON for a period of time and turns off automatically afterwards.
|
|
*
|
|
* @param patternName specifies the name of the LED pattern to turn on.
|
|
*/
|
|
public void setDetectedPattern(String patternName)
|
|
{
|
|
setPatternState(patternName, true, 0.5);
|
|
} //setDetectedPattern
|
|
|
|
/**
|
|
* This method sets the LED to indicate the drive orientation mode of the robot.
|
|
*
|
|
* @param orientation specifies the drive orientation mode.
|
|
*/
|
|
public void setDriveOrientation(TrcDriveBase.DriveOrientation orientation)
|
|
{
|
|
switch (orientation)
|
|
{
|
|
case INVERTED:
|
|
setPatternState(DRIVE_ORIENTATION_INVERTED, true);
|
|
setPatternState(DRIVE_ORIENTATION_ROBOT, false);
|
|
setPatternState(DRIVE_ORIENTATION_FIELD, false);
|
|
break;
|
|
|
|
case ROBOT:
|
|
setPatternState(DRIVE_ORIENTATION_INVERTED, false);
|
|
setPatternState(DRIVE_ORIENTATION_ROBOT, true);
|
|
setPatternState(DRIVE_ORIENTATION_FIELD, false);
|
|
break;
|
|
|
|
case FIELD:
|
|
setPatternState(DRIVE_ORIENTATION_INVERTED, false);
|
|
setPatternState(DRIVE_ORIENTATION_ROBOT, false);
|
|
setPatternState(DRIVE_ORIENTATION_FIELD, true);
|
|
break;
|
|
}
|
|
} //setDriveOrientation
|
|
|
|
} //class BlinkinLEDs
|