2014-06-02 10:12:08 -04:00
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
/* Copyright (c) FIRST 2014. All Rights Reserved. */
|
|
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
|
|
|
/* the project. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
#include "WPILib.h"
|
|
|
|
|
#include "gtest/gtest.h"
|
2014-06-02 17:34:10 -04:00
|
|
|
#include "TestBench.h"
|
2014-06-02 10:12:08 -04:00
|
|
|
|
2014-07-31 15:46:14 -04:00
|
|
|
static constexpr double kServoResetTime = 2.0;
|
2014-07-17 15:43:25 -04:00
|
|
|
|
2014-06-07 17:37:51 -04:00
|
|
|
static constexpr double kTestAngle = 180.0;
|
2014-07-17 15:43:25 -04:00
|
|
|
|
2014-11-20 16:39:00 -05:00
|
|
|
static constexpr double kTiltSetpoint0 = 0.22;
|
|
|
|
|
static constexpr double kTiltSetpoint45 = 0.45;
|
|
|
|
|
static constexpr double kTiltSetpoint90 = 0.68;
|
2014-07-23 09:36:27 -04:00
|
|
|
static constexpr double kTiltTime = 1.0;
|
|
|
|
|
static constexpr double kAccelerometerTolerance = 0.2;
|
2014-07-17 15:43:25 -04:00
|
|
|
|
2014-06-07 17:37:51 -04:00
|
|
|
/**
|
|
|
|
|
* A fixture for the camera with two servos and a gyro
|
|
|
|
|
* @author Thomas Clark
|
|
|
|
|
*/
|
2014-06-02 10:12:08 -04:00
|
|
|
class TiltPanCameraTest : public testing::Test {
|
2014-06-07 17:37:51 -04:00
|
|
|
protected:
|
2014-07-17 15:43:25 -04:00
|
|
|
static Gyro *m_gyro;
|
2014-06-07 17:37:51 -04:00
|
|
|
Servo *m_tilt, *m_pan;
|
2014-07-23 09:36:27 -04:00
|
|
|
Accelerometer *m_spiAccel;
|
|
|
|
|
|
2014-07-17 15:43:25 -04:00
|
|
|
static void SetUpTestCase() {
|
|
|
|
|
// The gyro object blocks for 5 seconds in the constructor, so only
|
|
|
|
|
// construct it once for the whole test case
|
|
|
|
|
m_gyro = new Gyro(TestBench::kCameraGyroChannel);
|
2014-08-05 09:46:02 -04:00
|
|
|
m_gyro->SetSensitivity(0.013);
|
2014-07-17 15:43:25 -04:00
|
|
|
}
|
2014-07-23 09:36:27 -04:00
|
|
|
|
2014-07-17 15:43:25 -04:00
|
|
|
static void TearDownTestCase() {
|
|
|
|
|
delete m_gyro;
|
|
|
|
|
}
|
2014-07-23 09:36:27 -04:00
|
|
|
|
2014-06-02 10:12:08 -04:00
|
|
|
virtual void SetUp() {
|
2014-06-07 17:37:51 -04:00
|
|
|
m_tilt = new Servo(TestBench::kCameraTiltChannel);
|
|
|
|
|
m_pan = new Servo(TestBench::kCameraPanChannel);
|
2014-07-17 15:43:25 -04:00
|
|
|
m_spiAccel = new ADXL345_SPI(SPI::kOnboardCS0);
|
2014-07-31 15:46:14 -04:00
|
|
|
|
|
|
|
|
m_tilt->SetAngle(90.0f);
|
|
|
|
|
m_pan->SetAngle(0.0f);
|
|
|
|
|
|
|
|
|
|
Wait(kServoResetTime);
|
|
|
|
|
|
|
|
|
|
m_gyro->Reset();
|
2014-06-02 10:12:08 -04:00
|
|
|
}
|
2014-07-23 09:36:27 -04:00
|
|
|
|
2014-06-02 10:12:08 -04:00
|
|
|
virtual void TearDown() {
|
2014-06-07 17:37:51 -04:00
|
|
|
delete m_tilt;
|
|
|
|
|
delete m_pan;
|
2014-07-17 15:43:25 -04:00
|
|
|
delete m_spiAccel;
|
2014-06-02 10:12:08 -04:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2014-07-17 15:43:25 -04:00
|
|
|
Gyro *TiltPanCameraTest::m_gyro = 0;
|
2014-06-02 10:12:08 -04:00
|
|
|
|
2014-07-31 15:46:14 -04:00
|
|
|
/**
|
|
|
|
|
* Test if the gyro angle defaults to 0 immediately after being reset.
|
|
|
|
|
*/
|
|
|
|
|
TEST_F(TiltPanCameraTest, DefaultGyroAngle) {
|
2014-08-05 09:46:02 -04:00
|
|
|
EXPECT_NEAR(0.0f, m_gyro->GetAngle(), 1.0f);
|
2014-07-31 15:46:14 -04:00
|
|
|
}
|
|
|
|
|
|
2014-06-02 10:12:08 -04:00
|
|
|
/**
|
|
|
|
|
* Test if the servo turns 180 degrees and the gyroscope measures this angle
|
|
|
|
|
*/
|
|
|
|
|
TEST_F(TiltPanCameraTest, GyroAngle) {
|
2014-11-20 16:39:00 -05:00
|
|
|
// Make sure that the gyro doesn't get jerked when the servo goes to zero.
|
|
|
|
|
m_pan->SetAngle(0.0);
|
|
|
|
|
Wait(0.25);
|
|
|
|
|
m_gyro->Reset();
|
|
|
|
|
|
2014-08-05 09:46:02 -04:00
|
|
|
for(int i = 0; i < 1800; i++) {
|
|
|
|
|
m_pan->SetAngle(i / 10.0);
|
|
|
|
|
Wait(0.001);
|
2014-06-02 10:12:08 -04:00
|
|
|
}
|
2014-07-23 09:36:27 -04:00
|
|
|
|
2014-06-07 17:37:51 -04:00
|
|
|
double gyroAngle = m_gyro->GetAngle();
|
2014-07-23 09:36:27 -04:00
|
|
|
|
2014-08-05 09:46:02 -04:00
|
|
|
EXPECT_NEAR(gyroAngle, kTestAngle, 10.0) << "Gyro measured " << gyroAngle
|
2014-07-23 09:36:27 -04:00
|
|
|
<< " degrees, servo should have turned " << kTestAngle << " degrees";
|
2014-06-02 10:12:08 -04:00
|
|
|
}
|
|
|
|
|
|
2014-07-17 15:43:25 -04:00
|
|
|
/**
|
|
|
|
|
* Test if the accelerometer measures gravity along the correct axes when the
|
|
|
|
|
* camera rotates
|
|
|
|
|
*/
|
|
|
|
|
TEST_F(TiltPanCameraTest, SPIAccelerometer) {
|
|
|
|
|
m_tilt->Set(kTiltSetpoint0);
|
|
|
|
|
Wait(kTiltTime);
|
2014-07-23 09:36:27 -04:00
|
|
|
EXPECT_NEAR(-1.0, m_spiAccel->GetX(), kAccelerometerTolerance);
|
|
|
|
|
EXPECT_NEAR(0.0, m_spiAccel->GetY(), kAccelerometerTolerance);
|
|
|
|
|
EXPECT_NEAR(0.0, m_spiAccel->GetZ(), kAccelerometerTolerance);
|
|
|
|
|
|
2014-07-17 15:43:25 -04:00
|
|
|
m_tilt->Set(kTiltSetpoint45);
|
|
|
|
|
Wait(kTiltTime);
|
2014-07-23 09:36:27 -04:00
|
|
|
EXPECT_NEAR(-std::sqrt(0.5), m_spiAccel->GetX(), kAccelerometerTolerance);
|
|
|
|
|
EXPECT_NEAR(0.0, m_spiAccel->GetY(), kAccelerometerTolerance);
|
|
|
|
|
EXPECT_NEAR(std::sqrt(0.5), m_spiAccel->GetZ(), kAccelerometerTolerance);
|
|
|
|
|
|
2014-07-17 15:43:25 -04:00
|
|
|
m_tilt->Set(kTiltSetpoint90);
|
|
|
|
|
Wait(kTiltTime);
|
2014-07-23 09:36:27 -04:00
|
|
|
EXPECT_NEAR(0.0, m_spiAccel->GetX(), kAccelerometerTolerance);
|
|
|
|
|
EXPECT_NEAR(0.0, m_spiAccel->GetY(), kAccelerometerTolerance);
|
|
|
|
|
EXPECT_NEAR(1.0, m_spiAccel->GetZ(), kAccelerometerTolerance);
|
2014-07-17 15:43:25 -04:00
|
|
|
}
|