001// Copyright (c) FIRST and other WPILib contributors.
002// Open Source Software; you can modify and/or share it under the terms of
003// the WPILib BSD license file in the root directory of this project.
004
005package edu.wpi.first.wpilibj;
006
007/** Pneumatics module type. */
008public enum PneumaticsModuleType {
009  /** CTRE PCM. */
010  CTREPCM,
011  /** REV PH. */
012  REVPH
013}