List of Contributions

AutomateSHANE

Contact Details

AutomateSHANE


My Content

1 to 20 of 50+ total
Posted By AutomateSHANE May 02, 2024 07:53:00 AM
Found In Egroup: Advanced Software
\ view thread
Makes sense then. Glad it works for you!
Posted By AutomateSHANE May 02, 2024 06:42:00 AM
Found In Egroup: Advanced Software
\ view thread
Yes, if you can attach the NetLogic directly to the trend and use Owner, that is better.
Posted By AutomateSHANE May 02, 2024 05:51:01 AM
Found In Egroup: Advanced Software
\ view thread
Hi Krecek, My guess is that this is caused by some bad code in a script that someone added to the project. Is there a NetLogic somewhere in the project related to this? I don't know what SuspendDispatch is and you haven't given many details. Maybe take a closer look at the logs in the output window ...
Posted By AutomateSHANE May 02, 2024 05:41:42 AM
Found In Egroup: Advanced Software
\ view thread
When getting the path to a node, you might be better off copying the path in Optix Studio. If you have Advanced mode turned on in Optix Studio Settings, this will be available with a right-click. In this example, the resulting copied path is In the NetLogic, you must delete the project name ...
Posted By AutomateSHANE May 02, 2024 05:33:54 AM
Found In Egroup: Advanced Software
\ view thread
The one thing that stands out to me is the difference of where your objects are located compared to the example project. You see in the example project that the Trend panel is under MainWindow. The navigation panel which calls it is also in the MainWindow. Those will immediately be instantiated at runtime ...
Posted By AutomateSHANE May 01, 2024 04:48:57 PM
Found In Egroup: Advanced Software
\ view thread
A warning should not cause the runtime to stop. Make sure you have the filter for Error selecting and look at the output window for the OptixPanel after deploying the runtime. It may give some additional insights. Post which version of Optix you are using, so that we know.
Posted By AutomateSHANE May 01, 2024 04:41:00 PM
Found In Egroup: Advanced Software
\ view thread
I see. I neglected to notice that there are different pen types. In the case of the features demo project, those sliders are only linked to index 0 of the array which is only one (the last) point. The other points values are pulled from the initialization values of the array variable the pen is linked ...
Posted By AutomateSHANE Apr 30, 2024 12:12:04 PM
Found In Egroup: Advanced Software
\ view thread
Ok, so you are talking about the recipe schema. Are you using the Recipes Editor widget from the libraries? You can toggle ImportTrigger to true to perform an input from the CSV file. If you are just using the Recipe Controller script from the libraries, it is more or less the same, you just have to ...
Posted By AutomateSHANE Apr 30, 2024 06:25:00 AM
Found In Egroup: Advanced Software
\ view thread
It seems this has more to do with the fact that you are turning the node pointer into an array. I would first start by questioning why you are doing that in the first place. It seems you are trying to create your own navigation menu. Have you already looked at the 'Navigation panel' object? If that doesn't ...
Posted By AutomateSHANE Apr 30, 2024 05:57:00 AM
Found In Egroup: Advanced Software
\ view thread
I don't believe the XY chart is storing any data. It is simply displaying the data from the point array of each pen. If you have those linked to PLC tags, the tags are probably not being actively read when you switch screens. The arrays are reinitialized each time you come back to the screen. It starts ...
Posted By AutomateSHANE Apr 30, 2024 05:27:13 AM
Found In Egroup: Advanced Software
\ view thread
Important to check the log in Studio Output window when deploying the application. It will show you whether or not you have tokens and also how many the runtime application is using. Example:
Posted By AutomateSHANE Apr 30, 2024 05:22:44 AM
Found In Egroup: Advanced Software
\ view thread
KAJ, just to be clear...you are saying that you have an application running on (OptixPanel?) and you make some changes in Optix Studio, deploy a new runtime to the device, and then all of your recipe data is gone? Or is it a different problem? Are you still using v1.3.1.39? Is the 'In memory' property ...
Posted By AutomateSHANE Apr 29, 2024 06:56:28 AM
Found In Egroup: Advanced Software
\ view thread
The recipe data resides in the embedded database and should stay there, unless overwritten. It is part of the application data. When you deploy an updated runtime, does Optix Studio prompt if you want to Update or Replace the application on the device? Make sure you are selecting Update so as to not ...
Posted By AutomateSHANE Apr 29, 2024 06:42:00 AM
Found In Egroup: Advanced Software
\ view thread
It sounds like you need a formatted link. That is done for you automatically in Optix Studio by selecting the format in the dynamic link editor, as you point out. However, if you were doing this yourself in Studio, using the advanced tab, you would use a string formatter with formatted placeholder(s). ...
Posted By AutomateSHANE Apr 29, 2024 06:11:16 AM
Found In Egroup: Automation Control
\ view thread
"(except the unnecessary rename of instructions)." Annoying of a change as it may be, it only seems unnecessary if all you use is Rockwell software. The change brings RA's ladder editor in line with the IEC 61131-3 and PLCopen standards. For anyone already using a PLC platform which is already aligned ...
Posted By AutomateSHANE Apr 26, 2024 05:30:00 AM
Found In Egroup: Advanced Software
\ view thread
Hi Ihor. View Designer does not have any native recipe management, unlike other RA visualization products. You would have to use the controller and its SD card. Studio 5000 View Designer Recipe Handling in Controller I would hardly consider View Designer as 'advanced' software. It is merely a more ...
Posted By AutomateSHANE Apr 26, 2024 05:12:19 AM
Found In Egroup: Advanced Software
\ view thread
Good thing GLaDOS is here! I spent an embarrassing amount of time trying to figure out that conversion before deciding it was too early in the morning for maths. I also forgot the round() function exists. I need to sleep more =)
Posted By AutomateSHANE Apr 25, 2024 05:52:41 AM
Found In Egroup: Advanced Software
\ view thread
I don't see how it would be. A key-value converter is a 1:1 table of mapped pairs. It is a lookup table of sorts. What you are trying to do is more or less a formula, a mathematical relation. At best, you could apply some formatting to the source value so that it always returns an integer value that ...
Posted By AutomateSHANE Apr 25, 2024 05:16:15 AM
Found In Egroup: Automation Control
\ view thread
Also, all of the Point I/O modules have a sticker on the side where it is clearly printed which position the dial needs to be in to fit the base.
Posted By AutomateSHANE Apr 24, 2024 04:22:00 PM
Found In Egroup: Advanced Software
\ view thread
To make a long story short, certain things that you link to must be resolved at runtime as a particular instance. In the case of the MainWindow, the best way to accomplish this is via the alias, already provided in the project: To go a little further... In the example project, you see that ...