Apologies! We just edited our code to try and find values:
Code:
dsLCD->PrintfLine(DriverStationLCD::kUser_Line4, "X: %d", adxl.GetAcceleration(adxl.kAxis_X));
dsLCD->PrintfLine(DriverStationLCD::kUser_Line5, "Y: %d", adxl.GetAcceleration(adxl.kAxis_Y));
dsLCD->PrintfLine(DriverStationLCD::kUser_Line6, "Z: %d", adxl.GetAcceleration(adxl.kAxis_Z));
This gave us these values:
X: 21360244
Y: 21360244
Z: 21360244
And the values never changed. Is there a "reset" for the accelerometer? Any ideas?