public class TSConstants {
   
   /*  Constants of interest in distributor to bridge programming       */
   
   //  Distributor to Bridge
   
   public static final byte AMULET_QUERY = 1;
   public static final byte ROUTE_QUERY = 2;
   public static final byte CHIRP = 3;
   public static final byte PLAY_AUDIO = 4;
   public static final byte SET_LED_STATE = 5;
   public static final byte SET_AUDIO_STREAMING = 6;
   
   //  Bridge to Distributor
   
   public static final byte AMULET_STATE = 10;
   public static final byte ROUTE_STATE = 11;
   public static final byte RECV_AUDIO = 12;
   public static final byte NAK = 13;
   public static final byte ACK = 14;
   
   //  Reasons for sending an amuletState
   
   public static final byte QUERY_REPLY = 20;
   public static final byte BUTTON_CHANGED = 21;
   public static final byte IR_SEEN = 22;
   
   
   /*  Constants of interest in application to distributor programming   */
   
   public static final int MAX_DATA_SIZE = 64000;
   public static final byte REGISTER_APP = 40;
   
   /*  Port information about where Distributor is sendng and receiving  */
   
   public static final int AM_PORT = 3456;
   public static final int DIST_PORT = 6543;
   public static final int APP_PORT = 7890;
   
   
}
