//*!!Code automatically generated by 'ROBOTC' configuration wizard.              !!*//
//*!!Analog,     3,                     , ,                                      !!*//
//*!!Camera,     0,                     , ,                                      !!*//
//*!!PSCtrl,     0,                     , ,                                      !!*//
//*!!Sensor,   in2,               x_axis, sensorAccelerometer,      ,            !!*//
//*!!Sensor,   in3,               y_axis, sensorAccelerometer,      ,            !!*//
//*!!                                                                            !!*//
//*!!Start automatically generated configuration code.                           !!*//
const tSensors x_axis               = (tSensors) in2;  //sensorAccelerometer //*!!!!*//
const tSensors y_axis               = (tSensors) in3;  //sensorAccelerometer //*!!!!*//
//*!!CLICK to edit 'wizard' created sensor & motor configuration.                !!*//

task main()
{
	int xaxis;
	int yaxis;

	while(true)
	{
		xaxis = SensorValue[x_axis];
		yaxis = SensorValue[y_axis];
	}

}
