コード例 #1
0
 /// <summary>
 /// Function to update containers with new labels
 /// </summary>
 /// <param name="oldContainerName"></param>
 /// <param name="newContainerName"></param>
 public void UpdateContainer(string oldContainerName, string newContainerName)
 {
     PerformClientFunctions.UpdateContainer(oldContainerName, newContainerName, this.robot1);
 }
コード例 #2
0
 /// <summary>
 /// function to execute recipe.
 /// </summary>
 /// <param name="recipeName"></param>
 public void ExecuteRecipe(string recipeName)
 {
     PerformClientFunctions.ExecuteRecipe(recipeName, this.robot1);
 }
コード例 #3
0
 /// <summary>
 /// function to add ingredient containers.
 /// </summary>
 /// <param name="ingredientName"></param>
 public void AddContainers(string ingredientName)
 {
     PerformClientFunctions.AddContainers(ingredientName, this.robot1);
 }
コード例 #4
0
 /// <summary>
 /// function to add new recipe to the robot.
 /// </summary>
 public void AddNewRecipe()
 {
     PerformClientFunctions.AddNewRecipe(this.robot1);
 }