View Single Post
  #1   Spotlight this post!  
Unread 02-02-2014, 18:15
JavaNoNothing14 JavaNoNothing14 is offline
Registered User
FRC #2681
Team Role: Programmer
 
Join Date: Feb 2014
Rookie Year: 2012
Location: Brooklyn, NY
Posts: 12
JavaNoNothing14 is an unknown quantity at this point
Calling on Functions

My program is set so that i have my shoot, grab, compressor all as different global signatures and calling it from within the teleop. Each function seems to be working fine individually. However when I put them all together No part of my program wants to work

Code:
public void teleopPeriodic(){
     Shoot();
     Timer.delay(0.1)
}
// the shooter would work fine
Code:
public void teleopPeriodic(){
     Shoot();
     Grab();
     Cyl();
     Timer.delay(0.1)
}
//no part of each function has the same properties as the other function. Program won't do anything. Seems like the functions don't want to work.