mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-24 01:31:46 +00:00
54 lines
1.0 KiB
C++
54 lines
1.0 KiB
C++
// 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.
|
|
|
|
#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.
|
|
*
|
|
* @param encoder DutyCycleEncoder to simulate
|
|
*/
|
|
explicit DutyCycleEncoderSim(const DutyCycleEncoder& encoder);
|
|
|
|
/**
|
|
* Constructs from a digital input channel.
|
|
*
|
|
* @param channel digital input channel
|
|
*/
|
|
explicit DutyCycleEncoderSim(int channel);
|
|
|
|
/**
|
|
* Set the position in 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
|