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-10-23 20:18:49 -07:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <hal/SimDevice.h>
|
|
|
|
|
#include <units/angle.h>
|
|
|
|
|
|
|
|
|
|
namespace frc {
|
|
|
|
|
|
|
|
|
|
class DutyCycleEncoder;
|
|
|
|
|
|
|
|
|
|
namespace sim {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class to control a simulated duty cycle encoder.
|
|
|
|
|
*/
|
|
|
|
|
class DutyCycleEncoderSim {
|
|
|
|
|
public:
|
|
|
|
|
/**
|
|
|
|
|
* Constructs from a DutyCycleEncoder object.
|
|
|
|
|
*
|
2021-10-14 18:09:38 -07:00
|
|
|
* @param encoder DutyCycleEncoder to simulate
|
2020-10-23 20:18:49 -07:00
|
|
|
*/
|
|
|
|
|
explicit DutyCycleEncoderSim(const DutyCycleEncoder& encoder);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the position tin turns.
|
|
|
|
|
*
|
|
|
|
|
* @param turns The position.
|
|
|
|
|
*/
|
|
|
|
|
void Set(units::turn_t turns);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the position.
|
|
|
|
|
*/
|
|
|
|
|
void SetDistance(double distance);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
hal::SimDouble m_simPosition;
|
|
|
|
|
hal::SimDouble m_simDistancePerRotation;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace sim
|
|
|
|
|
} // namespace frc
|