2022-06-14 08:48:16 +03: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.
|
|
|
|
|
|
|
|
|
|
#include "frc2/command/button/CommandJoystick.h"
|
|
|
|
|
|
|
|
|
|
using namespace frc2;
|
|
|
|
|
|
2024-05-25 07:36:05 +08:00
|
|
|
CommandJoystick::CommandJoystick(int port)
|
|
|
|
|
: CommandGenericHID(port), m_hid{frc::Joystick(port)} {}
|
|
|
|
|
|
|
|
|
|
frc::Joystick& CommandJoystick::GetHID() {
|
|
|
|
|
return m_hid;
|
2022-06-14 08:48:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Trigger CommandJoystick::Trigger(frc::EventLoop* loop) const {
|
2024-05-25 07:36:05 +08:00
|
|
|
return m_hid.Trigger(loop).CastTo<class Trigger>();
|
2022-06-14 08:48:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Trigger CommandJoystick::Top(frc::EventLoop* loop) const {
|
2024-05-25 07:36:05 +08:00
|
|
|
return m_hid.Top(loop).CastTo<class Trigger>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
double CommandJoystick::GetMagnitude() const {
|
|
|
|
|
return m_hid.GetMagnitude();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
units::radian_t CommandJoystick::GetDirection() const {
|
|
|
|
|
return m_hid.GetDirection();
|
2022-06-14 08:48:16 +03:00
|
|
|
}
|