BowlerKernel
ResetPIDCommand.java
Go to the documentation of this file.
1 package com.neuronrobotics.sdk.commands.bcs.pid;
2 
3 import com.neuronrobotics.sdk.common.BowlerAbstractCommand;
4 import com.neuronrobotics.sdk.common.BowlerMethod;
5 
6 
7 // TODO: Auto-generated Javadoc
11 public class ResetPIDCommand extends BowlerAbstractCommand {
12 
18  public ResetPIDCommand(char group) {
19  setOpCode("rpid");
21  getCallingDataStorage().add(group);
22  }
23 
30  public ResetPIDCommand(char group,float valueToSetCurrentTo) {
31  setOpCode("rpid");
33  getCallingDataStorage().add(group);
34  getCallingDataStorage().addAs32((int)valueToSetCurrentTo);
35  }
36 }
ResetPIDCommand(char group, float valueToSetCurrentTo)
synchronized boolean add(byte data)
Definition: ByteList.java:149