Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - viper_lasser

Pages: [1]
1
Thanks Arnie for advice with datasubscriber.

I was wondering is it possible to create datasubscriber instances with some litte code...
For example my program would read csv file with defined tag names and addresses for the tag, and also sometimes it would be defined specified bit in value register.
If tag will be definied with specified bit then one instanced of datasubscriber would be created.




2
How can I access to specified bit from Modbus where 40001 is Holding Register ?
I would like to display on/off information about some device in BasicIndicator component


3
I mean that I would like to periodically read some data and log some alarms if they occured.

Can I periodically read same datas from modbus in independent thread and in the same time all controls are updated periodycally ?

4
How to access data registers read by modbus tcp component i.e for data trends or alarms ?

5
Support Questions / Re: Modbus, communication error
« on: July 08, 2014, 02:14:28 PM »
Thanks for help. Is it possible to log communication error to alarms ?

6
Support Questions / Tag editor for PLCAddressText and PLCAddressValue
« on: July 08, 2014, 08:06:25 AM »
I was wondering is it possible to load addresses for adv hmi controls i.e from csv file ?
Maybe there is that possibility but I don't know about it.

7
Support Questions / Modbus, communication error
« on: July 08, 2014, 07:52:45 AM »
How to disable message box notification with communication error i.e when there is no reply from plc in advanced hmi ?

8
Feature Request / Re: Component to allow logging to .CSV
« on: October 17, 2013, 12:13:42 PM »
Is it a chance for testing it ?

9
Feature Request / Re: Component to allow logging to .CSV
« on: October 16, 2013, 08:03:47 AM »
I do have a SimpleDataLogger component that is also in testing. It simply connects to a single register and can be set to write the data to a text file either on a time interval or on change of data.

The charting of data requires a few lines of code, but is very simple. In the data group of the Toolbox is a Chart control. You add a Chart and a Timer component to your form. Set the interval (milliseconds) on the timer in the properties, then double click the timer to get back to the code. This is an example of code to trend a data point:

Code: [Select]
Dim NewValue as string=ModbusTCPCom1.ReadSynchronous("40001",1)(0)
Chart1.Series(0).points.add(NewValue)

Where we can find SimpleDataLogger component ?

Pages: [1]