Feature Description
Designer Functionalities
Recipe Editor
Add Recipe Database
Parameter Bindings
Runtime Functionalities
Recipe Recieve and Send
Recipes are able to receive and send data to tags with commands. Recipes have Action Commands that will allow the user to interact with the Recipe list during runtime. Sending a Recipe will set the tag values to whatever is saved within the Recipe itself. Receiving a Recipe will save the current tag values within the Recipe, which can be called upon later within the runtime.
Recipe CSV Exportation and Importation
The user can export and import recipe data to and from a CSV for record keeping. The user can transfer data to a separate device via USB, SD card, or File Transfer Protocol (FTP), or to local memory* on Linux Xpanel.
A CSV file can be created in two ways: creating a command set to Export Recipe CSV or creating a script that calls the following function: exportCsv(string recipe, Storage type, string path).
The user can specify the storage location recipe and path to the CSV.
A CSV file can be imported in two ways: creating a command set to Import Recipe CSV or creating a script that calls the following function: importCsv(string recipe, Storage type, string path)
. The user can specify the storage location, a recipe, and a path to the CSV.
An example of what the CSV file would look like after generation is shown on the far right:
*Disclaimer: CIMON recommends exclusively using a USB or SD card for storage types. Saved CSV files to local memory are only accessible through an SSH connection.
Add Comment