001package com.ctre.phoenix.sensors; 002 003public enum CANCoderStatusFrame{ 004 SensorData (0x041400), 005 VbatAndFaults (0x041440); 006 007 public final int value; 008 009 /** 010 * Create CANCoderStatusFrame of initValue 011 * @param initValue Value of CANCoderStatusFrame 012 */ 013 CANCoderStatusFrame(int initValue) 014 { 015 this.value = initValue; 016 } 017}