001/* Copyright (C) Cross The Road Electronics 2024 */
002package com.ctre.phoenix.led;
003
004/**
005 * CANdle control frame
006 */
007public enum CANdleControlFrame {
008    /**
009     * Controls what animation or block of LEDs to set
010     */
011    CANdle_Control_1_General(0x040000),
012    /**
013     * Controls the VBat Output Modulation
014     */
015    CANdle_Control_2_ModulatedVBatOut(0x040040);
016
017    
018    final public int value;
019
020    CANdleControlFrame(int value) {
021        this.value = value;
022    }
023}