/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package tgfx.tinyg; /** * * @author ril3y */ public class ResponseManager { public static final String RESPONSE_FOOTER = "\"f\":["; public static final String RESPONSE_HEADER = "{\"r\":{\"gc\":"; public static final String RESPONSE_STATUS_REPORT = "{\"r\":{\"sr\":{\""; public static final String RESPONSE_QUEUE_REPORT = "{\"r\":{\"qr\":{"; //public static final String RESPONSE_STATUS_REPORT = "{\"sr\":{"; public static final String RESPONSE_BUFFER_STATUS = "{\"r\":{\"k\":{"; public static final String RESPONSE_MACHINE_FIRMWARE_BUILD = "{\"r\":{\"sys\":{\"fb\":"; public static final String RESPONSE_MACHINE_FIRMWARE_VERSION = "{\"r\":{\"sys\":{\"fv\""; public static final String RESPONSE_MACHINE_COORDINATE_SYSTEM = "{\"r\":{\"sys\":{\"gco\""; public static final String RESPONSE_MACHINE_SETTINGS = "{\"r\":{\"sys"; public static final String RESPONSE_ACK = "{\"k\":"; public static final String RESPONSE_MOTOR_1 = "{\"r\":{\"1"; public static final String RESPONSE_MOTOR_2 = "{\"r\":{\"2"; public static final String RESPONSE_MOTOR_3 = "{\"r\":{\"3"; public static final String RESPONSE_MOTOR_4 = "{\"r\":{\"4"; public static final String RESPONSE_MOTOR_5 = "{\"r\":{\"5"; public static final String RESPONSE_MOTOR_6 = "{\"r\":{\"6"; public static final String RESPONSE_AXIS_X = "{\"r\":{\"x"; public static final String RESPONSE_AXIS_Y = "{\"r\":{\"y"; public static final String RESPONSE_AXIS_Z = "{\"r\":{\"z"; public static final String RESPONSE_AXIS_A = "{\"r\":{\"a"; public static final String RESPONSE_AXIS_B = "{\"r\":{\"b"; public static final String RESPONSE_AXIS_C = "{\"r\":{\"c"; }