Questions tagged [ignition]

Ignition is an industrial software platform built for HMI, SCADA and MES applications developed by Inductive Automation. Use this tag to ask specifically on the use of Ignition software to build the mentioned applications.

Ignition is an industrial software platform built for HMI, SCADA and MES applications developed by Inductive Automation (https://inductiveautomation.com/).

Use this tag to ask specifically on the use of Ignition software to build the mentioned applications.

69 questions
0
votes
1 answer

Is there a way to write a nodejs builtins with CodeStubAssembly, which calls a dynamic linked c++ library in it?

Is there a way to write a nodejs builtins with CodeStubAssembly, which calls a dynamic linked c++ library in it? so I can call it from javascript. I don't want to use addons since it introduces extra compilation which I don't want. The reason I…
Zhe Li
  • 23
  • 4
0
votes
1 answer

Python Scripting question, probably very simple but I have little experience in this code

x = 1000 while x <= data['a2goodthousands'] * 1000: data['MyA2Good'] = x + data['a2goodhundreds'] x = x + 1000 if 1 > data['a2goodthousands']: data['MyA2Good'] = data['a2goodhundreds'] Above is the code I wrote. It works, but…
Alex
  • 1
  • 1
0
votes
1 answer

error build all ros packages in this repo the error occur in catkin_make step

I followed instruction by Michael Huang. My error message reads: In file included from /home/evadro/quadevac_sim_ws/catkin_ws/src/menge_gazebo/menge_congregate/include/MengeCong.h:10:0, from…
GP2020-DAR
  • 29
  • 4
0
votes
1 answer

Ignition fails because group already exists

I'm trying to create a user and group with Terraform but when I run the instance via CoreOS it fails with the error: [ 298.037882] ignition[2052]: files: createGroups: op(1): [failed] adding group "vault": exit status 9: Cmd: "/usr/sbin/groupadd"…
Mazzy
  • 13,354
  • 43
  • 126
  • 207
0
votes
0 answers

Convert Java to Jython

I would like to know if it's possible to convert the code below from Java to Jython. I want to create a JTree Table in Ignition in order to visualize the data by clicking a row and the user can see a subview row that contains some information of the…
0
votes
3 answers

Why ignition's OPC UA is not based on OPC Foundation?

I'm researching about OPC UA and software that uses it, I noticed that one of major products that is using OPC UA is ignition but its not using foundation's sdk. What's the problem with that ? I can see that Foundation licenses other opc ua servers.…
mgblow
  • 1
  • 1
0
votes
1 answer

Ignition 7.8 – Get Component Text From Text Area Within Container Via Scripting

A Button with scripting is saving Component values to parameters for a SQL update. The calling button is one level above the Container that holds the Text Area. However, the set for the Text Area value using the recommended User Manual method is…
PerPlexSystem
  • 704
  • 1
  • 15
  • 30
0
votes
1 answer

Why production module not showing on ignition 8.0?

I have recently installed ignition 8.0 with demo version. In this software, I am not able to see production module under the project browser. Any idea how to enable this module. Regards, Dhamu
sathish
  • 57
  • 1
  • 4
0
votes
1 answer

Ignition SDK Gateway configuration shows path, not string

I am trying to program a MODULE for the Ignition SDK but I am running into problems with the paths of the strings in the .properties file not working properly. I have a file called ProfileSettings.properties and one called ProfileSettings.java…
J.Doe
  • 1
  • 1
0
votes
1 answer

Gazebo 7 and Gazebo 9 incostintencies

I have been written code with API of gazebo 7, recently I am trying to migrate to gazebo 9, but I have faced with some inconsistencies. In the gazebo 7, we have the member function named "GetWorldPose()." which is a 1 .member function of the link…
Mhkazemi
  • 1
  • 4
0
votes
2 answers

How to view all files within a folder using openFile?

I'm using the following code to open a dialog box to a specific folder. It is currently displaying all .jpg files. How do I make it show all files? path = system.file.openFile('jpg', 'J:\FULLSAIL\Historian') if path != None:
PaulMc
  • 109
  • 11
0
votes
1 answer

How to insert file path into Text Component

By using the Component Scripting - mouseReleased - Script Editor path = system.file.openfile() I have been able to get the following popup. Now what I want is for the selected File's path to be inserted into the original Text Component's Text…
PaulMc
  • 109
  • 11
0
votes
1 answer

How to guarantee and return unique ID in MySql with many users on one client

So I'm working on a MySQL database with three tables: Table 1 defines an fruit, with columns like "name", "color", "flavor" and "Fruit_ID". Table 2 defines a category, with columns like "name", "description", and "Cat_ID". Table 3 defines the…
boxcartenant
  • 271
  • 2
  • 14
0
votes
1 answer

Select multiple rows in MySQL table based on a comma delimited string

I have an application with a page that lists inventory. At the top of the page is a search text-box where users can enter values, such as an id, a name, location etc. I want users to be able to enter multiple values into the search text box and for…
Yuriy F
  • 351
  • 1
  • 2
  • 13
0
votes
1 answer

Finding Max and Stdev of the raw tags in Ignition

I have raw tags: Requirements are: a) user enters Hours. b) Based on hours I get a value of "Max" in those hours and a Value of "St Dev" during the given time period. Please see image: Desired Result Database is stored as following schema: Database…