Thread: Java Autonomous
View Single Post
  #1   Spotlight this post!  
Unread 11-02-2012, 12:45
goonsquad3604 goonsquad3604 is offline
Registered User
FRC #3604
 
Join Date: Feb 2012
Location: Woodhaven
Posts: 1
goonsquad3604 is on a distinguished road
Java Autonomous

We are team 3604 and we program in java. Are autonomous method for interativeRobot is having issues. Any ideas?

public void autonomousContinuous()
{
getWatchdog().setEnabled(true);
getWatchdog().feed();


compressor.start();
in.set(true);
out.set(false);
in.set(false);

getWatchdog().feed();
Timer.delay(4);

getWatchdog().feed();
out.set(true);
out.set(false);

getWatchdog().feed();
Timer.delay(2);

getWatchdog().feed();
in.set(true);
in.set(false);

getWatchdog().feed();
Timer.delay(4);

getWatchdog().feed();
out.set(true);
out.set(false);

getWatchdog().feed();
Timer.delay(2);

getWatchdog().feed();
in.set(true);
in.set(false);
getWatchdog().feed();
}
Reply With Quote