mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-26 01:51:41 +00:00
Replace with new exception-based error reporting, consistent with Java. This also builds stacktraces into the reporting/exceptions.
63 lines
1.7 KiB
C++
63 lines
1.7 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 "frc/interfaces/Accelerometer.h"
|
|
#include "frc/smartdashboard/Sendable.h"
|
|
#include "frc/smartdashboard/SendableHelper.h"
|
|
|
|
namespace frc {
|
|
|
|
class SendableBuilder;
|
|
|
|
/**
|
|
* Built-in accelerometer.
|
|
*
|
|
* This class allows access to the roboRIO's internal accelerometer.
|
|
*/
|
|
class BuiltInAccelerometer : public Accelerometer,
|
|
public Sendable,
|
|
public SendableHelper<BuiltInAccelerometer> {
|
|
public:
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param range The range the accelerometer will measure
|
|
*/
|
|
explicit BuiltInAccelerometer(Range range = kRange_8G);
|
|
|
|
BuiltInAccelerometer(BuiltInAccelerometer&&) = default;
|
|
BuiltInAccelerometer& operator=(BuiltInAccelerometer&&) = default;
|
|
|
|
// Accelerometer interface
|
|
/**
|
|
* Set the measuring range of the accelerometer.
|
|
*
|
|
* @param range The maximum acceleration, positive or negative, that the
|
|
* accelerometer will measure. Not all accelerometers support all
|
|
* ranges.
|
|
*/
|
|
void SetRange(Range range) final;
|
|
|
|
/**
|
|
* @return The acceleration of the roboRIO along the X axis in g-forces
|
|
*/
|
|
double GetX() override;
|
|
|
|
/**
|
|
* @return The acceleration of the roboRIO along the Y axis in g-forces
|
|
*/
|
|
double GetY() override;
|
|
|
|
/**
|
|
* @return The acceleration of the roboRIO along the Z axis in g-forces
|
|
*/
|
|
double GetZ() override;
|
|
|
|
void InitSendable(SendableBuilder& builder) override;
|
|
};
|
|
|
|
} // namespace frc
|