Pre-Project · Requirements

DAQMaster → Web Rebuild

A feature-by-feature requirements document for reimplementing Autonics DAQMaster as a browser-based SCADA / data acquisition platform. Source of truth: the DAQMaster V6.0 user manual (325 pages, EN) and the on-disk install at C:\Program Files\Autonics\DAQMaster.

Product: Autonics DAQMaster V6.0 (2026 build 4.4.0.6950) Platform: Embarcadero RAD Studio 12.3 (C++Builder, VCL, x64) Source: MWA-DAQU1-V6.0-EN_W.pdf
57
Feature sections
54
Supported device families
325
Manual pages
7,839
UI strings (i18n)
43
VCL forms in main EXE
122
BPL packages

Foundations

§01

Getting Started

onboarding tutorial wizard

Quick-start wizard for new users. Walks through device connection, parameter setting, and basic monitoring so first-time users can be productive in minutes. Covers creating a project, adding a supported device, configuring My System, defining IO points, opening a runtime screen, and running logging.

Getting Started screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 31  ·  source image: img_p031_00.png  ·  native size: 502×474px
§02

Screen Layout

ui-shell layout panels

The DAQMaster main window uses a three-pane layout: the vertical navigation tabs on the left (Project List, Supported Device List, I/O List), the ribbon menu across the top (Project, View, Tool, Windows, Help), and the central DAQ WorkSpace where panels are arranged. Multiple panels can be tiled, aligned horizontally, or aligned vertically.

Screen Layout screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 37  ·  source image: img_p037_00.png  ·  native size: 1342×853px

1. Project

§03

Project - List & Control

project navigation

Project List acts like browser favorites — frequently-used project files are pinned for one-click access. The Project control panel is the live tree of the current project: Runtime Screens, Realtime Log, TCP/IP Server, DDE Server, OPC DA Server, Scheduler, Trigger Event, Report, and MQTT Publisher. Double-click any node to open its configuration.

Project - List & Control screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 47  ·  source image: img_p047_00.png  ·  native size: 438×368px
§04

Project - Property

metadata settings

Per-project metadata and runtime settings: project name, description, log directory, log save mode (buffer-then-flush or direct), layout defaults, runtime connection, and information-settings (which tag values get stamped into every log row).

Project - Property screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 49  ·  source image: img_p049_00.jpeg  ·  native size: 317×437px
§05

Project - Run

runtime control

Master run/stop control for the whole project. Connect to all devices, start logging, start runtime screens, start the trigger event engine, and start the scheduler — all with one click. Also exposes a quick log status line showing elapsed time.

Project - Run screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 52  ·  source image: img_p052_00.png  ·  native size: 339×275px
§06

Project - Realtime Log

logging data-acquisition csv duf

Continuous data acquisition following the DAQ List configuration. Per-tag logging cycle, condition (always, on-change, threshold), and destination. Logs are written to CSV or to the proprietary .duf binary format. The Information Settings tab lets you stamp extra tag values into every log row for traceability.

Project - Realtime Log screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 54  ·  source image: img_p054_00.png  ·  native size: 338×293px
§07

Project - TCP/IP Server

server tcp integration

Embeds a TCP server inside DAQMaster that exposes the project's tag values over a raw socket. External SCADA/ERP systems can connect and poll the live tag database. Useful for legacy integration where only socket I/O is available.

Project - TCP/IP Server screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 60  ·  source image: img_p060_00.png  ·  native size: 360×365px
§08

Project - DDE Server

legacy dde windows

Legacy Dynamic Data Exchange server. Exposes tag values as DDE topics for old Excel macros, InTouch, or other Windows-DDE clients. Largely deprecated in 2026 but kept for backwards compatibility with installed bases.

Project - DDE Server screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 62  ·  source image: img_p062_02.png  ·  native size: 828×530px
§09

Project - OPC DA Server

opc-da scada integration

Classic OPC Data Access server (DA 2.0/3.0). Industry-standard interface for SCADA HMI clients. Tags are exposed as OPC items; clients browse the address space and subscribe to live updates.

Project - OPC DA Server screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 63  ·  source image: img_p063_00.png  ·  native size: 395×327px
§10

Project - Scheduler

scheduler cron automation

Time-driven action engine. Schedule reports, log rotations, DAQ start/stop, project backups, MQTT publishes, and any custom action on a cron-style schedule. Multiple independent schedules per project, with run history and status.

