[examples] Fix up merge from main (#7994)

This commit is contained in:
Peter Johnson
2025-05-30 17:36:53 -07:00
committed by GitHub
parent 6c16e846fa
commit a6f601453a
3 changed files with 17 additions and 6 deletions

View File

@@ -40,16 +40,11 @@ class Robot : public frc::TimedRobot {
m_analog.GetAverageVoltage();
}
void TeleopPeriodic() override {
}
void TeleopPeriodic() override {}
private:
// Initializes an AnalogInput on port 0
frc::AnalogInput m_analog{0};
// The count and value variables to fill
int64_t count;
int64_t value;
};
#ifndef RUNNING_FRC_TESTS