mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
57 lines
1.3 KiB
C++
57 lines
1.3 KiB
C++
/*
|
|
* WPILIb.h
|
|
*
|
|
* Created on: May 29, 2014
|
|
* Author: alex
|
|
*/
|
|
#pragma once
|
|
|
|
#define SIMULATION "gazebo"
|
|
|
|
#include "string.h"
|
|
#include <iostream>
|
|
|
|
#include "Buttons/Trigger.h"
|
|
#include "Buttons/Button.h"
|
|
#include "Buttons/InternalButton.h"
|
|
#include "Buttons/JoystickButton.h"
|
|
#include "Buttons/NetworkButton.h"
|
|
|
|
#include "Commands/Command.h"
|
|
#include "Commands/CommandGroup.h"
|
|
#include "Commands/PIDCommand.h"
|
|
#include "Commands/PIDSubsystem.h"
|
|
#include "Commands/PrintCommand.h"
|
|
#include "Commands/Scheduler.h"
|
|
#include "Commands/StartCommand.h"
|
|
#include "Commands/Subsystem.h"
|
|
#include "Commands/WaitCommand.h"
|
|
#include "Commands/WaitForChildren.h"
|
|
#include "Commands/WaitUntilCommand.h"
|
|
|
|
#include "SmartDashboard/SendableChooser.h"
|
|
#include "SmartDashboard/SmartDashboard.h"
|
|
|
|
#include "RobotBase.h"
|
|
#include "SimpleRobot.h"
|
|
#include "IterativeRobot.h"
|
|
#include "SpeedController.h"
|
|
#include "Talon.h"
|
|
#include "Victor.h"
|
|
#include "Jaguar.h"
|
|
#include "Solenoid.h"
|
|
#include "DoubleSolenoid.h"
|
|
#include "interfaces/Potentiometer.h"
|
|
#include "AnalogInput.h"
|
|
#include "AnalogPotentiometer.h"
|
|
#include "Counter.h"
|
|
#include "DigitalInput.h"
|
|
#include "Encoder.h"
|
|
#include "Gyro.h"
|
|
#include "GenericHID.h"
|
|
#include "Joystick.h"
|
|
#include "PIDController.h"
|
|
#include "RobotDrive.h"
|
|
#include "LiveWindow/LiveWindow.h"
|
|
|