Search found 213 matches

by Russ C.
Wed Jan 29, 2020 3:54 pm
Forum: Application Development
Topic: Fruit calibrator using PLC and HMI with IX Develope software
Replies: 1
Views: 5497

Re: Fruit calibrator using PLC and HMI with IX Develope soft

Hello,

We understand that this is a very old post. If there is anyone who is still experiencing this or similar issues and require assistance, please visit us at https://www.beijerelectronics.us/en-US/ ... ___support or give us call at 801.708.6690.

Thank you.
by Russ C.
Wed Jan 29, 2020 3:52 pm
Forum: Controller Communication
Topic: Modbus use of preset holding register (function 0x10)
Replies: 1
Views: 13640

Re: Modbus use of preset holding register (function 0x10)

You can force code 0x10 using this option in the Modbus Master Settings.
Modbus Master-force-code0x10.png
Modbus Master-force-code0x10.png (16.12 KiB) Viewed 4767 times
Please note: Writing INT32 automatically forces 0x10.
Modbus Master RTU_ASCII-force-0x10-help-file.png
Modbus Master RTU_ASCII-force-0x10-help-file.png (74.86 KiB) Viewed 4767 times
by Russ C.
Wed Jan 29, 2020 3:46 pm
Forum: Scripting
Topic: Determine if a tag is of type Array
Replies: 1
Views: 8257

Re: Determine if a tag is of type Array

You can use the Globals.Tags.Tag1.GlobalDataTypeFriendlyName and Globals.Tags.Tag1.ArraySize properties in scripting.
by Russ C.
Wed Jan 29, 2020 3:41 pm
Forum: Scripting
Topic: How to receive BacklightTurnedOff event
Replies: 2
Views: 9841

Re: How to receive BacklightTurnedOff event

We tested the code you posted, and it appears to work in iX 2.40 SP4, it will trigger the <Screen>.Show(); event
by Russ C.
Wed Jan 29, 2020 3:06 pm
Forum: Scripting
Topic: _InputValueChanged AnalogNumeric - incremental numeric field
Replies: 1
Views: 7668

Re: _InputValueChanged AnalogNumeric - incremental numeric f

Here is a snippet of code, that could accomplish what you're asking int prevValue = 0; int totalValue = 0; void AnalogNumeric_InputValueChanged(System.Object sender, Core.Api.DataSource.ValueChangedEventArgs e) { totalValue += prevValue = Int16.Parse(AnalogNumeric.Value.ToString()); MessageBox.Show(...
by Russ C.
Wed Jan 29, 2020 2:47 pm
Forum: Scripting
Topic: Update tag with offset when button is pressed
Replies: 1
Views: 5219

Re: Update tag with offset when button is pressed

Hello,

We understand that this is a very old post. If there is anyone who is still experiencing this or similar issues and require assistance, please visit us at https://www.beijerelectronics.us/en-US/ ... ___support or give us call at 801.708.6690.

Thank you.
by Russ C.
Wed Jan 29, 2020 2:44 pm
Forum: Scripting
Topic: How to check by script if a GPS connection exists?
Replies: 1
Views: 8167

Re: How to check by script if a GPS connection exists?

Here is an example project that utilizes a ping to determine if a connection to a specific IP Address is active
by Russ C.
Wed Jan 29, 2020 2:23 pm
Forum: Application Development
Topic: End of initialization - System start - Tag communication
Replies: 3
Views: 8558

Re: End of initialization - System start - Tag communication

I would use a Tag called "Initialized" with a default value of "False". Then use its ValueChange event to set its value to "True" if its "False" and if the value is "True" execute your code. This should get you very close to have 100% loaded Something like: void Initialized_ValueChange(System.Object...
by Russ C.
Wed Jan 29, 2020 2:17 pm
Forum: Application Development
Topic: Recipe load from Controller
Replies: 1
Views: 5877

Re: Recipe load from Controller

Hello,

We understand that this is a very old post. If there is anyone who is still experiencing this or similar issues and require assistance, please visit us at https://www.beijerelectronics.us/en-US/ ... ___support or give us call at 801.708.6690.

Thank you.
by Russ C.
Wed Jan 29, 2020 1:31 pm
Forum: Application Development
Topic: data logging function reporting export from panel via mail
Replies: 1
Views: 5793

Re: data logging function reporting export from panel via ma

This can be done using an Alarm Distributor object.
alarm-distributor.png
alarm-distributor.png (26.83 KiB) Viewed 2884 times
Configure your email server settings
alarm-distributor-distribution-devices.png
alarm-distributor-distribution-devices.png (63.75 KiB) Viewed 2884 times
Then add a route and contacts and set the time to run the schedule
alarm-distributor-scheduler.png
alarm-distributor-scheduler.png (28.4 KiB) Viewed 2884 times