ignitionprogramming.blogspot.com
Ignition Programming: Packaging an external library as a module
http://ignitionprogramming.blogspot.com/2011/05/packaging-external-library-as-module.html
Thursday, May 26, 2011. Packaging an external library as a module. As I've been working with programming modules for Ignition, I've needed to use certain libraries along with my projects. One way to do this: simply include the library's jars in your .modl file, and include them in your module.xml. This will make the library accessible for your module's classes' classloader. What if the library is very large, though? The solution I came up with was to package the library in its own module. Modules module ...
nickmudge.info
Nick Mudge's Weblog: Ignition Power Tables
http://nickmudge.info/post/ignition-power-tables
Nick Mudge Ignition Software Consulting and Development. This is a guest post from Chris Powell. Recently, Inductive Automation added a new table to their list of components. The name 'Power Table' is not understated. I want to share a few of the features I have found for some of the non-programming background developers out there. Since the release of Ignition V7.7, Inductive Automation has added Extension Functions. I use this feature to highlight each individual cell on each row based on the row's val...
ignitionprogramming.blogspot.com
Ignition Programming: Adding Scripting Functions
http://ignitionprogramming.blogspot.com/2011/07/adding-scripting-functions.html
Wednesday, July 6, 2011. So, you have a handy method available in one of your Java classes, and you wish you could use it in your jython script? The full list of items that are available from Python 2.5 are available here: http:/ docs.python.org/release/2.5/modindex.html. In your designer hook class, just add the following code:. Override public void initializeScriptManager(ScriptManager manager) { manager.addScriptModule("playground.math", java.lang.Math.class); }. And voila, we have full access! And th...
ignitionprogramming.blogspot.com
Ignition Programming: August 2011
http://ignitionprogramming.blogspot.com/2011_08_01_archive.html
Monday, August 1, 2011. Exploration of 3d APIs In Java (As of August 2011). This is definitely the new kid on the block. JavaFX seems to think of itself as a superset of what Flash / Silverlight can do. You can code in pure java, and import your existing java business logic into JavaFX applications. It does run its own rendering, so you could see it as an alternative to Swing / AWT. Which brings me to. Special thanks to Erlend Sogge Heggen for corrections on the jMonkeyEngine information above. I hope th...
computingwithoutboundaries.blogspot.com
Computing Without Boundaries: OPC-UA goes mainstream
http://computingwithoutboundaries.blogspot.com/2014/04/opc-ua-goes-mainstream.html
Manufacturing Middleware, HMI and SCADA Software Unleashed. This blog is dedicated to open, interoperable manufacturing software and the coolest, latest and greatest things I see every day while conducting business under the banner of Inductive Automation. From PLCOpen.org presentation of February 2014. One of my most popular posts was Imagine OPC-UA Everywhere. One event was the announcement today in Control Engineering - Europe entitled OPC-UA client function blocks for IEC 61131-3. In that announcemen...
computingwithoutboundaries.blogspot.com
Computing Without Boundaries: Why keep Reinventing the Wheel?
http://computingwithoutboundaries.blogspot.com/2013/06/why-keep-reinventing-wheel.html
Manufacturing Middleware, HMI and SCADA Software Unleashed. This blog is dedicated to open, interoperable manufacturing software and the coolest, latest and greatest things I see every day while conducting business under the banner of Inductive Automation. Why keep Reinventing the Wheel? We talk about "the platform" all the time. A platform is sort of like an operating system but higher up the software stack. Why would you recreate deployment , development, security, licensing, connectivity , aut...Most ...
notanotherindustrialblog.blogspot.com
Not another Industrial (software) Blog: Ignition 7.3 Beta available
http://notanotherindustrialblog.blogspot.com/2011/09/ignition-73-beta-available.html
Not another Industrial (software) Blog. What I really think! Standards, networking, security, databases, open source, and topics related to the development of HMI, and SCADA systems. Thursday, September 15, 2011. Ignition 7.3 Beta available. Ignition 7.3 represents a major version increase for the Vision module and may significant changes for the others. If you've never beta tested Inductive Automation software you'll have to request access to the beta forum here. Drawing tools added for vector graphics.
notanotherindustrialblog.blogspot.com
Not another Industrial (software) Blog: Interesting article - The Ultimate HMI
http://notanotherindustrialblog.blogspot.com/2011/09/interesting-article-ultimate-hmi.html
Not another Industrial (software) Blog. What I really think! Standards, networking, security, databases, open source, and topics related to the development of HMI, and SCADA systems. Friday, September 2, 2011. Interesting article - The Ultimate HMI. This Control Global article, The Ultimate HMI. Provides interesting tips about HMI screen creation. I especially like the comments and examples of the best visual status indications containing: text, shape, and color. September 2, 2011 at 11:29 AM. Ignition b...
notanotherindustrialblog.blogspot.com
Not another Industrial (software) Blog: Ignition in many industries
http://notanotherindustrialblog.blogspot.com/2013/04/ignition-in-many-industries.html
Not another Industrial (software) Blog. What I really think! Standards, networking, security, databases, open source, and topics related to the development of HMI, and SCADA systems. Thursday, April 11, 2013. Ignition in many industries. Inductive Automation 48 second teaser video. Of the many industries that Ignition SCADA software is used. Appliances, automotive, building material, chemical, electronics, energy, fibers and textile, food and beverage.the list goes on. Please email me back. FactorySQL - ...
ignitionprogramming.blogspot.com
Ignition Programming: May 2011
http://ignitionprogramming.blogspot.com/2011_05_01_archive.html
Thursday, May 26, 2011. Packaging an external library as a module. As I've been working with programming modules for Ignition, I've needed to use certain libraries along with my projects. One way to do this: simply include the library's jars in your .modl file, and include them in your module.xml. This will make the library accessible for your module's classes' classloader. What if the library is very large, though? The solution I came up with was to package the library in its own module. Modules module ...