mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
Also added scripts for EOF newline management and for removing trailing whitespace. configure.bat was rewritten to use CRLF line endings. Documentation for the existing scripts was also improved.
57 lines
1.7 KiB
C++
57 lines
1.7 KiB
C++
/*----------------------------------------------------------------------------*/
|
|
/* Copyright (c) FIRST 2014-2016. All Rights Reserved. */
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
/* the project. */
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#define SIMULATION "gazebo"
|
|
|
|
#include <iostream>
|
|
#include "string.h"
|
|
|
|
#include "Buttons/Button.h"
|
|
#include "Buttons/InternalButton.h"
|
|
#include "Buttons/JoystickButton.h"
|
|
#include "Buttons/NetworkButton.h"
|
|
#include "Buttons/Trigger.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 "AnalogGyro.h"
|
|
#include "AnalogInput.h"
|
|
#include "AnalogPotentiometer.h"
|
|
#include "Counter.h"
|
|
#include "DigitalInput.h"
|
|
#include "DoubleSolenoid.h"
|
|
#include "Encoder.h"
|
|
#include "GenericHID.h"
|
|
#include "IterativeRobot.h"
|
|
#include "Jaguar.h"
|
|
#include "Joystick.h"
|
|
#include "LiveWindow/LiveWindow.h"
|
|
#include "PIDController.h"
|
|
#include "RobotBase.h"
|
|
#include "RobotDrive.h"
|
|
#include "SampleRobot.h"
|
|
#include "Solenoid.h"
|
|
#include "SpeedController.h"
|
|
#include "Talon.h"
|
|
#include "Victor.h"
|
|
#include "interfaces/Potentiometer.h"
|