mirror of
https://github.com/brendanhaines/mecanum.git
synced 2024-12-25 18:38:12 -07:00
makes 'RESET' button test work
This commit is contained in:
parent
c09786801e
commit
074ebefed7
|
@ -15,6 +15,13 @@
|
|||
|
||||
///// END USER PARAMETERS /////
|
||||
|
||||
// InterLink Elite Channel Mapping
|
||||
#define InterLink_Elite_CH5 1
|
||||
#define InterLink_Elite_CH7 2
|
||||
#define InterLink_Elite_RESET 3
|
||||
#define InterLink_Elite_CH8_BACK 4
|
||||
#define InterLink_Elite_CH8_FRONT 5
|
||||
|
||||
class Robot: public IterativeRobot
|
||||
{
|
||||
LiveWindow *lw;
|
||||
|
@ -63,7 +70,9 @@ public:
|
|||
{}
|
||||
|
||||
void TeleopPeriodic()
|
||||
{}
|
||||
{
|
||||
SmartDashboard::PutBoolean( "resetButton", InterLink->GetRawButton( InterLink_Elite_RESET ) );
|
||||
}
|
||||
|
||||
////////////////
|
||||
///// TEST /////
|
||||
|
@ -72,7 +81,6 @@ public:
|
|||
void TestPeriodic()
|
||||
{
|
||||
lw->Run();
|
||||
SmartDashboard::PutBoolean( "resetButton", InterLink->GetRawButton(2) );
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user