Skip to main content

Naming Conventions

While not mandatory, it is recommended to adopt the following naming conventions for clarity and usability:
  • Read Operations: Prefix register names with measure. to signify that the register is used to read the contactor state.
See the example address map below for register naming conventions.

Required Parameters

name
string
required
A unique name for the register.Example: measure.contactor
address
int
required
Corresponds to the number on the digital input module.Example: 0
Please note that the address should start from 0, not from 1. However, the physical address on the I/O module begins at 1.
type
string
required
Indicates whether the register is an input or an output.Options: input | output

Required Registers

measure.contactor
string
required
This register is used to measure the contactor’s status.

Example

contactor_address_map.json
[
  {
    "name": "measure.contactor",
    "address": 0,
    "type": "input"
  }
]