2020-12-26 14:12:05 -08:00
|
|
|
// Copyright (c) FIRST and other WPILib contributors.
|
|
|
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
|
|
|
// the WPILib BSD license file in the root directory of this project.
|
2020-08-19 22:59:52 -07:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <hal/SimDevice.h>
|
|
|
|
|
#include <units/angle.h>
|
|
|
|
|
|
|
|
|
|
#include "frc/geometry/Rotation2d.h"
|
|
|
|
|
|
|
|
|
|
namespace frc {
|
|
|
|
|
|
|
|
|
|
class AnalogEncoder;
|
|
|
|
|
|
|
|
|
|
namespace sim {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class to control a simulated analog encoder.
|
|
|
|
|
*/
|
|
|
|
|
class AnalogEncoderSim {
|
|
|
|
|
public:
|
|
|
|
|
/**
|
|
|
|
|
* Constructs from an AnalogEncoder object.
|
|
|
|
|
*
|
2020-10-22 20:38:12 -07:00
|
|
|
* @param encoder AnalogEncoder to simulate
|
2020-08-19 22:59:52 -07:00
|
|
|
*/
|
2020-10-22 20:38:12 -07:00
|
|
|
explicit AnalogEncoderSim(const AnalogEncoder& encoder);
|
2020-08-19 22:59:52 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the position using an {@link Rotation2d}.
|
2020-10-22 20:38:12 -07:00
|
|
|
*
|
|
|
|
|
* @param angle The angle.
|
2020-08-19 22:59:52 -07:00
|
|
|
*/
|
|
|
|
|
void SetPosition(Rotation2d angle);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the position of the encoder.
|
|
|
|
|
*
|
|
|
|
|
* @param turns The position.
|
|
|
|
|
*/
|
|
|
|
|
void SetTurns(units::turn_t turns);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the simulated position.
|
|
|
|
|
*/
|
|
|
|
|
units::turn_t GetTurns();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the position as a {@link Rotation2d}.
|
|
|
|
|
*/
|
|
|
|
|
Rotation2d GetPosition();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
hal::SimDouble m_positionSim;
|
|
|
|
|
};
|
|
|
|
|
} // namespace sim
|
|
|
|
|
} // namespace frc
|