Valkyrie 2026
Loading...
Searching...
No Matches
SendableChooser.h
1#pragma once
2#include <frc/smartdashboard/SendableChooser.h>
3
4namespace valor {
5
6template <typename T>
7class SendableChooser : public frc::SendableChooser<T> {
8 public:
9 using frc::SendableChooser<T>::SetDefaultOption;
10
11 constexpr void SetDefaultOption(std::string_view name) { this->m_defaultChoice = name; }
12};
13
14} // namespace valor
Definition SendableChooser.h:7