|
Re: How to create an On/Off button?
Use the Timer to limit how quickly you can toggle.
Code:
double interim = 2; //can only toggle every 2 seconds
double previous = 0;
boolean isOn = false; //state of motors
if(JoystickButton.get()) {
/*check if interim time has passed since previous check*/
if(Timer.getFPGATimestamp() - previous >= interim) {
previous == Timer.getFPGATimestamp();
if(isOn == true) {
//change state of motors
isOn = false;
} else {
//change state of motors
isOn = true;
}
}
}
__________________
 Programmer - A creature known for converting Caffeine into Code.
Studying Computer Science @ Louisiana Tech University
Associate Consultant @ Fenway Group
2012-13: 3946 - Head of Programming, Electrical and Web
2014 - 3468 - Programming Mentor
2015 - Present - Lurker
|