View Single Post
  #16   Spotlight this post!  
Unread 05-02-2015, 12:03
cstelter cstelter is offline
Programming Mentor
AKA: Craig Stelter
FRC #3018 (Nordic Storm)
Team Role: Mentor
 
Join Date: Apr 2012
Rookie Year: 2012
Location: Mankato, MN
Posts: 77
cstelter will become famous soon enough
Re: How to Program Mecanum

I think you need to add Scheduler.run() in TeleopPerodic()

Edit: Never go off memory-- it should be

Code:
    public void teleopPeriodic() {
        Scheduler.getInstance().run();
    }

Last edited by cstelter : 05-02-2015 at 12:07.
Reply With Quote