Ejemplo n.º 1
0
 public ActionTemperature(double temperature, RobotPartType robotPart, bool wait, bool relative) : base()
 {
     this.temperature = temperature;
     this.robotPart   = robotPart;
     this.wait        = wait;
     this.relative    = relative;
 }
Ejemplo n.º 2
0
 public bool IssueTemperatureRequest(double temp, RobotPartType robotPart, bool waitToReachTemp, bool relative) =>
 IssueApplyActionRequest(new ActionTemperature(temp, robotPart, waitToReachTemp, relative));
Ejemplo n.º 3
0
 public static ActionTemperature Temperature(double temp, RobotPartType devicePart, bool wait, bool relative)
 {
     return(new ActionTemperature(temp, devicePart, wait, relative));
 }
Ejemplo n.º 4
0
 public RobotItemData(RobotPartType robotTypePart)
 {
     this.robotTypePart = robotTypePart;
 }