Project - Scheduler screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 67  ·  source image: img_p067_00.png  ·  native size: 355×278px
§11

Project - Trigger Event

rules events alarms

Event-driven rule engine. When tag X crosses threshold Y, fire action Z. Conditions support AND/OR/NOT, comparison operators, hysteresis, and debounce. Actions include writing a tag, sending a message, executing a Lua script, or chaining to another trigger.

Project - Trigger Event screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 70  ·  source image: img_p070_00.png  ·  native size: 438×416px
§12

Project - Report

reporting pdf print

PDF/print report generator. Configure templates with tag values, time ranges, aggregations (min/max/avg/integral), and output to print, PDF, or email. Supports daily/weekly/monthly scheduled reports.

Project - Report screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 75  ·  source image: img_p075_00.png  ·  native size: 325×412px
§13

Project - MQTT

mqtt iiot cloud publish

MQTT 3.1.1/5.0 publisher. Streams tag updates to an external broker (Mosquitto, EMQX, HiveMQ, AWS IoT Core, Azure IoT Hub) with QoS 0/1/2, retained messages, TLS, and configurable topic templates (e.g. `site/{site}/device/{device}/tag/{tag}`).

Project - MQTT screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 78  ·  source image: img_p078_00.png  ·  native size: 2316×1064px
§14

Project - Action (Telegram/SMS/Email)

alarms notifications telegram sms email

Outbound notification channels. Send alerts to Telegram (via the bundled TeleBotService.exe), SMS (via a modem/serial gateway), or Email (SMTP with TLS). Messages are templated with tag values substituted in. Triggered by the Trigger Event engine.

Project - Action (Telegram/SMS/Email) screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 86  ·  source image: img_p086_00.png  ·  native size: 486×335px

2. Supported Devices

§15

Supported Devices

devices catalog drivers

Catalog of all 54 device families DAQMaster knows how to talk to. Searchable tree by vendor and category. Double-click a device to add it to My System and start configuration. Each device has a typed parameter set defined in its .dev XML file.

Supported Devices screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 101  ·  source image: img_p101_00.png  ·  native size: 497×331px
§16

Miscellaneous (User-defined)

custom-device user-defined

User-defined device scaffolding. Start from a generic Modbus template and customize the parameter set, register map, and I/O for a non-catalog device. Saves as a .dev file under `device/User/` so it appears in the catalog next time.

Miscellaneous (User-defined) screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 107  ·  source image: img_p107_00.png  ·  native size: 488×451px
§18

DDE Client

dde legacy client

DDE client that pulls values from a remote DDE server and surfaces them as virtual tags. Bridges legacy DDE data sources into the project tag database.

DDE Client screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 114  ·  source image: img_p114_02.png  ·  native size: 607×191px
§19

Database

database sql odbc bridge

Generic ODBC/ADO database device. Run a SQL query at a configurable interval and expose each result column as a tag. Bidirectional — writes back to the database on tag change. Supports SQL Server, MySQL, PostgreSQL, Oracle via standard ODBC drivers.

Database screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 117  ·  source image: img_p117_02.png  ·  native size: 456×459px
§20

MQTT Subscribe

mqtt subscribe iiot

MQTT subscriber. Connect to an external broker and map incoming topics to tags. Wildcard subscriptions supported (`site/+/temp/+`). Useful for ingesting sensor data from edge gateways.

MQTT Subscribe screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 120  ·  source image: img_p120_03.png  ·  native size: 739×444px
§21

Modbus Slave

modbus slave bridge

Embeds a Modbus TCP/RTU slave in DAQMaster. Exposes the project's tags as Modbus holding/input/coil registers, so other Modbus masters can read or write the project's values. Used to bridge DAQMaster to other Modbus-speaking systems.

Modbus Slave screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 123  ·  source image: img_p123_02.png  ·  native size: 326×233px
§22

OPC DA Client

opc-da scada client

OPC DA client that connects to a remote OPC server and maps its items to tags. Brings third-party SCADA data into the DAQMaster tag database.

OPC DA Client screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 126  ·  source image: img_p126_02.png  ·  native size: 902×482px
§23

OPC UA Client

opc-ua scada client modern

