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);
|
|
|
|
|
|
|
|
|
|
/**
|
2023-02-20 02:12:48 -05:00
|
|
|
* Constructs from a digital input channel.
|
|
|
|
|
*
|
|
|
|
|
* @param channel digital input channel
|
|
|
|
|
*/
|
|
|
|
|
explicit DutyCycleEncoderSim(int channel);
|
|
|
|
|
|
2023-07-19 20:24:09 -04:00
|
|
|
/**
|
|
|
|
|
* Get the position in turns.
|
|
|
|
|
*
|
|
|
|
|
* @return The position.
|
|
|
|
|
*/
|
|
|
|
|
double Get();
|
|
|
|
|
|
2023-02-20 02:12:48 -05:00
|
|
|
/**
|
|
|
|
|
* Set the position in turns.
|
2020-10-23 20:18:49 -07:00
|
|
|
*
|
|
|
|
|
* @param turns The position.
|
|
|
|
|
*/
|
|
|
|
|
void Set(units::turn_t turns);
|
|
|
|
|
|
|
|
|
|
/**
|
2023-07-19 20:24:09 -04:00
|
|
|
* Get the distance.
|
|
|
|
|
*
|
|
|
|
|
* @return The distance.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
double GetDistance();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the distance.
|
|
|
|
|
*
|
|
|
|
|
* @param distance The distance.
|
2020-10-23 20:18:49 -07:00
|
|
|
*/
|
|
|
|
|
void SetDistance(double distance);
|
|
|
|
|
|
2023-07-19 20:24:09 -04:00
|
|
|
/**
|
|
|
|
|
* Get the absolute position.
|
|
|
|
|
*
|
|
|
|
|
* @return The absolute position
|
|
|
|
|
*/
|
|
|
|
|
double GetAbsolutePosition();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the absolute position.
|
|
|
|
|
*
|
|
|
|
|
* @param position The absolute position
|
|
|
|
|
*/
|
|
|
|
|
void SetAbsolutePosition(double position);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the distance per rotation for this encoder.
|
|
|
|
|
*
|
|
|
|
|
* @return The scale factor that will be used to convert rotation to useful
|
|
|
|
|
* units.
|
|
|
|
|
*/
|
|
|
|
|
double GetDistancePerRotation();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get if the encoder is connected.
|
|
|
|
|
*
|
|
|
|
|
* @return true if the encoder is connected.
|
|
|
|
|
*/
|
|
|
|
|
bool IsConnected();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set if the encoder is connected.
|
|
|
|
|
*
|
|
|
|
|
* @param isConnected Whether or not the sensor is connected.
|
|
|
|
|
*/
|
|
|
|
|
void SetConnected(bool isConnected);
|
|
|
|
|
|
2020-10-23 20:18:49 -07:00
|
|
|
private:
|
|
|
|
|
hal::SimDouble m_simPosition;
|
|
|
|
|
hal::SimDouble m_simDistancePerRotation;
|
2023-07-19 20:24:09 -04:00
|
|
|
hal::SimDouble m_simAbsolutePosition;
|
|
|
|
|
hal::SimBoolean m_simIsConnected;
|
2020-10-23 20:18:49 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace sim
|
|
|
|
|
} // namespace frc
|