View Single Post
  #4   Spotlight this post!  
Unread 04-02-2014, 13:21
muaddib42 muaddib42 is offline
Registered User
FRC #3128
 
Join Date: Jan 2013
Location: United States
Posts: 9
muaddib42 is an unknown quantity at this point
Re: Motor controlled by Talon won't turn off

The relevant block of code is here:

public void stopSpeedControl() {
DebugLog.log(DebugLog.LVL_DEBUG, this, "Talon GET: "+this.talon.get());
this.talon.set(0);
this.spdControl.cancelEvent();
this.spdControlEnabled = false;
}

I have confirmed that it has entered this block of code.

Last edited by muaddib42 : 04-02-2014 at 13:23. Reason: Adding more information.