The Data Logging feature records PLC device values to CSV files at regular intervals or based on trigger conditions.
You can create multiple configurations and record simultaneously.
Open the configuration screen from the "Data Logging" section in Project Settings.
Records device values over time. Each row contains a timestamp and all device values.
| timestamp | Speed | Pressure | Temp |
|---|---|---|---|
| 2026-05-16 10:00:00.000 | 1500 | 80 | 25 |
| 2026-05-16 10:00:01.000 | 1520 | 81 | 26 |
Creates one file per trigger and records device values in table format.
The same device is expanded with row-based offsets.
For example, with devices
D0000
(Speed) and
D0100
(Pressure), and a row count of 3:
| Speed | Pressure | |
|---|---|---|
| 1 | Value of D0000 | Value of D0100 |
| 2 | Value of D0001 | Value of D0101 |
| 3 | Value of D0002 | Value of D0102 |
Each row offsets the device address by +1.
The resulting CSV looks like this:
| Speed | Pressure | |
|---|---|---|
| 1 | 1500 | 80 |
| 2 | 1520 | 81 |
| 3 | 1480 | 79 |
{project}
- Project name
{title}
- Title row value
{date}
- Date (yyyyMMdd)
{time}
- Time (HHmmss)
{datetime}
- Date and time (yyyyMMdd_HHmmss)
Configure the recording timing.
For bit triggers, specify the bit device to use as the trigger.
For bit triggers, you can automatically operate the trigger device after recording.
Configure the devices to record. In Table mode, this section is labeled "Columns".
Recorded sessions are listed in the "Sessions" section of the sidebar.
When a project is running, data logging automatically starts for all enabled configurations.
Configuration import and export are supported.