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