Data From Ignition To TilliT

Write folder

The Asset Write folder allows you to send data from Ignition to TilliT, including:

  • Counts (production totals, rejects)

  • Asset Status (running, stopped, idle, etc.)

  • Process Variables (analog values like temperature, pressure, speed)

  • Events (quality checks, maintenance triggers, etc.)

Important: For Process Variables, you must first configure them in TilliT before they will appear in the Ignition tag structure.

By creating a reference tag in the default tag provider and having the source tag path point to a tag in the "Write" folder of a specific asset in the TilliT provider, you can update the information and statuses and have that passed on to TilliT.

Raising an event from Ignition

To raise an event in TilliT, mark the trigger tag as true and wait for the acknowledgment:

Every asset will have every event type listed in the tree.

If you create a new Event Type and it is not listed by default, mark the Refresh tag at the root of the tag provider as true

You can also raise events via Script. Knowing the Asset Id and the event Id, the following script would raise an event:

system.tillit.raiseEvent(eventTypeId, assetId)

Sending Production Counts and Asset Status

You can implement full OEE tracking by configuring just two key tags: TotalCount and Status.

Value
Description

Active

Must be set to True to enable asset monitoring. None of the count or status features will work until this tag is enabled. This tells the TilliT Module to monitor this asset for counts and state changes.

Asset Status

Reports the current operational state of the asset. Must match one of the following valid values:

RUNNING
STOPPED
READY
IDLE
SUSPENDED
COMPLETED
ABORTED

TotalCount

A continuous, incrementing counter representing total production from the asset. The TilliT Module monitors this tag, calculates the difference between readings over time, and publishes incremental counts to TilliT. Best Practice: Reset the counter at the start of each new order for easier maintenance. Warning: Do NOT reset the counter mid-order as this will cause misalignment with accumulated counts. Either never reset the counter, or only reset during order transitions.

RejectCount

Works identically to TotalCount but tracks rejected or defective parts. Rejects are counted against the active order and drive the Quality (Q) component in the APQ OEE calculation. Follow the same reset guidelines as TotalCount.

Process Variables

You can send analog values to TilliT as a Process Variable. These values can be used in the activity forms with the Edge Data data type or access this information in TilliT dashboards.

Process variables are not available by default; you need to create an Edge Data Tag in TilliT for it to appear in the tag provider. See Edge Data Tag.

Last updated