Add Digilent DMC 60 Speed Controller (#855)

This commit is contained in:
sciencewhiz
2017-12-28 19:42:19 -08:00
committed by Peter Johnson
parent 566e283694
commit 02131639bc
4 changed files with 110 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/*----------------------------------------------------------------------------*/
/* Copyright (c) 2008-2017 FIRST. 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
#include "PWMSpeedController.h"
namespace frc {
/**
* Digilent DMC 60 Speed Controller.
*/
class DMC60 : public PWMSpeedController {
public:
explicit DMC60(int channel);
};
} // namespace frc

View File

@@ -37,6 +37,7 @@
#include "Compressor.h"
#include "ControllerPower.h"
#include "Counter.h"
#include "DMC60.h"
#include "DigitalInput.h"
#include "DigitalOutput.h"
#include "DigitalSource.h"