List of Contributions

Justin Miller

Contact Details

Justin Miller


My Content

1 to 20 of 27 total
Posted By Justin Miller May 31, 2024 10:49:00 AM
Found In Egroup: Advanced Software
\ view thread
Hello Philip, Thank you for the reply. So, just to confirm in order to achieve what I am wanting I would need to purchase FactoryTalk Linx Gateway.
Posted By Justin Miller May 31, 2024 10:43:00 AM
Found In Egroup: Advanced Software
\ view thread
Shane, I do not expect Rockwell to provide further support for PLC 5 and SLC controllers. I was very surprised when I was told at an expo that this was going to be a feature offered in future releases. I remember thinking to myself "hmmm I wonder why they are doing that." I would think that implementing ...
Posted By Justin Miller May 30, 2024 10:50:00 AM
Found In Egroup: Advanced Software
\ view thread
Hello, I was wondering if there are plans to incorporate FactoryTalk Linx OPC/DA Topics into FactoryTalk Optix. I have heard there will be PLC5 support added in the future? Does anyone know if this is true?
Posted By Justin Miller May 23, 2024 08:46:00 AM
Found In Egroup: Advanced Software
\ view thread
I am assuming your using SQLite as your embedded database. I think you may have to make a new table rename the table columns to what you want them to be delete the old table and rename the new to the original table name. SQLite is a minimalist version and does not have full features. I think the code ...
Posted By Justin Miller May 22, 2024 10:05:00 AM
Found In Egroup: Advanced Software
\ view thread
Can you not change the column name inside your SQL Server to match the syntax required by Optix? Is your SQL server MSQL?
Posted By Justin Miller May 21, 2024 03:29:00 PM
Found In Egroup: Advanced Software
\ view thread
Version 1.4 fixed this issue for me
Posted By Justin Miller May 14, 2024 09:55:00 AM
Found In Egroup: Advanced Software
\ view thread
I agree I think NetLogic would be the best route to accomplish this. I will try and find some time today to write out some code to get this to work for you. I am also curious. You should easily be able to assign values to variables using an if statement in .Net
Posted By Justin Miller May 13, 2024 09:08:00 AM
Found In Egroup: Advanced Software
\ view thread
I have multiple PLC5s on my network through DH+ to ethernet. Am I able to go across the backplanes to access PLC 5 tags? And if so, is FactoryTalk Optix able to read/write tags from a PLC5
Posted By Justin Miller May 13, 2024 09:01:00 AM
Found In Egroup: Advanced Software
\ view thread
You are evaluating the value in your recipeSchema2/Stage01/Kommentar[0]. From what it looks like the value of your tag is null or "". If you were to go in your plc and put "3" in your Tag the expression would evaluate and put 10 in the box. However, if your tag is null it will always return null or 0 ...
Posted By Justin Miller May 13, 2024 08:18:00 AM
Found In Egroup: Advanced Software
\ view thread
You should also be able to point the message property to the string tag in your PLC if you are using ALMD I would think.
Posted By Justin Miller May 13, 2024 08:17:00 AM
Found In Egroup: Advanced Software
\ view thread
Hello Koopman, Are you trying to add digital alarms that are called based on a tag in the PLC? Or are you trying to use THE ALMD or ALMA instructions to generate the message using strings? The former is pretty straightforward. Create a new digital alarm in the Alarms folder point input variable to ...
Posted By Justin Miller May 09, 2024 12:59:00 PM
Found In Egroup: Advanced Software
\ view thread
Just to be clear you are trying to change the "label2" text during runtime. I want to make sure that's what you are trying to do before I attempt to solve this.
Posted By Justin Miller May 08, 2024 03:24:00 PM
Found In Egroup: Advanced Software
\ view thread
I know that these runtime licensing are perpetual. However, I am wondering are these able to be rehosted? Are there redundancies available "like hosting these on a server" or is this all handled in the cloud? Forgive me for my ignorance but these are key details that will help me decide if we as a company ...
Posted By Justin Miller May 08, 2024 07:12:00 AM
Found In Egroup: Advanced Software
\ view thread
Tan, I think a great place to start for you to best understand would be The FactoryTalk GitHub page. NetLogic_CheatSheet/pages/variables-interaction.md at main · FactoryTalk-Optix/NetLogic_CheatSheet · GitHub This page has examples of NetLogic to interact with variables. I think it ...
Posted By Justin Miller May 08, 2024 07:03:00 AM
Found In Egroup: Advanced Software
\ view thread
ISSUE FIXED. After a few hours of troubleshooting I deleted the renamed libraries from the RA Folder and the application Launched.
Posted By Justin Miller May 07, 2024 01:26:00 PM
Found In Egroup: Advanced Software
\ view thread
Why are you invoking VariableToLog?
Posted By Justin Miller May 07, 2024 01:22:00 PM
Found In Egroup: Advanced Software
\ view thread
When I was trying to add items to a custom library the FactoryTalk Optix studio crashed. I immediately tried to open it back up and when I click it gives me the spinner wheel and nothing else. I have tried multiple times to uninstall this and redownload, nothing is working. I have been in line in tech ...
Posted By Justin Miller May 03, 2024 04:10:00 PM
Found In Egroup: Advanced Software
\ view thread
I have just inserted the Counts into another database. However I am not able to display it properly on the Histogram. I think I may need to move this to an object or something. I really like optix but I am so out of my element I have been a long time SE developer and this is going to take some getting ...
Posted By Justin Miller May 03, 2024 01:04:00 PM
Found In Egroup: Advanced Software
\ view thread
#region Using directives using System; using System.Globalization; using UAManagedCore; using System.Collections.Generic; using OpcUa = UAManagedCore.OpcUa; using FTOptix.EventLogger; using FTOptix.HMIProject; using FTOptix.NetLogic; using FTOptix.Alarm; using FTOptix.UI; using FTOptix.NativeUI; ...
Posted By Justin Miller May 03, 2024 09:48:00 AM
Found In Egroup: Advanced Software
\ view thread
I have tried to run some queries from NetLogic however I must admit .NET is something new to me as I have always coded in either JavaScript or Python. I think that I am on the right track to figuring this out however I was hoping someone has already done this before and would share their knowledge with ...