WPILibC++  unspecified
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Pages
Threshold.h
1 /*----------------------------------------------------------------------------*/
2 /* Copyright (c) FIRST 2014-2016. All Rights Reserved. */
3 /* Open Source Software - may be modified and shared by FRC teams. The code */
4 /* must be accompanied by the FIRST BSD license file in the root directory of */
5 /* the project. */
6 /*----------------------------------------------------------------------------*/
7 
8 #pragma once
9 
16 class Threshold {
17  public:
18  int plane1Low;
19  int plane1High;
20  int plane2Low;
21  int plane2High;
22  int plane3Low;
23  int plane3High;
24  Threshold(int plane1Low, int plane1High, int plane2Low, int plane2High,
25  int plane3Low, int plane3High);
26 };
Color threshold values.
Definition: Threshold.h:16