2020-08-19 22:59:52 -07:00
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
/* Copyright (c) 2018-2020 FIRST. 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. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
#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
|