OPC Unified Architecture client. Modern successor to OPC DA. Browse any OPC UA server's address space, subscribe to monitored items, and read/write tags. Supports security policies (None/Sign/SignAndEncrypt) and authentication (Anonymous/UserName/Certificate).

OPC UA Client screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 129  ·  source image: img_p129_00.png  ·  native size: 333×174px
§24

Virtual Tag

computed formula scripting

Computed/scripted tag that derives its value from other tags. Supports arithmetic, string ops, conditional logic, and Lua scripting. Used to implement formulas, derived units, and state machines without modifying device firmware.

Virtual Tag screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 134  ·  source image: img_p134_00.png  ·  native size: 334×159px
§25

WMI Manager

wmi windows monitoring

Windows Management Instrumentation client. Exposes Windows performance counters (CPU%, memory, disk I/O, NIC bytes/sec) as tags. Useful for monitoring the DAQMaster host machine itself.

WMI Manager screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 138  ·  source image: img_p138_02.png  ·  native size: 886×393px

3. My System

§26

My System

device-tree configuration serial ethernet modbus

The device tree for the current project. Add/remove/configure communication interfaces (Serial, Ethernet, Modbus Master) and the devices hanging off them. Set unit addresses, scan for devices on the wire, read all parameters, save/copy parameter sets, print Modbus map tables, configure parameter masks, and manage user groups for device-level access control.

My System screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 141  ·  source image: img_p141_01.jpeg  ·  native size: 326×219px

4. I/O List / DAQ List / Message

§27

I/O List

tag-database io scada

Centralized tag database. Every readable/writable parameter on every connected device appears here with type (Analog/Digital), access (R/RW), source address, and interface. Searchable and filterable. Tags are referenced by the DAQ List, Runtime Screens, Triggers, MQTT, OPC server, etc.

I/O List screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 169  ·  source image: img_p169_01.png  ·  native size: 377×401px
§28

DAQ List

sampling data-acquisition configuration

Sampling configuration. For each tag, define the logging cycle (ms), condition (always/on-change/threshold), enable/disable, and group. The DAQ List is what the Realtime Log engine reads to decide what to log and when.

DAQ List screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 171  ·  source image: img_p171_00.png  ·  native size: 791×235px
§29

Message

alarms messages event-log

Operator messages, alarms, and event log. Every Trigger Event action, scheduler run, alarm, and connection status change is recorded with timestamp, source, severity, and message text. Filterable and exportable.

Message screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 175  ·  source image: img_p175_00.png  ·  native size: 965×235px

5. RunTime Screen / DAQ Space

§30

Runtime Screen - Overview

hmi monitoring visualization

Visual data monitoring canvas. Open the Runtime Screen catalog (Grid, Multi-Panel, Panel, plus graph variants), drag panels into DAQ WorkSpace, arrange them, save the layout. Each panel binds to one or more tags from the I/O List and updates in real time.

Runtime Screen - Overview screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 177  ·  source image: img_p177_00.png  ·  native size: 1093×675px
§31

Runtime Screen - Grid

hmi grid tabular

Tabular view of live tag values. Sortable, filterable, with conditional formatting (color, alarm bands, blink on change). The simplest view for a control room operator — 'what is every tag right now?'

Runtime Screen - Grid screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 180  ·  source image: img_p180_00.png  ·  native size: 831×290px
§32

Runtime Screen - Multi-Panel

hmi multi-panel dashboard

Composite screen with multiple numeric/LED-style indicators arranged in a grid. Each cell binds to one tag. Common for status dashboards where you want many 'big number' readouts at once.

Runtime Screen - Multi-Panel screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 182  ·  source image: img_p182_01.png  ·  native size: 361×339px
§33

Runtime Screen - Panel

hmi panel detail

Single-tag detail panel. Big numeric readout with units, timestamp, color-coded alarm state, optional trend sparkline. For 'zoom in on one critical measurement'.

Runtime Screen - Panel screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 183  ·  source image: img_p183_00.jpeg  ·  native size: 519×296px
§34

Runtime Screen - Line Graph

hmi graph trend time-series

Real-time time-series line chart. Multiple Y-axes (one per tag), zoom/pan, time cursors with readouts at the cursor position, alarm bands, digital-channel overlays, multi-cursor sync, save as image, copy as data, export to CSV. Up to 8 tags on a single graph; 10K+ samples at 100ms cycle.

