mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-19 00:41:41 +00:00
Merges Photonlib into Photonvision, along with the Photonlib code examples. Also creates a new PhotonTargeting library teams can depend on.
52 lines
1.6 KiB
C++
52 lines
1.6 KiB
C++
/**
|
|
* Copyright (C) 2018-2020 Photon Vision.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "Robot.h"
|
|
|
|
#include <photonlib/PhotonUtils.h>
|
|
|
|
void Robot::TeleopPeriodic() {
|
|
double forwardSpeed =
|
|
xboxController.GetY(frc::GenericHID::JoystickHand::kRightHand);
|
|
double rotationSpeed;
|
|
|
|
if (xboxController.GetAButton()) {
|
|
// Vision-alignment mode
|
|
// Query the latest result from PhotonVision
|
|
photonlib::PhotonPipelineResult result = camera.GetLatestResult();
|
|
|
|
if (result.HasTargets()) {
|
|
// Rotation speed is the output of the PID controller
|
|
rotationSpeed = controller.Calculate(result.GetBestTarget().GetYaw(), 0);
|
|
} else {
|
|
// If we have no targets, stay still.
|
|
rotationSpeed = 0;
|
|
}
|
|
} else {
|
|
// Manual Driver Mode
|
|
rotationSpeed =
|
|
xboxController.GetX(frc::GenericHID::JoystickHand::kLeftHand);
|
|
}
|
|
|
|
// Use our forward/turn speeds to control the drivetrain
|
|
drive.ArcadeDrive(forwardSpeed, rotationSpeed);
|
|
}
|
|
|
|
#ifndef RUNNING_FRC_TESTS
|
|
int main() { return frc::StartRobot<Robot>(); }
|
|
#endif
|