mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-02 02:51:42 +00:00
Accelerometer is hyper-specific to ADXL accelerometers, and Gyro is less useful now that 3D IMUs are prevalent, and if those IMUs want to support the Gyro interface, they also need to provide a way to set the axis used for the Gyro interface, which is confusing. Higher-order functions (e.g., lambdas) are a more flexible interface boundary than interfaces, but they didn't exist when these interfaces were created.
59 lines
1.5 KiB
C++
59 lines
1.5 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 <wpi/sendable/Sendable.h>
|
|
#include <wpi/sendable/SendableHelper.h>
|
|
|
|
namespace frc {
|
|
|
|
/**
|
|
* Built-in accelerometer.
|
|
*
|
|
* This class allows access to the roboRIO's internal accelerometer.
|
|
*/
|
|
class BuiltInAccelerometer : public wpi::Sendable,
|
|
public wpi::SendableHelper<BuiltInAccelerometer> {
|
|
public:
|
|
enum Range { kRange_2G = 0, kRange_4G = 1, kRange_8G = 2 };
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param range The range the accelerometer will measure
|
|
*/
|
|
explicit BuiltInAccelerometer(Range range = kRange_8G);
|
|
|
|
BuiltInAccelerometer(BuiltInAccelerometer&&) = default;
|
|
BuiltInAccelerometer& operator=(BuiltInAccelerometer&&) = default;
|
|
|
|
/**
|
|
* Set the measuring range of the accelerometer.
|
|
*
|
|
* @param range The maximum acceleration, positive or negative, that the
|
|
* accelerometer will measure.
|
|
*/
|
|
void SetRange(Range range);
|
|
|
|
/**
|
|
* @return The acceleration of the roboRIO along the X axis in g-forces
|
|
*/
|
|
double GetX();
|
|
|
|
/**
|
|
* @return The acceleration of the roboRIO along the Y axis in g-forces
|
|
*/
|
|
double GetY();
|
|
|
|
/**
|
|
* @return The acceleration of the roboRIO along the Z axis in g-forces
|
|
*/
|
|
double GetZ();
|
|
|
|
void InitSendable(wpi::SendableBuilder& builder) override;
|
|
};
|
|
|
|
} // namespace frc
|