Viewon export

I only can in between 8:45-13:15 spanish hour.

Its there an other posible solution?

You may need to contact your local distributors for support during that time

Ok, well I Will contact with them!

One more question, I have one tag en eWON that represents how much time during our process in seconds, but I want to show it in Viewon in minutes or hour.
What I have to do to get this?

I want to show in Viewon the state of the process. So, in depends on the value of one of tags I want to see if it is on manual, automatic, on going or sttoped.

Do you know how I can do this?

Thank you!!

You want to know how many seconds since the device turned on?

You should be able to do this with an ontimer and then just create a counter that will increment a tag in the basic ide section

No, I have a tag which give me the seconds of the process running on the PLC.

I want to take hour:minute:seconds from this tag with Viewon to show in a dashboard.

In that case you could just create 2 other integer tags that could run on ONDATEs or Onchanges

it could be done like this:

We’ll use tag1 as the tag that’s reading the number of seconds that the process was running on the PLC and assume that tag1 is an integer. We’ll also create 2 more tags called minute and hour

ONCHANGE “Tag1”, “@timecheck()”

Function Timecheck()

minute@ = tag1@/60
hour@ = tag1@/3600

Endfn

These will stay at whole numbers because they are integers and will update each time that the amount of seconds in tag1 changes