multi layered recipes
Posted: Fri Mar 21, 2014 9:32 am
Hi
could you help with the following please?
I have an application were I need to create a multi layered recipe system.
I have one normal recipe that is storing positional data for 5 axis of servos.
when the operator has set the required positions he creates a recipe, that the PLC can load later based on a product ID from an RFID system.
I am putting the names of the recipes in ComboBox2 with the following script on a separate screen, works just fine.
foreach( string i in myRecipeNames)
ComboBox2.Items.Add(i);
ComboBox2 has a tag attached to it with data type string.
I am then trying to get another recipe to remember the selection of the first recipe name that has been selected by the operator in the ComboBox2.
I need the PLC to see the name of the recipe stored in the overall recipe so it can drill down and load the first basic recipe with the positional data in it.
Eventually the overall top recipe needs to look at the selection of three other recipes in total and load the data from each one.
the names that get stored in the ComboBox2 with above code do not seem to be going into the tag assigned to the box and therefore not remembered by the recipe and not loaded to the PLC data register.
I hope that all makes sense, thanks!
could you help with the following please?
I have an application were I need to create a multi layered recipe system.
I have one normal recipe that is storing positional data for 5 axis of servos.
when the operator has set the required positions he creates a recipe, that the PLC can load later based on a product ID from an RFID system.
I am putting the names of the recipes in ComboBox2 with the following script on a separate screen, works just fine.
foreach( string i in myRecipeNames)
ComboBox2.Items.Add(i);
ComboBox2 has a tag attached to it with data type string.
I am then trying to get another recipe to remember the selection of the first recipe name that has been selected by the operator in the ComboBox2.
I need the PLC to see the name of the recipe stored in the overall recipe so it can drill down and load the first basic recipe with the positional data in it.
Eventually the overall top recipe needs to look at the selection of three other recipes in total and load the data from each one.
the names that get stored in the ComboBox2 with above code do not seem to be going into the tag assigned to the box and therefore not remembered by the recipe and not loaded to the PLC data register.
I hope that all makes sense, thanks!