Runtime Screen - Line Graph screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 186  ·  source image: img_p186_00.png  ·  native size: 645×508px
§35

Runtime Screen - Bar Graph

hmi graph bar

Bar chart for comparing multiple tag values at a single point in time. Vertical or horizontal. Useful for 'rate-of-change' indicators and multi-channel comparisons.

Runtime Screen - Bar Graph screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 196  ·  source image: img_p196_00.png  ·  native size: 685×489px
§36

Runtime Screen - Color Map Graph

hmi graph heatmap 2d

2D heatmap view. X and Y axes are typically sensor positions, color is the tag value. Used for thermal imaging, oven temperature uniformity, and any 2D spatial data field.

Runtime Screen - Color Map Graph screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 199  ·  source image: img_p199_00.png  ·  native size: 496×537px
§37

Runtime Screen - Gauge Graph

hmi gauge analog

Analog dial gauge. Configurable min/max, scale, color bands, needle style. Mimics physical panel meters for operator familiarity.

Runtime Screen - Gauge Graph screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 202  ·  source image: img_p202_00.png  ·  native size: 386×473px
§38

Runtime Screen - Histogram Graph

hmi histogram statistics

Statistical histogram of recent values for a tag. Configurable bin count and time window. Useful for process capability analysis (Cp, Cpk) and spotting distribution shifts.

Runtime Screen - Histogram Graph screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 204  ·  source image: img_p204_00.png  ·  native size: 688×440px
§39

Runtime Screen - Alarm History

alarms history audit

Alarm event grid. Lists every alarm condition that fired, with timestamp, tag, value, severity, ack/unack status, and operator who acknowledged. Filterable by time, tag, severity. Exportable to CSV for incident reports.

Runtime Screen - Alarm History screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 205  ·  source image: img_p205_00.png  ·  native size: 538×238px
§40

DAQ Space

workspace hmi layout

The central workspace where runtime screens are composed and live. Multiple panels are positioned, sized, and saved as a layout. The operator opens the project and sees this dashboard. Supports multi-monitor with the layout snapping to any screen size.

DAQ Space screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 206  ·  source image: img_p206_00.png  ·  native size: 1235×449px

6. Tools

§41

Edit Modbus Device

modbus device-editor custom

Win32 dialog tree for creating and editing custom Modbus device definitions. Build a parameter list (one row per register/coil), set data type, access, address, scaling, and alarm bands. Save as a .dev XML file. This tool is itself a candidate for web-ification — see Improvements in the preq document.

Edit Modbus Device screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 207  ·  source image: img_p207_00.jpeg  ·  native size: 1195×666px
§42

User Manager

auth rbac audit compliance

Multi-user access control. Define Groups (e.g. Operators, Engineers, Admins), assign Authorities per group (Change Files, Change Property, Change My System, Change Projects, Change TAG List, Change Runtime), create Users, assign them to Groups. Required for FDA 21 CFR Part 11 / audit-compliant deployments.

User Manager screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 214  ·  source image: img_p214_00.png  ·  native size: 823×506px
§43

Script Editor

scripting lua extensibility

Lua IDE for writing custom device behavior, computed tag logic, and trigger actions. Syntax highlighting, autocomplete, breakpoints (in some Lua versions), and direct execution against the live project. The 55 .lua files in `device/` show how heavily the vendor uses this for device-specific behavior.

Script Editor screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 219  ·  source image: img_p219_01.png  ·  native size: 557×440px

7. Data Analysis

§44

Data Analysis - File

analysis history reporting

Post-hoc analysis of historical .duf and .csv log files. Grid view, graph overlay, alarm grid, Analysis Spread (pivot-table-style aggregation), min/max/avg/integral/SPC calculations. Time-range scrubber. The 'AnalysisWindow' lets you compare two time ranges side by side.

Data Analysis - File screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 221  ·  source image: img_p221_00.png  ·  native size: 1105×767px
§45

Data Analysis - View

analysis templates

Custom views on top of the loaded data file. Save analysis configurations as templates and re-apply them to new files. Useful for repeating the same weekly report or quality check on every shift's data.

Data Analysis - View screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 233  ·  source image: img_p233_01.png  ·  native size: 299×220px

Appendices — Device-Specific Features

§46

TMH Series

tmh modular autonics

