WPILibC++ 2024.1.1-beta-4
DifferentialDriveWheelVoltages.h
Go to the documentation of this file.
1// Copyright (c) FIRST and other WPILib contributors.
2// Open Source Software; you can modify and/or share it under the terms of
3// the WPILib BSD license file in the root directory of this project.
4
5#pragma once
6
7#include "units/voltage.h"
8
9namespace frc {
10
11/**
12 * Motor voltages for a differential drive.
13 */
15 units::volt_t left = 0_V;
16 units::volt_t right = 0_V;
17};
18
19} // namespace frc
20
Definition: AprilTagPoseEstimator.h:15
Motor voltages for a differential drive.
Definition: DifferentialDriveWheelVoltages.h:14
units::volt_t right
Definition: DifferentialDriveWheelVoltages.h:16
units::volt_t left
Definition: DifferentialDriveWheelVoltages.h:15