Autonics TMH Series (Modular Multi-Channel Temperature / Process Controller) special features: module scan to detect attached control/option modules, MAC address display, parameter user-group setting per module type, firmware version management, and version-combination-based configuration (newer modules unlock extra parameters).

TMH Series screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 237  ·  source image: img_p237_00.jpeg  ·  native size: 307×393px
§47

TN Series

tn pid autonics

Autonics TN Series (Multi-Channel PID Temperature Controller) special features: pattern step programming, PLC ladderless integration, batch profile upload/download. Used in reflow ovens, environmental chambers, semiconductor processing.

TN Series screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 253  ·  source image: img_p253_00.png  ·  native size: 955×626px
§48

DS-T Series

ds-t counter timer autonics

Autonics DS/DA-T Series (Digital Counter / Timer) special features: DPU (Display Processing Unit) configuration for custom scaling and display logic, preset values, count modes, output configuration.

DS-T Series screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 257  ·  source image: img_p257_00.jpeg  ·  native size: 311×267px
§49

DS-C Series

ds-c display autonics

Autonics DS/DA-C Series (Display Unit) special features: input scaling, display configuration, output mode setting, communication parameter upload/download.

DS-C Series screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 263  ·  source image: img_p263_00.png  ·  native size: 599×212px
§50

SCM-WF48 Series

scm-wf48 wireless iot-gateway autonics

Autonics SCM-WF48 (Wireless Sensor-to-Cloud Gateway) special features: distinguishing new vs. old hardware revisions, communication mode setup, utility tools, firmware upgrade workflow. The gateway bridges IO-Link/Wireless sensors to Ethernet protocols.

SCM-WF48 Series screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 267  ·  source image: img_p267_00.png  ·  native size: 832×514px
§51

KRN50 Series

krn50 recorder backup autonics

Autonics KRN50 (50mm Hybrid Paperless Recorder) special features: accessing internal record backup data for analysis, downloading user images (logos, background graphics) into the recorder's display. KRN50 is a panel-mount recorder with 4–8 channels.

KRN50 Series screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 283  ·  source image: img_p283_00.jpeg  ·  native size: 311×592px
§52

KRN100 Series

krn100 recorder backup autonics

Autonics KRN100 (100mm Paperless Recorder) special features: same as KRN50 (record backup access, user image download) but for the larger 100mm form factor. 4–8 channels, color TFT display.

KRN100 Series screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 287  ·  source image: img_p287_00.png  ·  native size: 311×489px
§53

KRN1000 Series

krn1000 recorder backup autonics

Autonics KRN1000 (1000 Series Paperless Recorder, large format) special features: log data backup from the unit's internal memory. Higher channel count, modular expansion.

KRN1000 Series screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 291  ·  source image: img_p291_00.png  ·  native size: 311×551px
§54

ARIO Series

ario io-link remote-io autonics

Autonics ARIO (IO-Link Master / Remote I/O) special features: communication mode configuration, property and parameter setting, input/output signal control and monitoring, tag monitoring for IO-Link devices, address map view, coupler firmware update, and virtual mode for offline configuration.

ARIO Series screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 295  ·  source image: img_p295_00.png  ·  native size: 971×629px
§55

B7VA Series

b7va playlist sequence autonics

Autonics B7VA (Multi-Channel Display / Playlist Controller) special features: property configuration, playlist creation, editing, export/import. Used in test stands where a sequence of setpoints is played back.

B7VA Series screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 309  ·  source image: img_p309_00.png  ·  native size: 997×632px
§56

SPRM/SPRS Series

sprm sprs alarms autonics

Autonics SPRM/SPRS (Sensor / Power Controller) special features: alarm history with a special rule — all alarms occurring within 1 minute of an alarm-onset transition are grouped. This avoids log spam during transient bursts.

SPRM/SPRS Series screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 315  ·  source image: img_p315_00.png  ·  native size: 288×306px
§57

BFNC Series

bfnc counter batch autonics

Autonics BFNC (Counter / Timer Family) special features: parameter entry via Setting dialog, batch operations (Load All, Save All, Teaching All, Copy) for fast commissioning of multi-channel installations.

BFNC Series screenshot from DAQMaster manual
Reference: DAQMaster User Manual MWA-DAQU1-V6.0-EN, page 321  ·  source image: img_p321_00.png  ·  native size: 439×641px