added unipi plugin

This commit is contained in:
Boernsman 2020-10-22 13:37:01 +02:00
parent f9cbc4b74a
commit 8247e33a03
112 changed files with 12137 additions and 0 deletions

18
debian/control vendored
View File

@ -10,6 +10,7 @@ Build-depends: debhelper (>= 9.0.0),
pkg-config,
qtbase5-dev,
qt5-default,
libi2c-dev
Standards-Version: 3.9.3
@ -75,6 +76,23 @@ Description: nymea.io plugin for SunSpec Modbus devices.
.
This package will install the nymea.io plugin for SunSpec.
Package: nymea-plugin-unipi2
Architecture: any
Multi-Arch: same
Section: libs
Depends: ${shlibs:Depends},
${misc:Depends},
wiringpi,
Replaces: nymea-plugin-unipi
Description: nymea.io plugin for UniPi devices
The nymea daemon is a plugin based IoT (Internet of Things) server. The
server works like a translator for devices, things and services and
allows them to interact.
With the powerful rule engine you are able to connect any device available
in the system and create individual scenes and behaviors for your environment.
.
This package will install the nymea.io plugin for unipi devices
Package: nymea-plugin-wallbe
Architecture: any

2
debian/nymea-plugin-unipi2.install.in vendored Normal file
View File

@ -0,0 +1,2 @@
usr/lib/@DEB_HOST_MULTIARCH@/nymea/plugins/libnymea_integrationpluginunipi.so
modbus_maps/* usr/share/nymea/modbus

View File

@ -5,6 +5,7 @@ PLUGIN_DIRS = \
modbuscommander \
mypv \
sunspec \
unipi \
wallbe \
message(============================================)

48
unipi/README.md Normal file
View File

@ -0,0 +1,48 @@
# UniPi
Supports UniPi 1.1, UniPi Lite and all Neuron models as well as the Neuron extensions.
This plug-in does not make use of Evok, it communicates
directly with the Modbus TCP layer, or over Modbus RTU with the Neuron extensions.
To add one-wire devices, use the nymea onewire plug-in.
## Supported Things
* UniPi 1.1
* UniPi 1.1 light
* Neuron
* all models
* Neuron Extensions
* all models
General Features:
* No internet connection required
* Switch digital outputs
* Read digital inputs
* Switch user led
* Set analog outputs
* Read analog inputs
## Requirements
* UniPi 1.1 & UniPi 1.1 light
* Neuron
* Neuron TCP modbus server must be installed.
* Neuron Extensions
* Set the DIP settings accordind to the plug-in settings
* General requirements:
* The package "nymea-plugin-unipi2" must be installed
* For one-wire sensors the package "nymea-plugin-onewire" must be installed.
### Device setup for Neuron devices
The nymea unipi plug-in requires the Neuron UniPi Kernel for Neuron devices, this is not required for Neuron Extensions or UniPi 1.1. To install the kernel module follow the instuctions in the UniPi knowledge base.
https://kb.unipi.technology/en:sw:04-unipi-firmware
Before you can add IOs you need to setup the UniPi Gateway device inside nymea, after that nymea
recognises the available IOs.
## More
https://www.unipi.technology

45
unipi/gpiodescriptor.cpp Normal file
View File

@ -0,0 +1,45 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* Copyright (C) 2016 Simon Stürz <simon.stuerz@guh.io> *
* *
* This file is part of nymea. *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2.1 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; If not, see *
* <http://www.gnu.org/licenses/>. *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "gpiodescriptor.h"
GpioDescriptor::GpioDescriptor(const int &gpio, const int &pin, const QString &description):
m_gpio(gpio),
m_pin(pin),
m_description(description)
{
}
int GpioDescriptor::gpio() const
{
return m_gpio;
}
int GpioDescriptor::pin() const
{
return m_pin;
}
QString GpioDescriptor::description() const
{
return m_description;
}

43
unipi/gpiodescriptor.h Normal file
View File

@ -0,0 +1,43 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* Copyright (C) 2016 Simon Stürz <simon.stuerz@guh.io> *
* *
* This file is part of nymea. *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2.1 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; If not, see *
* <http://www.gnu.org/licenses/>. *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef GPIODESCRIPTOR_H
#define GPIODESCRIPTOR_H
#include <QString>
class GpioDescriptor
{
public:
GpioDescriptor(const int &gpio, const int &pin, const QString &description = QString());
int gpio() const;
int pin() const;
QString description() const;
private:
int m_gpio;
int m_pin;
QString m_description;
};
#endif // GPIODESCRIPTOR_H

186
unipi/i2cport.cpp Normal file
View File

@ -0,0 +1,186 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* Copyright 2013 - 2020, nymea GmbH
* Contact: contact@nymea.io
*
* This file is part of nymea.
* This project including source code and documentation is protected by
* copyright law, and remains the property of nymea GmbH. All rights, including
* reproduction, publication, editing and translation, are reserved. The use of
* this project is subject to the terms of a license agreement to be concluded
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
* under https://nymea.io/license
*
* GNU Lesser General Public License Usage
* Alternatively, this project may be redistributed and/or modified under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; version 3. This project is distributed in the hope that
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this project. If not, see <https://www.gnu.org/licenses/>.
*
* For any further details and any questions please contact us under
* contact@nymea.io or see our FAQ/Licensing Information on
* https://nymea.io/license/faq
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "i2cport.h"
#include "i2cport_p.h"
#include "loggingcategories.h"
extern "C" {
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/syscall.h>
#include <linux/i2c-dev.h>
#include <i2c/smbus.h>
}
#include <QDir>
I2CPort::I2CPort(const QString &portName, QObject *parent) :
QObject(parent),
d_ptr(new I2CPortPrivate(this))
{
d_ptr->portDeviceName = "/dev/" + portName;
d_ptr->fileDescriptor.setFileName(d_ptr->portDeviceName);
}
QStringList I2CPort::availablePorts()
{
return QDir("/sys/class/i2c-adapter/").entryList(QDir::Dirs | QDir::NoDotAndDotDot, QDir::Name);
}
QList<int> I2CPort::scanRegirsters()
{
return d_ptr->scanRegirsters();
}
int I2CPort::deviceDescriptor() const
{
return d_ptr->deviceDescriptor;
}
int I2CPort::address() const
{
return d_ptr->address;
}
QString I2CPort::portName() const
{
return d_ptr->portName;
}
QString I2CPort::portDeviceName() const
{
return d_ptr->portDeviceName;
}
bool I2CPort::isOpen() const
{
return d_ptr->isOpen();
}
bool I2CPort::isValid() const
{
return d_ptr->isValid();
}
bool I2CPort::openPort(int i2cAddress)
{
return d_ptr->openPort(i2cAddress);
}
void I2CPort::closePort()
{
return d_ptr->closePort();
}
I2CPortPrivate::I2CPortPrivate(I2CPort *q) :
QObject(q),
q_ptr(q)
{
}
QList<int> I2CPortPrivate::scanRegirsters()
{
qCDebug(dcHardware()) << "Scanning I2C device" << portDeviceName;
// Note: these methods are only available on arm since libi2c-dev package is different on amd64 and i386
QList<int> addressList;
#ifdef __arm__
for (int address = 0x3; address <= 0x77; address++) {
// Check if ioctl possible
if (ioctl(deviceDescriptor, I2C_SLAVE, address) >= 0) {
i2c_smbus_write_byte(deviceDescriptor, 0x00);
int id = i2c_smbus_read_byte(deviceDescriptor);
if (id >= 0) {
qCDebug(dcHardware()) << QString(" --> found address = 0x%1").arg(address, 0, 16);
addressList.append(address);
}
}
}
#else
qCWarning(dcHardware()) << "This hardware architecture does not support I2C.";
#endif
return addressList;
}
bool I2CPortPrivate::isOpen() const
{
return fileDescriptor.isOpen();
}
bool I2CPortPrivate::isValid() const
{
return valid;
}
bool I2CPortPrivate::openPort(int i2cAddress)
{
if (fileDescriptor.isOpen()) {
qCWarning(dcHardware()) << "The given I2C file descriptor is already open:" << fileDescriptor.fileName();
return false;
}
if (!fileDescriptor.exists()) {
qCWarning(dcHardware()) << "The given I2C file descriptor does not exist:" << fileDescriptor.fileName();
return false;
}
if (!fileDescriptor.open(QFile::ReadWrite)) {
qCWarning(dcHardware()) << "Could not open the given I2C file descriptor:" << fileDescriptor.fileName();
return false;
}
deviceDescriptor = fileDescriptor.handle();
// if (ioctl(deviceDescriptor, I2C_SLAVE, i2cAddress) < 0) {
// qCWarning(dcHardware()) << "Could not set I2C into slave mode" << portDeviceName << QString("0x%1").arg(i2cAddress, 0, 16);
// closePort();
// return false;
// }
address = i2cAddress;
valid = true;
return true;
}
void I2CPortPrivate::closePort()
{
if (fileDescriptor.isOpen()) {
fileDescriptor.close();
}
deviceDescriptor = -1;
valid = false;
}

65
unipi/i2cport.h Normal file
View File

@ -0,0 +1,65 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* Copyright 2013 - 2020, nymea GmbH
* Contact: contact@nymea.io
*
* This file is part of nymea.
* This project including source code and documentation is protected by
* copyright law, and remains the property of nymea GmbH. All rights, including
* reproduction, publication, editing and translation, are reserved. The use of
* this project is subject to the terms of a license agreement to be concluded
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
* under https://nymea.io/license
*
* GNU Lesser General Public License Usage
* Alternatively, this project may be redistributed and/or modified under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; version 3. This project is distributed in the hope that
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this project. If not, see <https://www.gnu.org/licenses/>.
*
* For any further details and any questions please contact us under
* contact@nymea.io or see our FAQ/Licensing Information on
* https://nymea.io/license/faq
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef I2CPORT_H
#define I2CPORT_H
#include <QObject>
class I2CPortPrivate;
class I2CPort : public QObject
{
Q_OBJECT
public:
explicit I2CPort(const QString &portName, QObject *parent = nullptr);
static QStringList availablePorts();
QList<int> scanRegirsters();
int deviceDescriptor() const;
int address() const;
QString portName() const;
QString portDeviceName() const;
bool isOpen() const;
bool isValid() const;
public slots:
bool openPort(int i2cAddress = 0);
void closePort();
private:
I2CPortPrivate *d_ptr = nullptr;
};
#endif // I2CPORT_H

67
unipi/i2cport_p.h Normal file
View File

@ -0,0 +1,67 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* Copyright 2013 - 2020, nymea GmbH
* Contact: contact@nymea.io
*
* This file is part of nymea.
* This project including source code and documentation is protected by
* copyright law, and remains the property of nymea GmbH. All rights, including
* reproduction, publication, editing and translation, are reserved. The use of
* this project is subject to the terms of a license agreement to be concluded
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
* under https://nymea.io/license
*
* GNU Lesser General Public License Usage
* Alternatively, this project may be redistributed and/or modified under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; version 3. This project is distributed in the hope that
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this project. If not, see <https://www.gnu.org/licenses/>.
*
* For any further details and any questions please contact us under
* contact@nymea.io or see our FAQ/Licensing Information on
* https://nymea.io/license/faq
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef I2CPORT_P_H
#define I2CPORT_P_H
#include <QFile>
#include <QObject>
#include <QString>
#include "i2cport.h"
class I2CPortPrivate : public QObject
{
Q_OBJECT
public:
explicit I2CPortPrivate(I2CPort *q);
I2CPort *q_ptr;
QList<int> scanRegirsters();
bool isOpen() const;
bool isValid() const;
public slots:
bool openPort(int address);
void closePort();
public:
QFile fileDescriptor;
int deviceDescriptor = -1;
int address;
bool valid = false;
QString portName;
QString portDeviceName;
};
#endif // I2CPORT_P_H

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,109 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* Copyright 2013 - 2020, nymea GmbH
* Contact: contact@nymea.io
*
* This file is part of nymea.
* This project including source code and documentation is protected by
* copyright law, and remains the property of nymea GmbH. All rights, including
* reproduction, publication, editing and translation, are reserved. The use of
* this project is subject to the terms of a license agreement to be concluded
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
* under https://nymea.io/license
*
* GNU Lesser General Public License Usage
* Alternatively, this project may be redistributed and/or modified under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; version 3. This project is distributed in the hope that
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this project. If not, see <https://www.gnu.org/licenses/>.
*
* For any further details and any questions please contact us under
* contact@nymea.io or see our FAQ/Licensing Information on
* https://nymea.io/license/faq
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef INTEGRATIONPLUGINUNIPI_H
#define INTEGRATIONPLUGINUNIPI_H
#include "integrations/integrationplugin.h"
#include "plugintimer.h"
#include "unipi.h"
#include "neuron.h"
#include "neuronextension.h"
#include <QTimer>
#include <QtSerialBus>
#include <QHostAddress>
#include <QUuid>
class IntegrationPluginUniPi : public IntegrationPlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "io.nymea.IntegrationPlugin" FILE "integrationpluginunipi.json")
Q_INTERFACES(IntegrationPlugin)
public:
explicit IntegrationPluginUniPi();
void init() override;
void discoverThings(ThingDiscoveryInfo *info) override;
void setupThing(ThingSetupInfo *info) override;
void postSetupThing(Thing *thing) override;
void executeAction(ThingActionInfo *info) override;
void thingRemoved(Thing *thing) override;
private:
UniPi *m_unipi = nullptr;
QHash<ThingId, Neuron *> m_neurons;
QHash<ThingId, NeuronExtension *> m_neuronExtensions;
QModbusTcpClient *m_modbusTCPMaster = nullptr;
QModbusRtuSerialMaster *m_modbusRTUMaster = nullptr;
QHash<Thing *, QTimer *> m_unlatchTimer;
QTimer *m_reconnectTimer = nullptr;
QHash<QUuid, ThingActionInfo *> m_asyncActions;
QHash<ThingClassId, StateTypeId> m_connectionStateTypeIds;
bool neuronDeviceInit();
bool neuronExtensionInterfaceInit();
private slots:
void onPluginConfigurationChanged(const ParamTypeId &paramTypeId, const QVariant &value);
void onRequestExecuted(const QUuid &requestId, bool success);
void onRequestError(const QUuid &requestId, const QString &error);
void onNeuronConnectionStateChanged(bool state);
void onNeuronDigitalInputStatusChanged(const QString &circuit, bool value);
void onNeuronDigitalOutputStatusChanged(const QString &circuit, bool value);
void onNeuronAnalogInputStatusChanged(const QString &circuit, double value);
void onNeuronAnalogOutputStatusChanged(const QString &circuit,double value);
void onNeuronUserLEDStatusChanged(const QString &circuit, bool value);
void onNeuronExtensionConnectionStateChanged(bool state);
void onNeuronExtensionDigitalInputStatusChanged(const QString &circuit, bool value);
void onNeuronExtensionDigitalOutputStatusChanged(const QString &circuit, bool value);
void onNeuronExtensionAnalogInputStatusChanged(const QString &circuit, double value);
void onNeuronExtensionAnalogOutputStatusChanged(const QString &circuit,double value);
void onNeuronExtensionUserLEDStatusChanged(const QString &circuit, bool value);
void onReconnectTimer();
void onModbusTCPStateChanged(QModbusDevice::State state);
void onModbusRTUStateChanged(QModbusDevice::State state);
void onUniPiDigitalInputStatusChanged(const QString &circuit, bool value);
void onUniPiDigitalOutputStatusChanged(const QString &circuit, bool value);
void onUniPiAnalogInputStatusChanged(const QString &circuit, double value);
void onUniPiAnalogOutputStatusChanged(double value);
};
#endif // INTEGRATIONPLUGINUNIPI_H

View File

@ -0,0 +1,643 @@
{
"displayName": "UniPi",
"name": "UniPi",
"id": "26cba644-35ae-40a6-9c48-924198893a5f",
"paramTypes": [
{
"id": "5329655d-7e91-4b16-9abf-2abc82bf1b3c",
"name": "port",
"displayName": "Port",
"type": "int",
"defaultValue": "502"
},
{
"id": "fa9d0407-72fd-4f61-ae8d-c95241ddb610",
"name": "address",
"displayName": "Address",
"type": "QString",
"defaultValue": "127.0.0.1"
},
{
"id": "1e34aec6-0ff4-400d-80ff-32094612b325",
"name": "serialPort",
"displayName": "Serial port",
"type": "QString",
"defaultValue": "/dev/extcomm/0/0"
},
{
"id": "a05aaedf-5345-4ab4-b471-8c7d106b473e",
"name": "baudrate",
"displayName": "Baudrate",
"type": "int",
"defaultValue": 19200
},
{
"id": "24323f2c-87f9-4b46-aca9-9c98ca731008",
"name": "parity",
"displayName": "Parity",
"type": "QString",
"allowedValues": [
"None",
"Even"
],
"defaultValue": "None"
}
],
"vendors": [
{
"displayName": "UniPi",
"name": "unipi",
"id": "c82bfe27-d14d-40bd-b12f-ddba214b5fc5",
"thingClasses": [
{
"id": "f9f5d5eb-a768-40da-af62-55b0b486a5e5",
"name": "uniPi1",
"displayName": "UniPi 1",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
],
"stateTypes": [
{
"id": "6f4914c1-fce8-4b7a-a73b-ad8a2f4a08ec",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"defaultValue": false,
"cached": false
}
]
},
{
"id": "6ecc110c-f8dc-48af-affd-feef7944421d",
"name": "uniPi1Lite",
"displayName": "UniPi 1 Lite",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
],
"stateTypes": [
{
"id": "ab505f67-35b8-4ca5-87a8-883ee85506b7",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"defaultValue": false,
"cached": false
}
]
},
{
"id": "72637166-6730-4b2c-9b5d-4d2066c2fea8",
"name": "neuronL403",
"displayName": "Neuron L403",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
],
"stateTypes": [
{
"id": "5d11bb59-da27-42ac-a176-27215068bd6d",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"defaultValue": false,
"cached": false
}
]
},
{
"id": "c28dc232-6797-4aff-83dd-8d811d485482",
"name": "neuronS103",
"displayName": "Neuron S103",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
],
"stateTypes": [
{
"id": "e650bb92-2dff-44e2-9500-657efba14492",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"defaultValue": false,
"cached": false
}
]
},
{
"id": "58632506-8d06-4ad0-98d0-275ef8a88955",
"name": "neuronM103",
"displayName": "Neuron M103",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
],
"stateTypes": [
{
"id": "8ad0d4b2-8256-41a9-8438-003216383215",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"defaultValue": false,
"cached": false
}
]
},
{
"id": "d254dbed-4cf0-4fe3-96da-9adfd8d1c912",
"name": "neuronM203",
"displayName": "Neuron M203",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
],
"stateTypes": [
{
"id": "c7318db4-ba50-4b80-95a7-2a890eaa16c4",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"defaultValue": false,
"cached": false
}
]
},
{
"id": "6ee92fd5-c169-4050-aa3c-d8289bee20ec",
"name": "neuronM303",
"displayName": "Neuron M303",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
],
"stateTypes": [
{
"id": "80528228-7ecd-444f-be59-e2ff89cb20a1",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"defaultValue": false,
"cached": false
}
]
},
{
"id": "0621f5f1-8531-4d44-800e-52f926c58b17",
"name": "neuronM403",
"displayName": "Neuron M403",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
],
"stateTypes": [
{
"id": "0eb77f43-dc85-450f-ab2c-d150a739570d",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"defaultValue": false,
"cached": false
}
]
},
{
"id": "0d5a09de-daf8-469f-803c-520f763167df",
"name": "neuronM503",
"displayName": "Neuron M503",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
],
"stateTypes": [
{
"id": "688d21a7-7658-4874-b02b-9340b2c9ba12",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"defaultValue": false,
"cached": false
}
]
},
{
"id": "366bac45-c602-4c45-9812-1d3d04b2c3db",
"name": "neuronL203",
"displayName": "Neuron L203",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
],
"stateTypes": [
{
"id": "515a70d3-d599-426f-88a2-c5a651420812",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"defaultValue": false
}
]
},
{
"id": "fc1a9aab-8573-42fe-8ed4-4876795870c2",
"name": "neuronL303",
"displayName": "Neuron L303",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
],
"stateTypes": [
{
"id": "3a020c62-e5f9-4909-98d4-5538a8d43d9d",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"cached": false,
"defaultValue": false
}
]
},
{
"id": "58d33a7f-30ac-4d79-94a1-2013dc50743e",
"name": "neuronL503",
"displayName": "Neuron L503",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
],
"stateTypes": [
{
"id": "5e689958-02f0-4e0a-9bb3-e04a6fe1dd30",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"defaultValue": false
}
]
},
{
"id": "4b57e164-5f62-4518-afc1-15a659a2c402",
"name": "neuronL513",
"displayName": "Neuron L513",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
],
"stateTypes": [
{
"id": "fa82f6cc-4308-4d8b-96c1-2fb1a638e04d",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"cached": false,
"defaultValue": false
}
]
},
{
"id": "9bfe46d0-5dbd-432c-877f-1ff47faf6e17",
"name": "neuronXS10",
"displayName": "Neuron xS10",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
{
"id": "c105e97a-1e00-44fd-ac10-d43e731e43b0",
"name": "slaveAddress",
"displayName": "Modbus slave address",
"type": "int",
"defaultValue": 1
}
],
"stateTypes": [
{
"id": "caf378cd-eb86-4779-8618-6f9c2bd58c17",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"cached": false,
"defaultValue": false
}
]
},
{
"id": "9e2e13bb-c18c-438f-989f-52363561ce85",
"name": "neuronXS20",
"displayName": "Neuron xS20",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
{
"id": "a5c97b47-580b-4ea3-8755-ef68380f5c2a",
"name": "slaveAddress",
"displayName": "Modbus slave address",
"type": "int",
"defaultValue": 1
}
],
"stateTypes": [
{
"id": "7afb047f-4ca4-469c-9171-b6de52d27504",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"cached": false,
"defaultValue": false
}
]
},
{
"id": "a1ec57b1-fcf9-4540-80c9-40f78cddc85f",
"name": "neuronXS30",
"displayName": "Neuron xS30",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
{
"id": "956254a2-83f5-4f3c-8e79-e1b009a7e203",
"name": "slaveAddress",
"displayName": "Modbus slave address",
"type": "int",
"defaultValue": 1
}
],
"stateTypes": [
{
"id": "ed1adb91-54ec-430b-96ca-fb5ef5cf6628",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"cached": false,
"defaultValue": false
}
]
},
{
"id": "05c78946-48f4-4e1b-9d45-90fbd66c71c0",
"name": "neuronXS40",
"displayName": "Neuron xS40",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
{
"id": "6b2da1ee-5cae-4325-913e-21d26d5909c3",
"name": "slaveAddress",
"displayName": "Modbus slave address",
"type": "int",
"defaultValue": 1
}
],
"stateTypes": [
{
"id": "7caea8c3-ac29-42fb-835b-beec7fa1ce20",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"cached": false,
"defaultValue": false
}
]
},
{
"id": "c31f5e8c-a27c-49db-b5a8-dd065336b79a",
"name": "neuronXS50",
"displayName": "Neuron xS50",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
{
"id": "6d01f6b3-7c3c-4fc8-acf2-dc9811340a76",
"name": "slaveAddress",
"displayName": "Modbus slave address",
"type": "int",
"defaultValue": 1
}
],
"stateTypes": [
{
"id": "25b0eaa7-14eb-49ea-a869-13b1ea3bd294",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"cached": false,
"defaultValue": false
}
]
},
{
"id": "f59bfba2-0455-49f2-b92d-badfec5dcc01",
"name": "neuronXS11",
"displayName": "Neuron xS11",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
{
"id": "5b8d8149-f08a-451e-9766-08966f7f91c1",
"name": "slaveAddress",
"displayName": "Modbus slave address",
"type": "int",
"defaultValue": 1
}
],
"stateTypes": [
{
"id": "bf1acd53-f3c9-4654-a220-d36eb130cda2",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"cached": false,
"defaultValue": false
}
]
},
{
"id": "0e11fbd3-8d4a-4fd8-aeeb-25ee2d134a17",
"name": "neuronXS51",
"displayName": "Neuron xS51",
"createMethods": ["user"],
"interfaces": ["gateway"],
"paramTypes": [
{
"id": "8f40b075-ebed-4ce1-b9e7-a37bb31656c4",
"name": "slaveAddress",
"displayName": "Modbus slave address",
"type": "int",
"defaultValue": 1
}
],
"stateTypes": [
{
"id": "f95875de-d5d5-4e7f-8873-3fe2615a0b11",
"name": "connected",
"displayName": "Connected",
"displayNameEvent": "Connection changed",
"type": "bool",
"cached": false,
"defaultValue": false
}
]
},
{
"id": "0bec278a-98f1-416b-b496-6d00740f178a",
"name": "digitalInput",
"displayName": "Digital input",
"createMethods": ["discovery"],
"interfaces": [ ],
"paramTypes": [
{
"id": "9c84d9b8-fdc7-41c1-9559-08f061ffc7a6",
"name": "circuit",
"displayName": "Circuit",
"type": "QString"
}
],
"stateTypes": [
{
"id": "fa4f2764-b7ff-45e7-993b-b6af1840fd3d",
"name": "inputStatus",
"displayName": "Digital input",
"displayNameEvent": "Digital input changed",
"type": "bool",
"defaultValue": false,
"ioType": "digitalInput"
}
]
},
{
"id": "f3a3c5ed-461a-4ca8-930b-df3af821b9e0",
"name": "digitalOutput",
"displayName": "Digital output",
"createMethods": ["discovery"],
"interfaces": ["power"],
"paramTypes": [
{
"id": "c01d5bde-de5d-42c5-b462-79745827875a",
"name": "circuit",
"displayName": "Circuit",
"type": "QString"
}
],
"stateTypes": [
{
"id": "470a0e30-a170-47ed-9ed3-c41db919555f",
"name": "power",
"displayName": "Power",
"displayNameAction": "set digital output",
"displayNameEvent": "digital output changed",
"type": "bool",
"defaultValue": false,
"writable": true,
"ioType": "digitalOutput"
}
]
},
{
"id": "9094a69f-f475-4050-a345-5ab52cb19774",
"name": "analogOutput",
"displayName": "Analog output",
"createMethods": ["discovery"],
"interfaces": [ ],
"paramTypes": [
{
"id": "46e606cc-67ee-4891-bc39-8fb0565c87da",
"name": "circuit",
"displayName": "Circuit",
"type": "QString"
}
],
"stateTypes": [
{
"id": "6d825eb8-6d2a-4ac3-9125-9df8173116c9",
"name": "outputValue",
"displayName": "Analog output",
"displayNameEvent": "Analog output changed",
"displayNameAction": "Set analog output",
"type": "double",
"unit": "Volt",
"minValue": 0.00,
"maxValue": 10.00,
"defaultValue": 0.00,
"writable": true,
"ioType": "analogOutput"
}
]
},
{
"id": "06abd6a4-e655-4243-bc9c-9bd4ef5be2e6",
"name": "analogInput",
"displayName": "Analog Input",
"createMethods": ["discovery"],
"interfaces": [ ],
"paramTypes": [
{
"id": "cc6eb664-9fd2-457d-9d0d-0eb9703db4a2",
"name": "circuit",
"displayName": "Circuit",
"type": "QString"
}
],
"stateTypes": [
{
"id": "2296f575-cc53-48ef-9086-6a412abfdde5",
"name": "inputValue",
"displayName": "Analog input",
"displayNameEvent": "Analog input changed",
"type": "double",
"unit": "Volt",
"defaultValue": 0.00,
"minValue": 0.00,
"maxValue": 10.00,
"ioType": "analogInput"
}
]
},
{
"id": "6a87e9b3-7f3d-4b7c-8958-905ec039ef57",
"name": "userLED",
"displayName": "User LED",
"createMethods": ["discovery"],
"interfaces": ["power"],
"paramTypes": [
{
"id": "88fffbd6-6469-47ce-bfba-700da90a6075",
"name": "circuit",
"displayName": "Circuit",
"type": "QString"
}
],
"stateTypes": [
{
"id": "38878388-9a2e-45b0-8f3e-c25073c9dc1d",
"name": "power",
"displayName": "Power",
"displayNameAction": "set digital output",
"displayNameEvent": "digital output changed",
"type": "bool",
"defaultValue": false,
"writable": true
}
]
}
]
}
]
}

117
unipi/mcp23008.cpp Normal file
View File

@ -0,0 +1,117 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* Copyright 2013 - 2020, nymea GmbH
* Contact: contact@nymea.io
*
* This file is part of nymea.
* This project including source code and documentation is protected by
* copyright law, and remains the property of nymea GmbH. All rights, including
* reproduction, publication, editing and translation, are reserved. The use of
* this project is subject to the terms of a license agreement to be concluded
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
* under https://nymea.io/license
*
* GNU Lesser General Public License Usage
* Alternatively, this project may be redistributed and/or modified under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; version 3. This project is distributed in the hope that
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this project. If not, see <https://www.gnu.org/licenses/>.
*
* For any further details and any questions please contact us under
* contact@nymea.io or see our FAQ/Licensing Information on
* https://nymea.io/license/faq
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "mcp23008.h"
#include "i2cport.h"
#include "extern-plugininfo.h"
extern "C" {
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/syscall.h>
#include <linux/i2c-dev.h>
#include <i2c/smbus.h>
}
MCP23008::MCP23008(const QString &i2cPortName, int i2cAddress, QObject *parent) :
QObject(parent),
m_i2cPortName(i2cPortName),
m_i2cAddress(i2cAddress)
{
}
MCP23008::~MCP23008()
{
m_i2cFile.close();
}
bool MCP23008::init()
{
qCDebug(dcUniPi()) << "MCP23008: initialize I2C port" << m_i2cPortName << QString("0x%1").arg(m_i2cAddress, 0, 16);
m_i2cFile.setFileName("/dev/" + m_i2cPortName);
if (!m_i2cFile.exists()) {
qCWarning(dcUniPi()) << "MCP23008: The given I2C file descriptor does not exist:" << m_i2cFile.fileName();
return false;
}
if (!m_i2cFile.open(QFile::ReadWrite)) {
qCWarning(dcUniPi()) << "MCP23008: Could not open the given I2C file descriptor:" << m_i2cFile.fileName() << m_i2cFile.errorString();
return false;
}
m_fileDescriptor = m_i2cFile.handle();
return true;
}
bool MCP23008::writeRegister(MCP23008::RegisterAddress registerAddress, uint8_t value)
{
#ifdef __arm__
if (ioctl(m_fileDescriptor, I2C_SLAVE, m_i2cAddress) < 0) {
qCWarning(dcUniPi()) << "MCP23008: Could not set I2C into slave mode" << m_i2cPortName << QString("0x%1").arg(m_i2cAddress, 0, 16);
return false;
}
// Write command
int length = i2c_smbus_write_byte_data(m_fileDescriptor, registerAddress, value);
if (length < 0) {
qCWarning(dcUniPi()) << "MCP23008: Could not sent command to I2C bus.";
return false;
}
return true;
#else
Q_UNUSED(value)
Q_UNUSED(registerAddress)
return false;
#endif // __arm__
}
bool MCP23008::readRegister(RegisterAddress registerAddress, uint8_t *value)
{
#ifdef __arm__
if (ioctl(m_fileDescriptor, I2C_SLAVE, m_i2cAddress) < 0) {
qCWarning(dcUniPi()) << "MCP23008: Could not set I2C into slave mode" << m_i2cPortName << QString("0x%1").arg(m_i2cAddress, 0, 16);
return false;
}
*value = i2c_smbus_read_byte_data(m_fileDescriptor, registerAddress);
return true;
#else
Q_UNUSED(registerAddress)
Q_UNUSED(value)
return false;
#endif // __arm__
}

81
unipi/mcp23008.h Normal file
View File

@ -0,0 +1,81 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* Copyright 2013 - 2020, nymea GmbH
* Contact: contact@nymea.io
*
* This file is part of nymea.
* This project including source code and documentation is protected by
* copyright law, and remains the property of nymea GmbH. All rights, including
* reproduction, publication, editing and translation, are reserved. The use of
* this project is subject to the terms of a license agreement to be concluded
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
* under https://nymea.io/license
*
* GNU Lesser General Public License Usage
* Alternatively, this project may be redistributed and/or modified under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; version 3. This project is distributed in the hope that
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this project. If not, see <https://www.gnu.org/licenses/>.
*
* For any further details and any questions please contact us under
* contact@nymea.io or see our FAQ/Licensing Information on
* https://nymea.io/license/faq
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef MCP23008_H
#define MCP23008_H
#include <QObject>
#include <QFile>
class MCP23008 : public QObject
{
Q_OBJECT
public:
enum Pinout {
GP0 = 0x00,
GP1 = 0x01,
GP2 = 0x02,
GP3 = 0x03
};
Q_ENUM(Pinout)
enum RegisterAddress {
IODIR = 0x00, //Controls the direction of the data I/O. When a bit is set, the corresponding pin becomes an input. When a bit is clear, the corresponding pin becomes an output.
IPOL = 0x01, //The IPOL register allows the user to configure the polarity on the corresponding GPIO port bits. If a bit is set, the corresponding GPIO register bit will reflect the inverted value on the pin.
GPINTEN = 0x02, //The GPINTEN register controls the interrupt-on- change feature for each pin. If a bit is set, the corresponding pin is enabled for interrupt-on-change. The DEFVAL and INTCON registers must also be configured if any pins are enabled for interrupt-on-change.
DEFVAL = 0x03, //The default comparison value is configured in the DEFVAL register. If enabled (via GPINTEN and INTCON) to compare against the DEFVAL register, an opposite value on the associated pin will cause an interrupt to occur.
INTCON = 0x04, //The INTCON register controls how the associated pin value is compared for the interrupt-on-change feature. If a bit is set, the corresponding I/O pin is compared against the associated bit in the DEFVAL register. If a bit value is clear, the corresponding I/O pin is compared against the previous value.
IOCON = 0x05, //The IOCON register contains several bits for configuring the device:
GPPU = 0x06, //The GPPU register controls the pull-up resistors for the port pins. If a bit is set and the corresponding pin is configured as an input, the corresponding port pin is internally pulled up with a 100 kΩ resistor.
INTF = 0x07, //The INTF register reflects the interrupt condition on the port pins of any pin that is enabled for interrupts via the GPINTEN register. A set bit indicates that the associated pin caused the interrupt. This register is read-only. Writes to this register will be ignored.
INTCAP = 0x08, //The INTCAP register captures the GPIO port value at the time the interrupt occurred. The register is read- only and is updated only when an interrupt occurs. The register will remain unchanged until the interrupt is cleared via a read of INTCAP or GPIO.
GPIO = 0x09, //GENERAL PURPOSE I/O PORT REGISTER
OLAT = 0x0A //The OLAT register provides access to the output latches. A read from this register results in a read of the OLAT and not the port itself. A write to this register modifies the output latches that modify the pins configured as outputs.
};
Q_ENUM(RegisterAddress)
explicit MCP23008(const QString &i2cPortName, int i2cAddress = 0x48, QObject *parent = nullptr);
~MCP23008() override;
bool init();
bool writeRegister(RegisterAddress registerAddress, uint8_t value);
bool readRegister(RegisterAddress registerAddress, uint8_t *value);
private:
QFile m_i2cFile;
QString m_i2cPortName;
int m_i2cAddress;
int m_fileDescriptor = -1;
};
#endif // MCP23008_H

87
unipi/mcp342xchannel.cpp Normal file
View File

@ -0,0 +1,87 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* Copyright 2013 - 2020, nymea GmbH
* Contact: contact@nymea.io
*
* This file is part of nymea.
* This project including source code and documentation is protected by
* copyright law, and remains the property of nymea GmbH. All rights, including
* reproduction, publication, editing and translation, are reserved. The use of
* this project is subject to the terms of a license agreement to be concluded
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
* under https://nymea.io/license
*
* GNU Lesser General Public License Usage
* Alternatively, this project may be redistributed and/or modified under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; version 3. This project is distributed in the hope that
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this project. If not, see <https://www.gnu.org/licenses/>.
*
* For any further details and any questions please contact us under
* contact@nymea.io or see our FAQ/Licensing Information on
* https://nymea.io/license/faq
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "mcp342xchannel.h"
#include "extern-plugininfo.h"
#include <unistd.h>
#define GENERAL_CALL_RESET 0x0006
#define GENERAL_CALL_LATCH 0x0004
#define GENERAL_CALL_CONVERSION 0x0008
#define CONFIGURATION_REGISTER
MCP342XChannel::MCP342XChannel(const QString &portName, int address, int channel, Gain gain, QObject *parent) :
I2CDevice(portName, address, parent),
m_channel(channel),
m_gain(gain)
{
}
QByteArray MCP342XChannel::readData(int fd)
{
// Wair for previous messurements to be completed
char readBuf[3] = {0};
do {
if (read(fd, readBuf, 3) != 3) {
qCWarning(dcUniPi()) << "MCP342X: could not read ADC data";
return QByteArray();
}
} while (!(readBuf[2] & (1 << ConfRegisterBits::RDY)));
// Start a configuration conversation
unsigned char writeBuf[1] = {0};
writeBuf[0] |= (m_channel & 0x0003) << ConfRegisterBits::C0;
writeBuf[0] |= m_gain << ConfRegisterBits::G0;
//writeBuf[0] |= SampleRateSelectionBit::Bits18 << ConfRegisterBits::S0;
writeBuf[0] |= 1 << ConfRegisterBits::OC; // one shot
writeBuf[0] |= 1 << ConfRegisterBits::RDY; // start conversoin
if (write(fd, writeBuf, 1) != 1) {
qCWarning(dcUniPi()) << "MCP342X: could not write config register";
return QByteArray();
}
// Wait again for the device to finish measurement
do {
if (read(fd, readBuf, 3) != 3) {
qCWarning(dcUniPi()) << "MCP342X: could not read ADC data";
return QByteArray();
}
} while (!(readBuf[2] & (1 << ConfRegisterBits::RDY)));
if ((readBuf[2] & (0x03 << ConfRegisterBits::C0)) != ((m_channel & 0x0003) << ConfRegisterBits::C0))
return QByteArray();
return QByteArray(readBuf, 3);
}

86
unipi/mcp342xchannel.h Normal file
View File

@ -0,0 +1,86 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* Copyright 2013 - 2020, nymea GmbH
* Contact: contact@nymea.io
*
* This file is part of nymea.
* This project including source code and documentation is protected by
* copyright law, and remains the property of nymea GmbH. All rights, including
* reproduction, publication, editing and translation, are reserved. The use of
* this project is subject to the terms of a license agreement to be concluded
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
* under https://nymea.io/license
*
* GNU Lesser General Public License Usage
* Alternatively, this project may be redistributed and/or modified under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; version 3. This project is distributed in the hope that
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this project. If not, see <https://www.gnu.org/licenses/>.
*
* For any further details and any questions please contact us under
* contact@nymea.io or see our FAQ/Licensing Information on
* https://nymea.io/license/faq
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef MCP342X_H
#define MCP342X_H
#include <QThread>
#include <QMutex>
#include <hardware/i2c/i2cdevice.h>
class MCP342XChannel: public I2CDevice
{
Q_OBJECT
public:
/* Resolution | LSB
* ---------------------
* 12 bits | 1 mV
* 14 bits | 250 μV
* 16 bits | 62.5 μV
* 18 bits | 15.625 μ
*/
enum Gain {
Gain_1 = 0,
Gain_2 = 1,
Gain_4 = 2,
Gain_8 = 3
};
enum ConfRegisterBits {
G0 = 0, // Gain Selection
G1, // Gain Selection
S0, // Sample Rate
S1, // Sample Rate
OC, // Conversion Mode Bit
C0, // Channel Selection
C1, // Channel Selection
RDY // Ready Bit
};
enum SampleRateSelectionBit {
Bits12 = 0,
Bits14 = 1,
Bits16 = 2,
Bits18 = 3
};
explicit MCP342XChannel(const QString &portName, int address, int channel, Gain gain, QObject *parent = nullptr);
QByteArray readData(int fd) override;
private:
int m_channel = 0;
Gain m_gain = Gain_1;
};
#endif // MCP342X_H

14
unipi/meta.json Normal file
View File

@ -0,0 +1,14 @@
{
"title": "UniPi",
"tagline": "Integrates UniPi with nymea",
"icon": "unipi.png",
"stability": "consumer",
"offline": true,
"technologies": [
"network",
"serial-port"
],
"categories": [
"relay"
]
}

View File

@ -0,0 +1,71 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Relay Output 1.1,Basic
1,1,RW,Relay Output 1.2,Basic
2,2,RW,Relay Output 1.3,Basic
3,3,RW,Relay Output 1.4,Basic
4,4,RW,Relay Output 1.5,Basic
5,5,RW,Relay Output 1.6,Basic
6,6,RW,Relay Output 1.7,Basic
7,7,RW,Relay Output 1.8,Basic
8,8,RW,Relay Output 1.9,Basic
9,9,RW,Relay Output 1.10,Basic
10,10,RW,Relay Output 1.11,Basic
11,11,RW,Relay Output 1.12,Basic
12,12,RW,Relay Output 1.13,Basic
13,13,R,Digital Input 1.1,Basic
14,14,R,Digital Input 1.2,Basic
15,15,R,Digital Input 1.3,Basic
16,16,R,Digital Input 1.4,Basic
17,17,R,Digital Input 1.5,Basic
18,18,R,Digital Input 1.6,Basic
19,19,R,Digital Input 1.7,Basic
20,20,R,Digital Input 1.8,Basic
21,21,R,Digital Input 1.9,Basic
22,22,R,Digital Input 1.10,Basic
23,23,R,Digital Input 1.11,Basic
24,24,R,Digital Input 1.12,Basic
25,25,RW,User Programmable LED 1.1,Basic
26,26,RW,User Programmable LED 1.2,Basic
27,27,RW,User Programmable LED 1.3,Basic
1000,1000,RW,MWD reset indication,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Enable DirectSwitch on DI 1.5,Advanced
1012,1012,RW,Enable DirectSwitch on DI 1.6,Advanced
1013,1013,RW,Enable DirectSwitch on DI 1.7,Advanced
1014,1014,RW,Enable DirectSwitch on DI 1.8,Advanced
1015,1015,RW,Enable DirectSwitch on DI 1.9,Advanced
1016,1016,RW,Enable DirectSwitch on DI 1.10,Advanced
1017,1017,RW,Enable DirectSwitch on DI 1.11,Advanced
1018,1018,RW,Enable DirectSwitch on DI 1.12,Advanced
1019,1019,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1020,1020,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1021,1021,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1022,1022,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1023,1023,RW,Invert DirectSwitch Polarity on DI 1.5,Advanced
1024,1024,RW,Invert DirectSwitch Polarity on DI 1.6,Advanced
1025,1025,RW,Invert DirectSwitch Polarity on DI 1.7,Advanced
1026,1026,RW,Invert DirectSwitch Polarity on DI 1.8,Advanced
1027,1027,RW,Invert DirectSwitch Polarity on DI 1.9,Advanced
1028,1028,RW,Invert DirectSwitch Polarity on DI 1.10,Advanced
1029,1029,RW,Invert DirectSwitch Polarity on DI 1.11,Advanced
1030,1030,RW,Invert DirectSwitch Polarity on DI 1.12,Advanced
1031,1031,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1032,1032,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1033,1033,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1034,1034,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1035,1035,RW,Enable DirectSwitch Toggle Mode on DI 1.5,Advanced
1036,1036,RW,Enable DirectSwitch Toggle Mode on DI 1.6,Advanced
1037,1037,RW,Enable DirectSwitch Toggle Mode on DI 1.7,Advanced
1038,1038,RW,Enable DirectSwitch Toggle Mode on DI 1.8,Advanced
1039,1039,RW,Enable DirectSwitch Toggle Mode on DI 1.9,Advanced
1040,1040,RW,Enable DirectSwitch Toggle Mode on DI 1.10,Advanced
1041,1041,RW,Enable DirectSwitch Toggle Mode on DI 1.11,Advanced
1042,1042,RW,Enable DirectSwitch Toggle Mode on DI 1.12,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Relay Output 1.1 Basic
3 1 1 RW Relay Output 1.2 Basic
4 2 2 RW Relay Output 1.3 Basic
5 3 3 RW Relay Output 1.4 Basic
6 4 4 RW Relay Output 1.5 Basic
7 5 5 RW Relay Output 1.6 Basic
8 6 6 RW Relay Output 1.7 Basic
9 7 7 RW Relay Output 1.8 Basic
10 8 8 RW Relay Output 1.9 Basic
11 9 9 RW Relay Output 1.10 Basic
12 10 10 RW Relay Output 1.11 Basic
13 11 11 RW Relay Output 1.12 Basic
14 12 12 RW Relay Output 1.13 Basic
15 13 13 R Digital Input 1.1 Basic
16 14 14 R Digital Input 1.2 Basic
17 15 15 R Digital Input 1.3 Basic
18 16 16 R Digital Input 1.4 Basic
19 17 17 R Digital Input 1.5 Basic
20 18 18 R Digital Input 1.6 Basic
21 19 19 R Digital Input 1.7 Basic
22 20 20 R Digital Input 1.8 Basic
23 21 21 R Digital Input 1.9 Basic
24 22 22 R Digital Input 1.10 Basic
25 23 23 R Digital Input 1.11 Basic
26 24 24 R Digital Input 1.12 Basic
27 25 25 RW User Programmable LED 1.1 Basic
28 26 26 RW User Programmable LED 1.2 Basic
29 27 27 RW User Programmable LED 1.3 Basic
30 1000 1000 RW MWD reset indication Advanced
31 1002 1002 R Reset group MCU Advanced
32 1003 1003 RW Save current configuration and use on startup Advanced
33 1004 1004 RW (Internal) Firmware programming toggle Expert
34 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
35 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
36 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
37 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
38 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
39 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
40 1011 1011 RW Enable DirectSwitch on DI 1.5 Advanced
41 1012 1012 RW Enable DirectSwitch on DI 1.6 Advanced
42 1013 1013 RW Enable DirectSwitch on DI 1.7 Advanced
43 1014 1014 RW Enable DirectSwitch on DI 1.8 Advanced
44 1015 1015 RW Enable DirectSwitch on DI 1.9 Advanced
45 1016 1016 RW Enable DirectSwitch on DI 1.10 Advanced
46 1017 1017 RW Enable DirectSwitch on DI 1.11 Advanced
47 1018 1018 RW Enable DirectSwitch on DI 1.12 Advanced
48 1019 1019 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
49 1020 1020 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
50 1021 1021 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
51 1022 1022 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
52 1023 1023 RW Invert DirectSwitch Polarity on DI 1.5 Advanced
53 1024 1024 RW Invert DirectSwitch Polarity on DI 1.6 Advanced
54 1025 1025 RW Invert DirectSwitch Polarity on DI 1.7 Advanced
55 1026 1026 RW Invert DirectSwitch Polarity on DI 1.8 Advanced
56 1027 1027 RW Invert DirectSwitch Polarity on DI 1.9 Advanced
57 1028 1028 RW Invert DirectSwitch Polarity on DI 1.10 Advanced
58 1029 1029 RW Invert DirectSwitch Polarity on DI 1.11 Advanced
59 1030 1030 RW Invert DirectSwitch Polarity on DI 1.12 Advanced
60 1031 1031 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
61 1032 1032 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
62 1033 1033 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
63 1034 1034 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced
64 1035 1035 RW Enable DirectSwitch Toggle Mode on DI 1.5 Advanced
65 1036 1036 RW Enable DirectSwitch Toggle Mode on DI 1.6 Advanced
66 1037 1037 RW Enable DirectSwitch Toggle Mode on DI 1.7 Advanced
67 1038 1038 RW Enable DirectSwitch Toggle Mode on DI 1.8 Advanced
68 1039 1039 RW Enable DirectSwitch Toggle Mode on DI 1.9 Advanced
69 1040 1040 RW Enable DirectSwitch Toggle Mode on DI 1.10 Advanced
70 1041 1041 RW Enable DirectSwitch Toggle Mode on DI 1.11 Advanced
71 1042 1042 RW Enable DirectSwitch Toggle Mode on DI 1.12 Advanced

View File

@ -0,0 +1,152 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
0,0,1,R,MixedBits,Digital Input 1.5,4,Basic
0,0,1,R,MixedBits,Digital Input 1.6,5,Basic
0,0,1,R,MixedBits,Digital Input 1.7,6,Basic
0,0,1,R,MixedBits,Digital Input 1.8,7,Basic
0,0,1,R,MixedBits,Digital Input 1.9,8,Basic
0,0,1,R,MixedBits,Digital Input 1.10,9,Basic
0,0,1,R,MixedBits,Digital Input 1.11,10,Basic
0,0,1,R,MixedBits,Digital Input 1.12,11,Basic
1,1,1,RW,MixedBits,Relay Output 1.1,0,Basic
1,1,1,RW,MixedBits,Relay Output 1.2,1,Basic
1,1,1,RW,MixedBits,Relay Output 1.3,2,Basic
1,1,1,RW,MixedBits,Relay Output 1.4,3,Basic
1,1,1,RW,MixedBits,Relay Output 1.5,4,Basic
1,1,1,RW,MixedBits,Relay Output 1.6,5,Basic
1,1,1,RW,MixedBits,Relay Output 1.7,6,Basic
1,1,1,RW,MixedBits,Relay Output 1.8,7,Basic
1,1,1,RW,MixedBits,Relay Output 1.9,8,Basic
1,1,1,RW,MixedBits,Relay Output 1.10,9,Basic
1,1,1,RW,MixedBits,Relay Output 1.11,10,Basic
1,1,1,RW,MixedBits,Relay Output 1.12,11,Basic
1,1,1,RW,MixedBits,Relay Output 1.13,12,Basic
2,2,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
3,3,2,RW,DWord,Counter of Digital Input 1.1,,Basic
5,5,2,RW,DWord,Counter of Digital Input 1.2,,Basic
7,7,2,RW,DWord,Counter of Digital Input 1.3,,Basic
9,9,2,RW,DWord,Counter of Digital Input 1.4,,Basic
11,11,2,RW,DWord,Counter of Digital Input 1.5,,Basic
13,13,2,RW,DWord,Counter of Digital Input 1.6,,Basic
15,15,2,RW,DWord,Counter of Digital Input 1.7,,Basic
17,17,2,RW,DWord,Counter of Digital Input 1.8,,Basic
19,19,2,RW,DWord,Counter of Digital Input 1.9,,Basic
21,21,2,RW,DWord,Counter of Digital Input 1.10,,Basic
23,23,2,RW,DWord,Counter of Digital Input 1.11,,Basic
25,25,2,RW,DWord,Counter of Digital Input 1.12,,Basic
27,27,1,W,Word,Reserved - Do Not Use,,Reserved
28,28,1,W,Word,Reserved - Do Not Use,,Reserved
29,29,1,W,Word,Reserved - Do Not Use,,Reserved
30,30,1,W,Word,Reserved - Do Not Use,,Reserved
31,31,1,RW,MixedBits,User LED 1.1,0,Basic
31,31,1,RW,MixedBits,User LED 1.2,1,Basic
31,31,1,RW,MixedBits,User LED 1.3,2,Basic
32,32,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
32,32,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
32,32,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
32,32,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
32,32,1,RW,MixedBits,Synchronised DO/RO 1.5,4,Advanced
32,32,1,RW,MixedBits,Synchronised DO/RO 1.6,5,Advanced
32,32,1,RW,MixedBits,Synchronised DO/RO 1.7,6,Advanced
32,32,1,RW,MixedBits,Synchronised DO/RO 1.8,7,Advanced
32,32,1,RW,MixedBits,Synchronised DO/RO 1.9,8,Advanced
32,32,1,RW,MixedBits,Synchronised DO/RO 1.10,9,Advanced
32,32,1,RW,MixedBits,Synchronised DO/RO 1.11,10,Advanced
32,32,1,RW,MixedBits,Synchronised DO/RO 1.12,11,Advanced
32,32,1,RW,MixedBits,Synchronised DO/RO 1.13,12,Advanced
33,33,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
33,33,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
33,33,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
33,33,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
33,33,1,RW,MixedBits,Synchronised DO/RO Lock 1.5,4,Advanced
33,33,1,RW,MixedBits,Synchronised DO/RO Lock 1.6,5,Advanced
33,33,1,RW,MixedBits,Synchronised DO/RO Lock 1.7,6,Advanced
33,33,1,RW,MixedBits,Synchronised DO/RO Lock 1.8,7,Advanced
33,33,1,RW,MixedBits,Synchronised DO/RO Lock 1.9,8,Advanced
33,33,1,RW,MixedBits,Synchronised DO/RO Lock 1.10,9,Advanced
33,33,1,RW,MixedBits,Synchronised DO/RO Lock 1.11,10,Advanced
33,33,1,RW,MixedBits,Synchronised DO/RO Lock 1.12,11,Advanced
33,33,1,RW,MixedBits,Synchronised DO/RO Lock 1.13,12,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,Word,Debounce time (in 100us) for DI 1.5,,Advanced
1015,1015,1,RW,Word,Debounce time (in 100us) for DI 1.6,,Advanced
1016,1016,1,RW,Word,Debounce time (in 100us) for DI 1.7,,Advanced
1017,1017,1,RW,Word,Debounce time (in 100us) for DI 1.8,,Advanced
1018,1018,1,RW,Word,Debounce time (in 100us) for DI 1.9,,Advanced
1019,1019,1,RW,Word,Debounce time (in 100us) for DI 1.10,,Advanced
1020,1020,1,RW,Word,Debounce time (in 100us) for DI 1.11,,Advanced
1021,1021,1,RW,Word,Debounce time (in 100us) for DI 1.12,,Advanced
1022,1022,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1022,1022,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1022,1022,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1022,1022,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1022,1022,1,RW,MixedBits,Enable DirectSwitch on DI 1.5,4,Basic
1022,1022,1,RW,MixedBits,Enable DirectSwitch on DI 1.6,5,Basic
1022,1022,1,RW,MixedBits,Enable DirectSwitch on DI 1.7,6,Basic
1022,1022,1,RW,MixedBits,Enable DirectSwitch on DI 1.8,7,Basic
1022,1022,1,RW,MixedBits,Enable DirectSwitch on DI 1.9,8,Basic
1022,1022,1,RW,MixedBits,Enable DirectSwitch on DI 1.10,9,Basic
1022,1022,1,RW,MixedBits,Enable DirectSwitch on DI 1.11,10,Basic
1022,1022,1,RW,MixedBits,Enable DirectSwitch on DI 1.12,11,Basic
1023,1023,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1023,1023,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1023,1023,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1023,1023,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1023,1023,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.5,4,Basic
1023,1023,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.6,5,Basic
1023,1023,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.7,6,Basic
1023,1023,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.8,7,Basic
1023,1023,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.9,8,Basic
1023,1023,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.10,9,Basic
1023,1023,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.11,10,Basic
1023,1023,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.12,11,Basic
1024,1024,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1024,1024,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1024,1024,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1024,1024,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1024,1024,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.5,4,Basic
1024,1024,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.6,5,Basic
1024,1024,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.7,6,Basic
1024,1024,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.8,7,Basic
1024,1024,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.9,8,Basic
1024,1024,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.10,9,Basic
1024,1024,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.11,10,Basic
1024,1024,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.12,11,Basic
1025,1025,1,W,Word,Reserved - Do Not Use,,Reserved
1026,1026,1,W,Word,Reserved - Do Not Use,,Reserved
1027,1027,1,RW,MixedBits,RS485 Configuration,,Basic
1028,1028,1,RW,MixedBits,Modbus Address Configuration (1-254),,Basic
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 0 0 1 R MixedBits Digital Input 1.5 4 Basic
7 0 0 1 R MixedBits Digital Input 1.6 5 Basic
8 0 0 1 R MixedBits Digital Input 1.7 6 Basic
9 0 0 1 R MixedBits Digital Input 1.8 7 Basic
10 0 0 1 R MixedBits Digital Input 1.9 8 Basic
11 0 0 1 R MixedBits Digital Input 1.10 9 Basic
12 0 0 1 R MixedBits Digital Input 1.11 10 Basic
13 0 0 1 R MixedBits Digital Input 1.12 11 Basic
14 1 1 1 RW MixedBits Relay Output 1.1 0 Basic
15 1 1 1 RW MixedBits Relay Output 1.2 1 Basic
16 1 1 1 RW MixedBits Relay Output 1.3 2 Basic
17 1 1 1 RW MixedBits Relay Output 1.4 3 Basic
18 1 1 1 RW MixedBits Relay Output 1.5 4 Basic
19 1 1 1 RW MixedBits Relay Output 1.6 5 Basic
20 1 1 1 RW MixedBits Relay Output 1.7 6 Basic
21 1 1 1 RW MixedBits Relay Output 1.8 7 Basic
22 1 1 1 RW MixedBits Relay Output 1.9 8 Basic
23 1 1 1 RW MixedBits Relay Output 1.10 9 Basic
24 1 1 1 RW MixedBits Relay Output 1.11 10 Basic
25 1 1 1 RW MixedBits Relay Output 1.12 11 Basic
26 1 1 1 RW MixedBits Relay Output 1.13 12 Basic
27 2 2 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
28 3 3 2 RW DWord Counter of Digital Input 1.1 Basic
29 5 5 2 RW DWord Counter of Digital Input 1.2 Basic
30 7 7 2 RW DWord Counter of Digital Input 1.3 Basic
31 9 9 2 RW DWord Counter of Digital Input 1.4 Basic
32 11 11 2 RW DWord Counter of Digital Input 1.5 Basic
33 13 13 2 RW DWord Counter of Digital Input 1.6 Basic
34 15 15 2 RW DWord Counter of Digital Input 1.7 Basic
35 17 17 2 RW DWord Counter of Digital Input 1.8 Basic
36 19 19 2 RW DWord Counter of Digital Input 1.9 Basic
37 21 21 2 RW DWord Counter of Digital Input 1.10 Basic
38 23 23 2 RW DWord Counter of Digital Input 1.11 Basic
39 25 25 2 RW DWord Counter of Digital Input 1.12 Basic
40 27 27 1 W Word Reserved - Do Not Use Reserved
41 28 28 1 W Word Reserved - Do Not Use Reserved
42 29 29 1 W Word Reserved - Do Not Use Reserved
43 30 30 1 W Word Reserved - Do Not Use Reserved
44 31 31 1 RW MixedBits User LED 1.1 0 Basic
45 31 31 1 RW MixedBits User LED 1.2 1 Basic
46 31 31 1 RW MixedBits User LED 1.3 2 Basic
47 32 32 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
48 32 32 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
49 32 32 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
50 32 32 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
51 32 32 1 RW MixedBits Synchronised DO/RO 1.5 4 Advanced
52 32 32 1 RW MixedBits Synchronised DO/RO 1.6 5 Advanced
53 32 32 1 RW MixedBits Synchronised DO/RO 1.7 6 Advanced
54 32 32 1 RW MixedBits Synchronised DO/RO 1.8 7 Advanced
55 32 32 1 RW MixedBits Synchronised DO/RO 1.9 8 Advanced
56 32 32 1 RW MixedBits Synchronised DO/RO 1.10 9 Advanced
57 32 32 1 RW MixedBits Synchronised DO/RO 1.11 10 Advanced
58 32 32 1 RW MixedBits Synchronised DO/RO 1.12 11 Advanced
59 32 32 1 RW MixedBits Synchronised DO/RO 1.13 12 Advanced
60 33 33 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
61 33 33 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
62 33 33 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
63 33 33 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
64 33 33 1 RW MixedBits Synchronised DO/RO Lock 1.5 4 Advanced
65 33 33 1 RW MixedBits Synchronised DO/RO Lock 1.6 5 Advanced
66 33 33 1 RW MixedBits Synchronised DO/RO Lock 1.7 6 Advanced
67 33 33 1 RW MixedBits Synchronised DO/RO Lock 1.8 7 Advanced
68 33 33 1 RW MixedBits Synchronised DO/RO Lock 1.9 8 Advanced
69 33 33 1 RW MixedBits Synchronised DO/RO Lock 1.10 9 Advanced
70 33 33 1 RW MixedBits Synchronised DO/RO Lock 1.11 10 Advanced
71 33 33 1 RW MixedBits Synchronised DO/RO Lock 1.12 11 Advanced
72 33 33 1 RW MixedBits Synchronised DO/RO Lock 1.13 12 Advanced
73 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
74 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
75 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
76 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
77 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
78 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
79 505 505 1 W Word Reserved - Do Not Use Reserved
80 506 506 1 W Word Reserved - Do Not Use Reserved
81 507 507 1 W Word Reserved - Do Not Use Reserved
82 508 508 1 W Word Reserved - Do Not Use Reserved
83 509 509 1 W Word Reserved - Do Not Use Reserved
84 510 1 RW Word (Internal) Stored Firmware Version Expert
85 511 1 RW Word (Internal) Stored Firmware Revision Expert
86 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
87 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
88 514 1 RW Word (Internal) Stored PCB Revision Expert
89 515 1 RW Word (Internal) Stored PCB Serial Number Expert
90 516 1 RW Word (Internal) Stored HW Revision Number Expert
91 1000 1000 1 R Word Firmware Version Expert
92 1001 1001 1 R Word Number of I/Os Advanced
93 1002 1002 1 R Word Number of peripherals Advanced
94 1003 1003 1 R Word Firmware ID Expert
95 1004 1004 1 R Word Hardware ID Expert
96 1005 1005 2 R DWord PCB Serial Number Expert
97 1007 1007 1 RW Word Interrupt Mask Expert
98 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
99 1009 1009 1 R Word VRef of MCU Expert
100 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
101 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
102 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
103 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
104 1014 1014 1 RW Word Debounce time (in 100us) for DI 1.5 Advanced
105 1015 1015 1 RW Word Debounce time (in 100us) for DI 1.6 Advanced
106 1016 1016 1 RW Word Debounce time (in 100us) for DI 1.7 Advanced
107 1017 1017 1 RW Word Debounce time (in 100us) for DI 1.8 Advanced
108 1018 1018 1 RW Word Debounce time (in 100us) for DI 1.9 Advanced
109 1019 1019 1 RW Word Debounce time (in 100us) for DI 1.10 Advanced
110 1020 1020 1 RW Word Debounce time (in 100us) for DI 1.11 Advanced
111 1021 1021 1 RW Word Debounce time (in 100us) for DI 1.12 Advanced
112 1022 1022 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
113 1022 1022 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
114 1022 1022 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
115 1022 1022 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
116 1022 1022 1 RW MixedBits Enable DirectSwitch on DI 1.5 4 Basic
117 1022 1022 1 RW MixedBits Enable DirectSwitch on DI 1.6 5 Basic
118 1022 1022 1 RW MixedBits Enable DirectSwitch on DI 1.7 6 Basic
119 1022 1022 1 RW MixedBits Enable DirectSwitch on DI 1.8 7 Basic
120 1022 1022 1 RW MixedBits Enable DirectSwitch on DI 1.9 8 Basic
121 1022 1022 1 RW MixedBits Enable DirectSwitch on DI 1.10 9 Basic
122 1022 1022 1 RW MixedBits Enable DirectSwitch on DI 1.11 10 Basic
123 1022 1022 1 RW MixedBits Enable DirectSwitch on DI 1.12 11 Basic
124 1023 1023 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
125 1023 1023 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
126 1023 1023 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
127 1023 1023 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
128 1023 1023 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.5 4 Basic
129 1023 1023 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.6 5 Basic
130 1023 1023 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.7 6 Basic
131 1023 1023 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.8 7 Basic
132 1023 1023 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.9 8 Basic
133 1023 1023 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.10 9 Basic
134 1023 1023 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.11 10 Basic
135 1023 1023 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.12 11 Basic
136 1024 1024 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
137 1024 1024 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
138 1024 1024 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
139 1024 1024 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
140 1024 1024 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.5 4 Basic
141 1024 1024 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.6 5 Basic
142 1024 1024 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.7 6 Basic
143 1024 1024 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.8 7 Basic
144 1024 1024 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.9 8 Basic
145 1024 1024 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.10 9 Basic
146 1024 1024 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.11 10 Basic
147 1024 1024 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.12 11 Basic
148 1025 1025 1 W Word Reserved - Do Not Use Reserved
149 1026 1026 1 W Word Reserved - Do Not Use Reserved
150 1027 1027 1 RW MixedBits RS485 Configuration Basic
151 1028 1028 1 RW MixedBits Modbus Address Configuration (1-254) Basic
152 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,31 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Relay Output 1.1,Basic
1,1,RW,Relay Output 1.2,Basic
2,2,RW,Relay Output 1.3,Basic
3,3,RW,Relay Output 1.4,Basic
4,4,RW,Relay Output 1.5,Basic
5,5,R,Digital Input 1.1,Basic
6,6,R,Digital Input 1.2,Basic
7,7,R,Digital Input 1.3,Basic
8,8,R,Digital Input 1.4,Basic
9,9,RW,User Programmable LED 1.1,Basic
10,10,RW,User Programmable LED 1.2,Basic
11,11,RW,User Programmable LED 1.3,Basic
1000,1000,RW,MWD reset indication,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1012,1012,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1013,1013,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1014,1014,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1015,1015,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1016,1016,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1017,1017,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1018,1018,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Relay Output 1.1 Basic
3 1 1 RW Relay Output 1.2 Basic
4 2 2 RW Relay Output 1.3 Basic
5 3 3 RW Relay Output 1.4 Basic
6 4 4 RW Relay Output 1.5 Basic
7 5 5 R Digital Input 1.1 Basic
8 6 6 R Digital Input 1.2 Basic
9 7 7 R Digital Input 1.3 Basic
10 8 8 R Digital Input 1.4 Basic
11 9 9 RW User Programmable LED 1.1 Basic
12 10 10 RW User Programmable LED 1.2 Basic
13 11 11 RW User Programmable LED 1.3 Basic
14 1000 1000 RW MWD reset indication Advanced
15 1002 1002 R Reset group MCU Advanced
16 1003 1003 RW Save current configuration and use on startup Advanced
17 1004 1004 RW (Internal) Firmware programming toggle Expert
18 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
19 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
20 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
21 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
22 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
23 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
24 1011 1011 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
25 1012 1012 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
26 1013 1013 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
27 1014 1014 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
28 1015 1015 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
29 1016 1016 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
30 1017 1017 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
31 1018 1018 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced

View File

@ -0,0 +1,92 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
1,1,1,RW,MixedBits,Relay Output 1.1,0,Basic
1,1,1,RW,MixedBits,Relay Output 1.2,1,Basic
1,1,1,RW,MixedBits,Relay Output 1.3,2,Basic
1,1,1,RW,MixedBits,Relay Output 1.4,3,Basic
1,1,1,RW,MixedBits,Relay Output 1.5,4,Basic
2,2,1,RW,Word,Analog Output Value 1.1 (0..4000 ~ 0..10V),,Basic
3,3,1,RW,Word,Analog Output Value 1.2 (0..4000 ~ 0..10V),,Basic
4,4,1,RW,Word,Analog Output Value 1.3 (0..4000 ~ 0..10V),,Basic
5,5,1,RW,Word,Analog Output Value 1.4 (0..4000 ~ 0..10V),,Basic
6,6,2,R,Real,Analog Input Value 1.1,,Basic
8,8,2,R,Real,Analog Input Value 1.2,,Basic
10,10,2,R,Real,Analog Input Value 1.3,,Basic
12,12,2,R,Real,Analog Input Value 1.4,,Basic
14,14,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
15,15,2,RW,DWord,Counter of Digital Input 1.1,,Basic
17,17,2,RW,DWord,Counter of Digital Input 1.2,,Basic
19,19,2,RW,DWord,Counter of Digital Input 1.3,,Basic
21,21,2,RW,DWord,Counter of Digital Input 1.4,,Basic
23,23,1,W,Word,Reserved - Do Not Use,,Reserved
24,24,1,W,Word,Reserved - Do Not Use,,Reserved
25,25,1,W,Word,Reserved - Do Not Use,,Reserved
26,26,1,W,Word,Reserved - Do Not Use,,Reserved
27,27,1,RW,MixedBits,User LED 1.1,0,Basic
27,27,1,RW,MixedBits,User LED 1.2,1,Basic
27,27,1,RW,MixedBits,User LED 1.3,2,Basic
28,28,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
28,28,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
28,28,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
28,28,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
28,28,1,RW,MixedBits,Synchronised DO/RO 1.5,4,Advanced
29,29,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
29,29,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
29,29,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
29,29,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
29,29,1,RW,MixedBits,Synchronised DO/RO Lock 1.5,4,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1017,1017,1,W,Word,Reserved - Do Not Use,,Reserved
1018,1018,1,W,Word,Reserved - Do Not Use,,Reserved
1019,1019,1,RW,Word,Analog Input Configuration(U/I/R) 1.1,,Basic
1020,1020,1,RW,Word,Analog Input Configuration(U/I/R) 1.2,,Basic
1021,1021,1,RW,Word,Analog Input Configuration(U/I/R) 1.3,,Basic
1022,1022,1,RW,Word,Analog Input Configuration(U/I/R) 1.4,,Basic
1023,1023,1,RW,MixedBits,RS485 Configuration,,Basic
1024,1024,1,RW,MixedBits,Modbus Address Configuration (1-254),,Basic
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 1 1 1 RW MixedBits Relay Output 1.1 0 Basic
7 1 1 1 RW MixedBits Relay Output 1.2 1 Basic
8 1 1 1 RW MixedBits Relay Output 1.3 2 Basic
9 1 1 1 RW MixedBits Relay Output 1.4 3 Basic
10 1 1 1 RW MixedBits Relay Output 1.5 4 Basic
11 2 2 1 RW Word Analog Output Value 1.1 (0..4000 ~ 0..10V) Basic
12 3 3 1 RW Word Analog Output Value 1.2 (0..4000 ~ 0..10V) Basic
13 4 4 1 RW Word Analog Output Value 1.3 (0..4000 ~ 0..10V) Basic
14 5 5 1 RW Word Analog Output Value 1.4 (0..4000 ~ 0..10V) Basic
15 6 6 2 R Real Analog Input Value 1.1 Basic
16 8 8 2 R Real Analog Input Value 1.2 Basic
17 10 10 2 R Real Analog Input Value 1.3 Basic
18 12 12 2 R Real Analog Input Value 1.4 Basic
19 14 14 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
20 15 15 2 RW DWord Counter of Digital Input 1.1 Basic
21 17 17 2 RW DWord Counter of Digital Input 1.2 Basic
22 19 19 2 RW DWord Counter of Digital Input 1.3 Basic
23 21 21 2 RW DWord Counter of Digital Input 1.4 Basic
24 23 23 1 W Word Reserved - Do Not Use Reserved
25 24 24 1 W Word Reserved - Do Not Use Reserved
26 25 25 1 W Word Reserved - Do Not Use Reserved
27 26 26 1 W Word Reserved - Do Not Use Reserved
28 27 27 1 RW MixedBits User LED 1.1 0 Basic
29 27 27 1 RW MixedBits User LED 1.2 1 Basic
30 27 27 1 RW MixedBits User LED 1.3 2 Basic
31 28 28 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
32 28 28 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
33 28 28 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
34 28 28 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
35 28 28 1 RW MixedBits Synchronised DO/RO 1.5 4 Advanced
36 29 29 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
37 29 29 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
38 29 29 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
39 29 29 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
40 29 29 1 RW MixedBits Synchronised DO/RO Lock 1.5 4 Advanced
41 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
42 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
43 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
44 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
45 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
46 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
47 505 505 1 W Word Reserved - Do Not Use Reserved
48 506 506 1 W Word Reserved - Do Not Use Reserved
49 507 507 1 W Word Reserved - Do Not Use Reserved
50 508 508 1 W Word Reserved - Do Not Use Reserved
51 509 509 1 W Word Reserved - Do Not Use Reserved
52 510 1 RW Word (Internal) Stored Firmware Version Expert
53 511 1 RW Word (Internal) Stored Firmware Revision Expert
54 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
55 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
56 514 1 RW Word (Internal) Stored PCB Revision Expert
57 515 1 RW Word (Internal) Stored PCB Serial Number Expert
58 516 1 RW Word (Internal) Stored HW Revision Number Expert
59 1000 1000 1 R Word Firmware Version Expert
60 1001 1001 1 R Word Number of I/Os Advanced
61 1002 1002 1 R Word Number of peripherals Advanced
62 1003 1003 1 R Word Firmware ID Expert
63 1004 1004 1 R Word Hardware ID Expert
64 1005 1005 2 R DWord PCB Serial Number Expert
65 1007 1007 1 RW Word Interrupt Mask Expert
66 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
67 1009 1009 1 R Word VRef of MCU Expert
68 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
69 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
70 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
71 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
72 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
73 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
74 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
75 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
76 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
77 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
78 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
79 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
80 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
81 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
82 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
83 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
84 1017 1017 1 W Word Reserved - Do Not Use Reserved
85 1018 1018 1 W Word Reserved - Do Not Use Reserved
86 1019 1019 1 RW Word Analog Input Configuration(U/I/R) 1.1 Basic
87 1020 1020 1 RW Word Analog Input Configuration(U/I/R) 1.2 Basic
88 1021 1021 1 RW Word Analog Input Configuration(U/I/R) 1.3 Basic
89 1022 1022 1 RW Word Analog Input Configuration(U/I/R) 1.4 Basic
90 1023 1023 1 RW MixedBits RS485 Configuration Basic
91 1024 1024 1 RW MixedBits Modbus Address Configuration (1-254) Basic
92 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,32 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Digital Output 1.1,Basic
1,1,RW,Digital Output 1.2,Basic
2,2,RW,Digital Output 1.3,Basic
3,3,RW,Digital Output 1.4,Basic
4,4,R,Digital Input 1.1,Basic
5,5,R,Digital Input 1.2,Basic
6,6,R,Digital Input 1.3,Basic
7,7,R,Digital Input 1.4,Basic
8,8,RW,User Programmable LED 1.1,Basic
9,9,RW,User Programmable LED 1.2,Basic
10,10,RW,User Programmable LED 1.3,Basic
11,11,RW,User Programmable LED 1.4,Basic
1000,1000,RW,MWD reset indication,Advanced
1001,1001,RW,Enable/Disable 1Wire Bus,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1012,1012,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1013,1013,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1014,1014,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1015,1015,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1016,1016,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1017,1017,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1018,1018,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Digital Output 1.1 Basic
3 1 1 RW Digital Output 1.2 Basic
4 2 2 RW Digital Output 1.3 Basic
5 3 3 RW Digital Output 1.4 Basic
6 4 4 R Digital Input 1.1 Basic
7 5 5 R Digital Input 1.2 Basic
8 6 6 R Digital Input 1.3 Basic
9 7 7 R Digital Input 1.4 Basic
10 8 8 RW User Programmable LED 1.1 Basic
11 9 9 RW User Programmable LED 1.2 Basic
12 10 10 RW User Programmable LED 1.3 Basic
13 11 11 RW User Programmable LED 1.4 Basic
14 1000 1000 RW MWD reset indication Advanced
15 1001 1001 RW Enable/Disable 1Wire Bus Advanced
16 1002 1002 R Reset group MCU Advanced
17 1003 1003 RW Save current configuration and use on startup Advanced
18 1004 1004 RW (Internal) Firmware programming toggle Expert
19 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
20 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
21 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
22 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
23 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
24 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
25 1011 1011 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
26 1012 1012 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
27 1013 1013 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
28 1014 1014 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
29 1015 1015 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
30 1016 1016 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
31 1017 1017 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
32 1018 1018 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced

View File

@ -0,0 +1,79 @@
Via Unit 0,Via Unit 2,R/W,Content,Category
100,0,RW,Relay Output 2.1,Basic
101,1,RW,Relay Output 2.2,Basic
102,2,RW,Relay Output 2.3,Basic
103,3,RW,Relay Output 2.4,Basic
104,4,RW,Relay Output 2.5,Basic
105,5,RW,Relay Output 2.6,Basic
106,6,RW,Relay Output 2.7,Basic
107,7,RW,Relay Output 2.8,Basic
108,8,RW,Relay Output 2.9,Basic
109,9,RW,Relay Output 2.10,Basic
110,10,RW,Relay Output 2.11,Basic
111,11,RW,Relay Output 2.12,Basic
112,12,RW,Relay Output 2.13,Basic
113,13,RW,Relay Output 2.14,Basic
114,14,R,Digital Input 2.1,Basic
115,15,R,Digital Input 2.2,Basic
116,16,R,Digital Input 2.3,Basic
117,17,R,Digital Input 2.4,Basic
118,18,R,Digital Input 2.5,Basic
119,19,R,Digital Input 2.6,Basic
120,20,R,Digital Input 2.7,Basic
121,21,R,Digital Input 2.8,Basic
122,22,R,Digital Input 2.9,Basic
123,23,R,Digital Input 2.10,Basic
124,24,R,Digital Input 2.11,Basic
125,25,R,Digital Input 2.12,Basic
126,26,R,Digital Input 2.13,Basic
127,27,R,Digital Input 2.14,Basic
128,28,R,Digital Input 2.15,Basic
129,29,R,Digital Input 2.16,Basic
1100,1000,RW,MWD reset indication,Advanced
1102,1002,R,Reset group MCU,Advanced
1103,1003,RW,Save current configuration and use on startup,Advanced
1104,1004,RW,(Internal) Firmware programming toggle,Expert
1105,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1106,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1107,1007,RW,Enable DirectSwitch on DI 2.1,Advanced
1108,1008,RW,Enable DirectSwitch on DI 2.2,Advanced
1109,1009,RW,Enable DirectSwitch on DI 2.3,Advanced
1110,1010,RW,Enable DirectSwitch on DI 2.4,Advanced
1111,1011,RW,Enable DirectSwitch on DI 2.5,Advanced
1112,1012,RW,Enable DirectSwitch on DI 2.6,Advanced
1113,1013,RW,Enable DirectSwitch on DI 2.7,Advanced
1114,1014,RW,Enable DirectSwitch on DI 2.8,Advanced
1115,1015,RW,Enable DirectSwitch on DI 2.9,Advanced
1116,1016,RW,Enable DirectSwitch on DI 2.10,Advanced
1117,1017,RW,Enable DirectSwitch on DI 2.11,Advanced
1118,1018,RW,Enable DirectSwitch on DI 2.12,Advanced
1119,1019,RW,Enable DirectSwitch on DI 2.13,Advanced
1120,1020,RW,Enable DirectSwitch on DI 2.14,Advanced
1121,1021,RW,Invert DirectSwitch Polarity on DI 2.1,Advanced
1122,1022,RW,Invert DirectSwitch Polarity on DI 2.2,Advanced
1123,1023,RW,Invert DirectSwitch Polarity on DI 2.3,Advanced
1124,1024,RW,Invert DirectSwitch Polarity on DI 2.4,Advanced
1125,1025,RW,Invert DirectSwitch Polarity on DI 2.5,Advanced
1126,1026,RW,Invert DirectSwitch Polarity on DI 2.6,Advanced
1127,1027,RW,Invert DirectSwitch Polarity on DI 2.7,Advanced
1128,1028,RW,Invert DirectSwitch Polarity on DI 2.8,Advanced
1129,1029,RW,Invert DirectSwitch Polarity on DI 2.9,Advanced
1130,1030,RW,Invert DirectSwitch Polarity on DI 2.10,Advanced
1131,1031,RW,Invert DirectSwitch Polarity on DI 2.11,Advanced
1132,1032,RW,Invert DirectSwitch Polarity on DI 2.12,Advanced
1133,1033,RW,Invert DirectSwitch Polarity on DI 2.13,Advanced
1134,1034,RW,Invert DirectSwitch Polarity on DI 2.14,Advanced
1135,1035,RW,Enable DirectSwitch Toggle Mode on DI 2.1,Advanced
1136,1036,RW,Enable DirectSwitch Toggle Mode on DI 2.2,Advanced
1137,1037,RW,Enable DirectSwitch Toggle Mode on DI 2.3,Advanced
1138,1038,RW,Enable DirectSwitch Toggle Mode on DI 2.4,Advanced
1139,1039,RW,Enable DirectSwitch Toggle Mode on DI 2.5,Advanced
1140,1040,RW,Enable DirectSwitch Toggle Mode on DI 2.6,Advanced
1141,1041,RW,Enable DirectSwitch Toggle Mode on DI 2.7,Advanced
1142,1042,RW,Enable DirectSwitch Toggle Mode on DI 2.8,Advanced
1143,1043,RW,Enable DirectSwitch Toggle Mode on DI 2.9,Advanced
1144,1044,RW,Enable DirectSwitch Toggle Mode on DI 2.10,Advanced
1145,1045,RW,Enable DirectSwitch Toggle Mode on DI 2.11,Advanced
1146,1046,RW,Enable DirectSwitch Toggle Mode on DI 2.12,Advanced
1147,1047,RW,Enable DirectSwitch Toggle Mode on DI 2.13,Advanced
1148,1048,RW,Enable DirectSwitch Toggle Mode on DI 2.14,Advanced
1 Via Unit 0 Via Unit 2 R/W Content Category
2 100 0 RW Relay Output 2.1 Basic
3 101 1 RW Relay Output 2.2 Basic
4 102 2 RW Relay Output 2.3 Basic
5 103 3 RW Relay Output 2.4 Basic
6 104 4 RW Relay Output 2.5 Basic
7 105 5 RW Relay Output 2.6 Basic
8 106 6 RW Relay Output 2.7 Basic
9 107 7 RW Relay Output 2.8 Basic
10 108 8 RW Relay Output 2.9 Basic
11 109 9 RW Relay Output 2.10 Basic
12 110 10 RW Relay Output 2.11 Basic
13 111 11 RW Relay Output 2.12 Basic
14 112 12 RW Relay Output 2.13 Basic
15 113 13 RW Relay Output 2.14 Basic
16 114 14 R Digital Input 2.1 Basic
17 115 15 R Digital Input 2.2 Basic
18 116 16 R Digital Input 2.3 Basic
19 117 17 R Digital Input 2.4 Basic
20 118 18 R Digital Input 2.5 Basic
21 119 19 R Digital Input 2.6 Basic
22 120 20 R Digital Input 2.7 Basic
23 121 21 R Digital Input 2.8 Basic
24 122 22 R Digital Input 2.9 Basic
25 123 23 R Digital Input 2.10 Basic
26 124 24 R Digital Input 2.11 Basic
27 125 25 R Digital Input 2.12 Basic
28 126 26 R Digital Input 2.13 Basic
29 127 27 R Digital Input 2.14 Basic
30 128 28 R Digital Input 2.15 Basic
31 129 29 R Digital Input 2.16 Basic
32 1100 1000 RW MWD reset indication Advanced
33 1102 1002 R Reset group MCU Advanced
34 1103 1003 RW Save current configuration and use on startup Advanced
35 1104 1004 RW (Internal) Firmware programming toggle Expert
36 1105 1005 RW (Internal) Firmware reprogramming toggle Expert
37 1106 1006 RW (Internal) Firmware calibration programming toggle Expert
38 1107 1007 RW Enable DirectSwitch on DI 2.1 Advanced
39 1108 1008 RW Enable DirectSwitch on DI 2.2 Advanced
40 1109 1009 RW Enable DirectSwitch on DI 2.3 Advanced
41 1110 1010 RW Enable DirectSwitch on DI 2.4 Advanced
42 1111 1011 RW Enable DirectSwitch on DI 2.5 Advanced
43 1112 1012 RW Enable DirectSwitch on DI 2.6 Advanced
44 1113 1013 RW Enable DirectSwitch on DI 2.7 Advanced
45 1114 1014 RW Enable DirectSwitch on DI 2.8 Advanced
46 1115 1015 RW Enable DirectSwitch on DI 2.9 Advanced
47 1116 1016 RW Enable DirectSwitch on DI 2.10 Advanced
48 1117 1017 RW Enable DirectSwitch on DI 2.11 Advanced
49 1118 1018 RW Enable DirectSwitch on DI 2.12 Advanced
50 1119 1019 RW Enable DirectSwitch on DI 2.13 Advanced
51 1120 1020 RW Enable DirectSwitch on DI 2.14 Advanced
52 1121 1021 RW Invert DirectSwitch Polarity on DI 2.1 Advanced
53 1122 1022 RW Invert DirectSwitch Polarity on DI 2.2 Advanced
54 1123 1023 RW Invert DirectSwitch Polarity on DI 2.3 Advanced
55 1124 1024 RW Invert DirectSwitch Polarity on DI 2.4 Advanced
56 1125 1025 RW Invert DirectSwitch Polarity on DI 2.5 Advanced
57 1126 1026 RW Invert DirectSwitch Polarity on DI 2.6 Advanced
58 1127 1027 RW Invert DirectSwitch Polarity on DI 2.7 Advanced
59 1128 1028 RW Invert DirectSwitch Polarity on DI 2.8 Advanced
60 1129 1029 RW Invert DirectSwitch Polarity on DI 2.9 Advanced
61 1130 1030 RW Invert DirectSwitch Polarity on DI 2.10 Advanced
62 1131 1031 RW Invert DirectSwitch Polarity on DI 2.11 Advanced
63 1132 1032 RW Invert DirectSwitch Polarity on DI 2.12 Advanced
64 1133 1033 RW Invert DirectSwitch Polarity on DI 2.13 Advanced
65 1134 1034 RW Invert DirectSwitch Polarity on DI 2.14 Advanced
66 1135 1035 RW Enable DirectSwitch Toggle Mode on DI 2.1 Advanced
67 1136 1036 RW Enable DirectSwitch Toggle Mode on DI 2.2 Advanced
68 1137 1037 RW Enable DirectSwitch Toggle Mode on DI 2.3 Advanced
69 1138 1038 RW Enable DirectSwitch Toggle Mode on DI 2.4 Advanced
70 1139 1039 RW Enable DirectSwitch Toggle Mode on DI 2.5 Advanced
71 1140 1040 RW Enable DirectSwitch Toggle Mode on DI 2.6 Advanced
72 1141 1041 RW Enable DirectSwitch Toggle Mode on DI 2.7 Advanced
73 1142 1042 RW Enable DirectSwitch Toggle Mode on DI 2.8 Advanced
74 1143 1043 RW Enable DirectSwitch Toggle Mode on DI 2.9 Advanced
75 1144 1044 RW Enable DirectSwitch Toggle Mode on DI 2.10 Advanced
76 1145 1045 RW Enable DirectSwitch Toggle Mode on DI 2.11 Advanced
77 1146 1046 RW Enable DirectSwitch Toggle Mode on DI 2.12 Advanced
78 1147 1047 RW Enable DirectSwitch Toggle Mode on DI 2.13 Advanced
79 1148 1048 RW Enable DirectSwitch Toggle Mode on DI 2.14 Advanced

View File

@ -0,0 +1,79 @@
Via Unit 0,Via Unit 3,R/W,Content,Category
200,0,RW,Relay Output 3.1,Basic
201,1,RW,Relay Output 3.2,Basic
202,2,RW,Relay Output 3.3,Basic
203,3,RW,Relay Output 3.4,Basic
204,4,RW,Relay Output 3.5,Basic
205,5,RW,Relay Output 3.6,Basic
206,6,RW,Relay Output 3.7,Basic
207,7,RW,Relay Output 3.8,Basic
208,8,RW,Relay Output 3.9,Basic
209,9,RW,Relay Output 3.10,Basic
210,10,RW,Relay Output 3.11,Basic
211,11,RW,Relay Output 3.12,Basic
212,12,RW,Relay Output 3.13,Basic
213,13,RW,Relay Output 3.14,Basic
214,14,R,Digital Input 3.1,Basic
215,15,R,Digital Input 3.2,Basic
216,16,R,Digital Input 3.3,Basic
217,17,R,Digital Input 3.4,Basic
218,18,R,Digital Input 3.5,Basic
219,19,R,Digital Input 3.6,Basic
220,20,R,Digital Input 3.7,Basic
221,21,R,Digital Input 3.8,Basic
222,22,R,Digital Input 3.9,Basic
223,23,R,Digital Input 3.10,Basic
224,24,R,Digital Input 3.11,Basic
225,25,R,Digital Input 3.12,Basic
226,26,R,Digital Input 3.13,Basic
227,27,R,Digital Input 3.14,Basic
228,28,R,Digital Input 3.15,Basic
229,29,R,Digital Input 3.16,Basic
1200,1000,RW,MWD reset indication,Advanced
1202,1002,R,Reset group MCU,Advanced
1203,1003,RW,Save current configuration and use on startup,Advanced
1204,1004,RW,(Internal) Firmware programming toggle,Expert
1205,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1206,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1207,1007,RW,Enable DirectSwitch on DI 3.1,Advanced
1208,1008,RW,Enable DirectSwitch on DI 3.2,Advanced
1209,1009,RW,Enable DirectSwitch on DI 3.3,Advanced
1210,1010,RW,Enable DirectSwitch on DI 3.4,Advanced
1211,1011,RW,Enable DirectSwitch on DI 3.5,Advanced
1212,1012,RW,Enable DirectSwitch on DI 3.6,Advanced
1213,1013,RW,Enable DirectSwitch on DI 3.7,Advanced
1214,1014,RW,Enable DirectSwitch on DI 3.8,Advanced
1215,1015,RW,Enable DirectSwitch on DI 3.9,Advanced
1216,1016,RW,Enable DirectSwitch on DI 3.10,Advanced
1217,1017,RW,Enable DirectSwitch on DI 3.11,Advanced
1218,1018,RW,Enable DirectSwitch on DI 3.12,Advanced
1219,1019,RW,Enable DirectSwitch on DI 3.13,Advanced
1220,1020,RW,Enable DirectSwitch on DI 3.14,Advanced
1221,1021,RW,Invert DirectSwitch Polarity on DI 3.1,Advanced
1222,1022,RW,Invert DirectSwitch Polarity on DI 3.2,Advanced
1223,1023,RW,Invert DirectSwitch Polarity on DI 3.3,Advanced
1224,1024,RW,Invert DirectSwitch Polarity on DI 3.4,Advanced
1225,1025,RW,Invert DirectSwitch Polarity on DI 3.5,Advanced
1226,1026,RW,Invert DirectSwitch Polarity on DI 3.6,Advanced
1227,1027,RW,Invert DirectSwitch Polarity on DI 3.7,Advanced
1228,1028,RW,Invert DirectSwitch Polarity on DI 3.8,Advanced
1229,1029,RW,Invert DirectSwitch Polarity on DI 3.9,Advanced
1230,1030,RW,Invert DirectSwitch Polarity on DI 3.10,Advanced
1231,1031,RW,Invert DirectSwitch Polarity on DI 3.11,Advanced
1232,1032,RW,Invert DirectSwitch Polarity on DI 3.12,Advanced
1233,1033,RW,Invert DirectSwitch Polarity on DI 3.13,Advanced
1234,1034,RW,Invert DirectSwitch Polarity on DI 3.14,Advanced
1235,1035,RW,Enable DirectSwitch Toggle Mode on DI 3.1,Advanced
1236,1036,RW,Enable DirectSwitch Toggle Mode on DI 3.2,Advanced
1237,1037,RW,Enable DirectSwitch Toggle Mode on DI 3.3,Advanced
1238,1038,RW,Enable DirectSwitch Toggle Mode on DI 3.4,Advanced
1239,1039,RW,Enable DirectSwitch Toggle Mode on DI 3.5,Advanced
1240,1040,RW,Enable DirectSwitch Toggle Mode on DI 3.6,Advanced
1241,1041,RW,Enable DirectSwitch Toggle Mode on DI 3.7,Advanced
1242,1042,RW,Enable DirectSwitch Toggle Mode on DI 3.8,Advanced
1243,1043,RW,Enable DirectSwitch Toggle Mode on DI 3.9,Advanced
1244,1044,RW,Enable DirectSwitch Toggle Mode on DI 3.10,Advanced
1245,1045,RW,Enable DirectSwitch Toggle Mode on DI 3.11,Advanced
1246,1046,RW,Enable DirectSwitch Toggle Mode on DI 3.12,Advanced
1247,1047,RW,Enable DirectSwitch Toggle Mode on DI 3.13,Advanced
1248,1048,RW,Enable DirectSwitch Toggle Mode on DI 3.14,Advanced
1 Via Unit 0 Via Unit 3 R/W Content Category
2 200 0 RW Relay Output 3.1 Basic
3 201 1 RW Relay Output 3.2 Basic
4 202 2 RW Relay Output 3.3 Basic
5 203 3 RW Relay Output 3.4 Basic
6 204 4 RW Relay Output 3.5 Basic
7 205 5 RW Relay Output 3.6 Basic
8 206 6 RW Relay Output 3.7 Basic
9 207 7 RW Relay Output 3.8 Basic
10 208 8 RW Relay Output 3.9 Basic
11 209 9 RW Relay Output 3.10 Basic
12 210 10 RW Relay Output 3.11 Basic
13 211 11 RW Relay Output 3.12 Basic
14 212 12 RW Relay Output 3.13 Basic
15 213 13 RW Relay Output 3.14 Basic
16 214 14 R Digital Input 3.1 Basic
17 215 15 R Digital Input 3.2 Basic
18 216 16 R Digital Input 3.3 Basic
19 217 17 R Digital Input 3.4 Basic
20 218 18 R Digital Input 3.5 Basic
21 219 19 R Digital Input 3.6 Basic
22 220 20 R Digital Input 3.7 Basic
23 221 21 R Digital Input 3.8 Basic
24 222 22 R Digital Input 3.9 Basic
25 223 23 R Digital Input 3.10 Basic
26 224 24 R Digital Input 3.11 Basic
27 225 25 R Digital Input 3.12 Basic
28 226 26 R Digital Input 3.13 Basic
29 227 27 R Digital Input 3.14 Basic
30 228 28 R Digital Input 3.15 Basic
31 229 29 R Digital Input 3.16 Basic
32 1200 1000 RW MWD reset indication Advanced
33 1202 1002 R Reset group MCU Advanced
34 1203 1003 RW Save current configuration and use on startup Advanced
35 1204 1004 RW (Internal) Firmware programming toggle Expert
36 1205 1005 RW (Internal) Firmware reprogramming toggle Expert
37 1206 1006 RW (Internal) Firmware calibration programming toggle Expert
38 1207 1007 RW Enable DirectSwitch on DI 3.1 Advanced
39 1208 1008 RW Enable DirectSwitch on DI 3.2 Advanced
40 1209 1009 RW Enable DirectSwitch on DI 3.3 Advanced
41 1210 1010 RW Enable DirectSwitch on DI 3.4 Advanced
42 1211 1011 RW Enable DirectSwitch on DI 3.5 Advanced
43 1212 1012 RW Enable DirectSwitch on DI 3.6 Advanced
44 1213 1013 RW Enable DirectSwitch on DI 3.7 Advanced
45 1214 1014 RW Enable DirectSwitch on DI 3.8 Advanced
46 1215 1015 RW Enable DirectSwitch on DI 3.9 Advanced
47 1216 1016 RW Enable DirectSwitch on DI 3.10 Advanced
48 1217 1017 RW Enable DirectSwitch on DI 3.11 Advanced
49 1218 1018 RW Enable DirectSwitch on DI 3.12 Advanced
50 1219 1019 RW Enable DirectSwitch on DI 3.13 Advanced
51 1220 1020 RW Enable DirectSwitch on DI 3.14 Advanced
52 1221 1021 RW Invert DirectSwitch Polarity on DI 3.1 Advanced
53 1222 1022 RW Invert DirectSwitch Polarity on DI 3.2 Advanced
54 1223 1023 RW Invert DirectSwitch Polarity on DI 3.3 Advanced
55 1224 1024 RW Invert DirectSwitch Polarity on DI 3.4 Advanced
56 1225 1025 RW Invert DirectSwitch Polarity on DI 3.5 Advanced
57 1226 1026 RW Invert DirectSwitch Polarity on DI 3.6 Advanced
58 1227 1027 RW Invert DirectSwitch Polarity on DI 3.7 Advanced
59 1228 1028 RW Invert DirectSwitch Polarity on DI 3.8 Advanced
60 1229 1029 RW Invert DirectSwitch Polarity on DI 3.9 Advanced
61 1230 1030 RW Invert DirectSwitch Polarity on DI 3.10 Advanced
62 1231 1031 RW Invert DirectSwitch Polarity on DI 3.11 Advanced
63 1232 1032 RW Invert DirectSwitch Polarity on DI 3.12 Advanced
64 1233 1033 RW Invert DirectSwitch Polarity on DI 3.13 Advanced
65 1234 1034 RW Invert DirectSwitch Polarity on DI 3.14 Advanced
66 1235 1035 RW Enable DirectSwitch Toggle Mode on DI 3.1 Advanced
67 1236 1036 RW Enable DirectSwitch Toggle Mode on DI 3.2 Advanced
68 1237 1037 RW Enable DirectSwitch Toggle Mode on DI 3.3 Advanced
69 1238 1038 RW Enable DirectSwitch Toggle Mode on DI 3.4 Advanced
70 1239 1039 RW Enable DirectSwitch Toggle Mode on DI 3.5 Advanced
71 1240 1040 RW Enable DirectSwitch Toggle Mode on DI 3.6 Advanced
72 1241 1041 RW Enable DirectSwitch Toggle Mode on DI 3.7 Advanced
73 1242 1042 RW Enable DirectSwitch Toggle Mode on DI 3.8 Advanced
74 1243 1043 RW Enable DirectSwitch Toggle Mode on DI 3.9 Advanced
75 1244 1044 RW Enable DirectSwitch Toggle Mode on DI 3.10 Advanced
76 1245 1045 RW Enable DirectSwitch Toggle Mode on DI 3.11 Advanced
77 1246 1046 RW Enable DirectSwitch Toggle Mode on DI 3.12 Advanced
78 1247 1047 RW Enable DirectSwitch Toggle Mode on DI 3.13 Advanced
79 1248 1048 RW Enable DirectSwitch Toggle Mode on DI 3.14 Advanced

View File

@ -0,0 +1,97 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
1,1,1,RW,MixedBits,Digital Output 1.1,0,Basic
1,1,1,RW,MixedBits,Digital Output 1.2,1,Basic
1,1,1,RW,MixedBits,Digital Output 1.3,2,Basic
1,1,1,RW,MixedBits,Digital Output 1.4,3,Basic
2,2,1,RW,Word,Analog Output (raw value) 1.1,,Obsolete
3,3,1,R,Word,Analog Input (raw value) 1.1,,Obsolete
4,4,1,R,Word,Analog Input/Output (raw value) 1.1,,Obsolete
5,5,1,R,Word,VRefInt of MCU,,Expert
6,6,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
7,7,1,R,Word,Length of RS485 TX Queue 1.1,,Obsolete
8,8,2,RW,DWord,Counter of Digital Input 1.1,,Basic
10,10,2,RW,DWord,Counter of Digital Input 1.2,,Basic
12,12,2,RW,DWord,Counter of Digital Input 1.3,,Basic
14,14,2,RW,DWord,Counter of Digital Input 1.4,,Basic
16,16,1,RW,Word,PWM Duty Cycle of DO 1.1,,Basic
17,17,1,RW,Word,PWM Duty Cycle of DO 1.2,,Basic
18,18,1,RW,Word,PWM Duty Cycle of DO 1.3,,Basic
19,19,1,RW,Word,PWM Duty Cycle of DO 1.4,,Basic
20,20,1,RW,MixedBits,User LED 1.1,0,Basic
20,20,1,RW,MixedBits,User LED 1.2,1,Basic
20,20,1,RW,MixedBits,User LED 1.3,2,Basic
20,20,1,RW,MixedBits,User LED 1.4,3,Basic
21,21,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1017,1017,1,RW,Word,PWM Group prescaler,,Basic
1018,1018,1,RW,Word,PWM Group cycle length,,Basic
1019,1019,1,RW,Word,Analog Output Configuration(U/I/R-measure) 1.1,,Basic
1020,1020,1,RW,Word,Analog Output Voltage deviation 1.1,,Expert
1021,1021,1,RW,Word,Analog Output Voltage offset 1.1,,Expert
1022,1022,1,RW,Word,Analog Output Current deviation 1.1,,Expert
1023,1023,1,RW,Word,Analog Output Current offset 1.1,,Expert
1024,1024,1,RW,Word,Analog Input Configuration(U/I) 1.1,,Basic
1025,1025,1,RW,Word,Analog Input Voltage deviation 1.1,,Expert
1026,1026,1,RW,Word,Analog Input Voltage offset 1.1,,Expert
1027,1027,1,RW,Word,Analog Input Current deviation 1.1,,Expert
1028,1028,1,RW,Word,Analog Input Current offset 1.1,,Expert
1029,1029,1,RW,Word,Analog Input/Output Voltage deviation (input side) 1.1,,Expert
1030,1030,1,RW,Word,Analog Input/Output Voltage offset (input side) 1.1,,Expert
1031,1031,1,RW,MixedBits,RS485 Configuration 1.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
3000,3000,2,RW,Real,Analog Output value 1.1,,Basic
3002,3002,2,R,Real,Analog Input value 1.1,,Basic
3004,3004,2,R,Real,(Internal) Analog Output measured voltage value 1.1,,Expert
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 1 1 1 RW MixedBits Digital Output 1.1 0 Basic
7 1 1 1 RW MixedBits Digital Output 1.2 1 Basic
8 1 1 1 RW MixedBits Digital Output 1.3 2 Basic
9 1 1 1 RW MixedBits Digital Output 1.4 3 Basic
10 2 2 1 RW Word Analog Output (raw value) 1.1 Obsolete
11 3 3 1 R Word Analog Input (raw value) 1.1 Obsolete
12 4 4 1 R Word Analog Input/Output (raw value) 1.1 Obsolete
13 5 5 1 R Word VRefInt of MCU Expert
14 6 6 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
15 7 7 1 R Word Length of RS485 TX Queue 1.1 Obsolete
16 8 8 2 RW DWord Counter of Digital Input 1.1 Basic
17 10 10 2 RW DWord Counter of Digital Input 1.2 Basic
18 12 12 2 RW DWord Counter of Digital Input 1.3 Basic
19 14 14 2 RW DWord Counter of Digital Input 1.4 Basic
20 16 16 1 RW Word PWM Duty Cycle of DO 1.1 Basic
21 17 17 1 RW Word PWM Duty Cycle of DO 1.2 Basic
22 18 18 1 RW Word PWM Duty Cycle of DO 1.3 Basic
23 19 19 1 RW Word PWM Duty Cycle of DO 1.4 Basic
24 20 20 1 RW MixedBits User LED 1.1 0 Basic
25 20 20 1 RW MixedBits User LED 1.2 1 Basic
26 20 20 1 RW MixedBits User LED 1.3 2 Basic
27 20 20 1 RW MixedBits User LED 1.4 3 Basic
28 21 21 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
29 21 21 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
30 21 21 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
31 21 21 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
32 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
33 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
34 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
35 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
36 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
37 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
38 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
39 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
40 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
41 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
42 505 505 1 W Word Reserved - Do Not Use Reserved
43 506 506 1 W Word Reserved - Do Not Use Reserved
44 507 507 1 W Word Reserved - Do Not Use Reserved
45 508 508 1 W Word Reserved - Do Not Use Reserved
46 509 509 1 W Word Reserved - Do Not Use Reserved
47 510 1 RW Word (Internal) Stored Firmware Version Expert
48 511 1 RW Word (Internal) Stored Firmware Revision Expert
49 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
50 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
51 514 1 RW Word (Internal) Stored PCB Revision Expert
52 515 1 RW Word (Internal) Stored PCB Serial Number Expert
53 516 1 RW Word (Internal) Stored HW Revision Number Expert
54 1000 1000 1 R Word Firmware Version Expert
55 1001 1001 1 R Word Number of I/Os Advanced
56 1002 1002 1 R Word Number of peripherals Advanced
57 1003 1003 1 R Word Firmware ID Expert
58 1004 1004 1 R Word Hardware ID Expert
59 1005 1005 2 R DWord PCB Serial Number Expert
60 1007 1007 1 RW Word Interrupt Mask Expert
61 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
62 1009 1009 1 R Word VRef of MCU Expert
63 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
64 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
65 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
66 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
67 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
68 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
69 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
70 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
71 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
72 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
73 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
74 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
75 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
76 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
77 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
78 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
79 1017 1017 1 RW Word PWM Group prescaler Basic
80 1018 1018 1 RW Word PWM Group cycle length Basic
81 1019 1019 1 RW Word Analog Output Configuration(U/I/R-measure) 1.1 Basic
82 1020 1020 1 RW Word Analog Output Voltage deviation 1.1 Expert
83 1021 1021 1 RW Word Analog Output Voltage offset 1.1 Expert
84 1022 1022 1 RW Word Analog Output Current deviation 1.1 Expert
85 1023 1023 1 RW Word Analog Output Current offset 1.1 Expert
86 1024 1024 1 RW Word Analog Input Configuration(U/I) 1.1 Basic
87 1025 1025 1 RW Word Analog Input Voltage deviation 1.1 Expert
88 1026 1026 1 RW Word Analog Input Voltage offset 1.1 Expert
89 1027 1027 1 RW Word Analog Input Current deviation 1.1 Expert
90 1028 1028 1 RW Word Analog Input Current offset 1.1 Expert
91 1029 1029 1 RW Word Analog Input/Output Voltage deviation (input side) 1.1 Expert
92 1030 1030 1 RW Word Analog Input/Output Voltage offset (input side) 1.1 Expert
93 1031 1031 1 RW MixedBits RS485 Configuration 1.1 Obsolete
94 2000 220 W Word Reserved - Do Not Use Reserved
95 3000 3000 2 RW Real Analog Output value 1.1 Basic
96 3002 3002 2 R Real Analog Input value 1.1 Basic
97 3004 3004 2 R Real (Internal) Analog Output measured voltage value 1.1 Expert

View File

@ -0,0 +1,168 @@
Via Unit 0,Via Unit 2,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
100,0,1,R,MixedBits,Digital Input 2.1,0,Basic
100,0,1,R,MixedBits,Digital Input 2.2,1,Basic
100,0,1,R,MixedBits,Digital Input 2.3,2,Basic
100,0,1,R,MixedBits,Digital Input 2.4,3,Basic
100,0,1,R,MixedBits,Digital Input 2.5,4,Basic
100,0,1,R,MixedBits,Digital Input 2.6,5,Basic
100,0,1,R,MixedBits,Digital Input 2.7,6,Basic
100,0,1,R,MixedBits,Digital Input 2.8,7,Basic
100,0,1,R,MixedBits,Digital Input 2.9,8,Basic
100,0,1,R,MixedBits,Digital Input 2.10,9,Basic
100,0,1,R,MixedBits,Digital Input 2.11,10,Basic
100,0,1,R,MixedBits,Digital Input 2.12,11,Basic
100,0,1,R,MixedBits,Digital Input 2.13,12,Basic
100,0,1,R,MixedBits,Digital Input 2.14,13,Basic
100,0,1,R,MixedBits,Digital Input 2.15,14,Basic
100,0,1,R,MixedBits,Digital Input 2.16,15,Basic
101,1,1,RW,MixedBits,Relay Output 2.1,0,Basic
101,1,1,RW,MixedBits,Relay Output 2.2,1,Basic
101,1,1,RW,MixedBits,Relay Output 2.3,2,Basic
101,1,1,RW,MixedBits,Relay Output 2.4,3,Basic
101,1,1,RW,MixedBits,Relay Output 2.5,4,Basic
101,1,1,RW,MixedBits,Relay Output 2.6,5,Basic
101,1,1,RW,MixedBits,Relay Output 2.7,6,Basic
101,1,1,RW,MixedBits,Relay Output 2.8,7,Basic
101,1,1,RW,MixedBits,Relay Output 2.9,8,Basic
101,1,1,RW,MixedBits,Relay Output 2.10,9,Basic
101,1,1,RW,MixedBits,Relay Output 2.11,10,Basic
101,1,1,RW,MixedBits,Relay Output 2.12,11,Basic
101,1,1,RW,MixedBits,Relay Output 2.13,12,Basic
101,1,1,RW,MixedBits,Relay Output 2.14,13,Basic
102,2,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
103,3,2,RW,DWord,Counter of Digital Input 2.1,,Basic
105,5,2,RW,DWord,Counter of Digital Input 2.2,,Basic
107,7,2,RW,DWord,Counter of Digital Input 2.3,,Basic
109,9,2,RW,DWord,Counter of Digital Input 2.4,,Basic
111,11,2,RW,DWord,Counter of Digital Input 2.5,,Basic
113,13,2,RW,DWord,Counter of Digital Input 2.6,,Basic
115,15,2,RW,DWord,Counter of Digital Input 2.7,,Basic
117,17,2,RW,DWord,Counter of Digital Input 2.8,,Basic
119,19,2,RW,DWord,Counter of Digital Input 2.9,,Basic
121,21,2,RW,DWord,Counter of Digital Input 2.10,,Basic
123,23,2,RW,DWord,Counter of Digital Input 2.11,,Basic
125,25,2,RW,DWord,Counter of Digital Input 2.12,,Basic
127,27,2,RW,DWord,Counter of Digital Input 2.13,,Basic
129,29,2,RW,DWord,Counter of Digital Input 2.14,,Basic
131,31,2,RW,DWord,Counter of Digital Input 2.15,,Basic
133,33,2,RW,DWord,Counter of Digital Input 2.16,,Basic
135,35,1,W,Word,Reserved - Do Not Use,,Reserved
136,36,1,W,Word,Reserved - Do Not Use,,Reserved
137,37,1,W,Word,Reserved - Do Not Use,,Reserved
138,38,1,W,Word,Reserved - Do Not Use,,Reserved
139,39,1,RW,MixedBits,Synchronised DO/RO 2.1,0,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.2,1,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.3,2,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.4,3,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.5,4,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.6,5,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.7,6,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.8,7,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.9,8,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.10,9,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.11,10,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.12,11,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.13,12,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.14,13,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.1,0,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.2,1,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.3,2,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.4,3,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.5,4,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.6,5,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.7,6,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.8,7,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.9,8,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.10,9,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.11,10,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.12,11,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.13,12,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.14,13,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 2.1,,Obsolete
600,500,1,W,Word,Reserved - Do Not Use,,Reserved
601,501,1,W,Word,Reserved - Do Not Use,,Reserved
602,502,1,W,Word,Reserved - Do Not Use,,Reserved
603,503,1,W,Word,Reserved - Do Not Use,,Reserved
604,504,1,W,Word,Reserved - Do Not Use,,Reserved
605,505,1,W,Word,Reserved - Do Not Use,,Reserved
606,506,1,W,Word,Reserved - Do Not Use,,Reserved
607,507,1,W,Word,Reserved - Do Not Use,,Reserved
608,508,1,W,Word,Reserved - Do Not Use,,Reserved
609,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1100,1000,1,R,Word,Firmware Version,,Expert
1101,1001,1,R,Word,Number of I/Os,,Advanced
1102,1002,1,R,Word,Number of peripherals,,Advanced
1103,1003,1,R,Word,Firmware ID,,Expert
1104,1004,1,R,Word,Hardware ID,,Expert
1105,1005,2,R,DWord,PCB Serial Number,,Expert
1107,1007,1,RW,Word,Interrupt Mask,,Expert
1108,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1109,1009,1,R,Word,VRef of MCU,,Expert
1110,1010,1,RW,Word,Debounce time (in 100us) for DI 2.1,,Advanced
1111,1011,1,RW,Word,Debounce time (in 100us) for DI 2.2,,Advanced
1112,1012,1,RW,Word,Debounce time (in 100us) for DI 2.3,,Advanced
1113,1013,1,RW,Word,Debounce time (in 100us) for DI 2.4,,Advanced
1114,1014,1,RW,Word,Debounce time (in 100us) for DI 2.5,,Advanced
1115,1015,1,RW,Word,Debounce time (in 100us) for DI 2.6,,Advanced
1116,1016,1,RW,Word,Debounce time (in 100us) for DI 2.7,,Advanced
1117,1017,1,RW,Word,Debounce time (in 100us) for DI 2.8,,Advanced
1118,1018,1,RW,Word,Debounce time (in 100us) for DI 2.9,,Advanced
1119,1019,1,RW,Word,Debounce time (in 100us) for DI 2.10,,Advanced
1120,1020,1,RW,Word,Debounce time (in 100us) for DI 2.11,,Advanced
1121,1021,1,RW,Word,Debounce time (in 100us) for DI 2.12,,Advanced
1122,1022,1,RW,Word,Debounce time (in 100us) for DI 2.13,,Advanced
1123,1023,1,RW,Word,Debounce time (in 100us) for DI 2.14,,Advanced
1124,1024,1,RW,Word,Debounce time (in 100us) for DI 2.15,,Advanced
1125,1025,1,RW,Word,Debounce time (in 100us) for DI 2.16,,Advanced
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.1,0,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.2,1,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.3,2,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.4,3,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.5,4,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.6,5,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.7,6,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.8,7,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.9,8,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.10,9,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.11,10,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.12,11,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.13,12,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.14,13,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.1,0,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.2,1,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.3,2,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.4,3,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.5,4,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.6,5,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.7,6,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.8,7,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.9,8,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.10,9,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.11,10,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.12,11,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.13,12,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.14,13,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.1,0,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.2,1,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.3,2,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.4,3,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.5,4,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.6,5,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.7,6,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.8,7,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.9,8,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.10,9,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.11,10,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.12,11,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.13,12,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.14,13,Basic
1129,1029,1,W,Word,Reserved - Do Not Use,,Reserved
1130,1030,1,W,Word,Reserved - Do Not Use,,Reserved
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 2 Register Count R/W Data Type Content Start Bit Nr. Category
2 100 0 1 R MixedBits Digital Input 2.1 0 Basic
3 100 0 1 R MixedBits Digital Input 2.2 1 Basic
4 100 0 1 R MixedBits Digital Input 2.3 2 Basic
5 100 0 1 R MixedBits Digital Input 2.4 3 Basic
6 100 0 1 R MixedBits Digital Input 2.5 4 Basic
7 100 0 1 R MixedBits Digital Input 2.6 5 Basic
8 100 0 1 R MixedBits Digital Input 2.7 6 Basic
9 100 0 1 R MixedBits Digital Input 2.8 7 Basic
10 100 0 1 R MixedBits Digital Input 2.9 8 Basic
11 100 0 1 R MixedBits Digital Input 2.10 9 Basic
12 100 0 1 R MixedBits Digital Input 2.11 10 Basic
13 100 0 1 R MixedBits Digital Input 2.12 11 Basic
14 100 0 1 R MixedBits Digital Input 2.13 12 Basic
15 100 0 1 R MixedBits Digital Input 2.14 13 Basic
16 100 0 1 R MixedBits Digital Input 2.15 14 Basic
17 100 0 1 R MixedBits Digital Input 2.16 15 Basic
18 101 1 1 RW MixedBits Relay Output 2.1 0 Basic
19 101 1 1 RW MixedBits Relay Output 2.2 1 Basic
20 101 1 1 RW MixedBits Relay Output 2.3 2 Basic
21 101 1 1 RW MixedBits Relay Output 2.4 3 Basic
22 101 1 1 RW MixedBits Relay Output 2.5 4 Basic
23 101 1 1 RW MixedBits Relay Output 2.6 5 Basic
24 101 1 1 RW MixedBits Relay Output 2.7 6 Basic
25 101 1 1 RW MixedBits Relay Output 2.8 7 Basic
26 101 1 1 RW MixedBits Relay Output 2.9 8 Basic
27 101 1 1 RW MixedBits Relay Output 2.10 9 Basic
28 101 1 1 RW MixedBits Relay Output 2.11 10 Basic
29 101 1 1 RW MixedBits Relay Output 2.12 11 Basic
30 101 1 1 RW MixedBits Relay Output 2.13 12 Basic
31 101 1 1 RW MixedBits Relay Output 2.14 13 Basic
32 102 2 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
33 103 3 2 RW DWord Counter of Digital Input 2.1 Basic
34 105 5 2 RW DWord Counter of Digital Input 2.2 Basic
35 107 7 2 RW DWord Counter of Digital Input 2.3 Basic
36 109 9 2 RW DWord Counter of Digital Input 2.4 Basic
37 111 11 2 RW DWord Counter of Digital Input 2.5 Basic
38 113 13 2 RW DWord Counter of Digital Input 2.6 Basic
39 115 15 2 RW DWord Counter of Digital Input 2.7 Basic
40 117 17 2 RW DWord Counter of Digital Input 2.8 Basic
41 119 19 2 RW DWord Counter of Digital Input 2.9 Basic
42 121 21 2 RW DWord Counter of Digital Input 2.10 Basic
43 123 23 2 RW DWord Counter of Digital Input 2.11 Basic
44 125 25 2 RW DWord Counter of Digital Input 2.12 Basic
45 127 27 2 RW DWord Counter of Digital Input 2.13 Basic
46 129 29 2 RW DWord Counter of Digital Input 2.14 Basic
47 131 31 2 RW DWord Counter of Digital Input 2.15 Basic
48 133 33 2 RW DWord Counter of Digital Input 2.16 Basic
49 135 35 1 W Word Reserved - Do Not Use Reserved
50 136 36 1 W Word Reserved - Do Not Use Reserved
51 137 37 1 W Word Reserved - Do Not Use Reserved
52 138 38 1 W Word Reserved - Do Not Use Reserved
53 139 39 1 RW MixedBits Synchronised DO/RO 2.1 0 Advanced
54 139 39 1 RW MixedBits Synchronised DO/RO 2.2 1 Advanced
55 139 39 1 RW MixedBits Synchronised DO/RO 2.3 2 Advanced
56 139 39 1 RW MixedBits Synchronised DO/RO 2.4 3 Advanced
57 139 39 1 RW MixedBits Synchronised DO/RO 2.5 4 Advanced
58 139 39 1 RW MixedBits Synchronised DO/RO 2.6 5 Advanced
59 139 39 1 RW MixedBits Synchronised DO/RO 2.7 6 Advanced
60 139 39 1 RW MixedBits Synchronised DO/RO 2.8 7 Advanced
61 139 39 1 RW MixedBits Synchronised DO/RO 2.9 8 Advanced
62 139 39 1 RW MixedBits Synchronised DO/RO 2.10 9 Advanced
63 139 39 1 RW MixedBits Synchronised DO/RO 2.11 10 Advanced
64 139 39 1 RW MixedBits Synchronised DO/RO 2.12 11 Advanced
65 139 39 1 RW MixedBits Synchronised DO/RO 2.13 12 Advanced
66 139 39 1 RW MixedBits Synchronised DO/RO 2.14 13 Advanced
67 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.1 0 Advanced
68 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.2 1 Advanced
69 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.3 2 Advanced
70 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.4 3 Advanced
71 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.5 4 Advanced
72 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.6 5 Advanced
73 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.7 6 Advanced
74 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.8 7 Advanced
75 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.9 8 Advanced
76 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.10 9 Advanced
77 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.11 10 Advanced
78 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.12 11 Advanced
79 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.13 12 Advanced
80 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.14 13 Advanced
81 100 2 RW DWord (Internal) RS485 Full Mode Configuration 2.1 Obsolete
82 600 500 1 W Word Reserved - Do Not Use Reserved
83 601 501 1 W Word Reserved - Do Not Use Reserved
84 602 502 1 W Word Reserved - Do Not Use Reserved
85 603 503 1 W Word Reserved - Do Not Use Reserved
86 604 504 1 W Word Reserved - Do Not Use Reserved
87 605 505 1 W Word Reserved - Do Not Use Reserved
88 606 506 1 W Word Reserved - Do Not Use Reserved
89 607 507 1 W Word Reserved - Do Not Use Reserved
90 608 508 1 W Word Reserved - Do Not Use Reserved
91 609 509 1 W Word Reserved - Do Not Use Reserved
92 510 1 RW Word (Internal) Stored Firmware Version Expert
93 511 1 RW Word (Internal) Stored Firmware Revision Expert
94 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
95 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
96 514 1 RW Word (Internal) Stored PCB Revision Expert
97 515 1 RW Word (Internal) Stored PCB Serial Number Expert
98 516 1 RW Word (Internal) Stored HW Revision Number Expert
99 1100 1000 1 R Word Firmware Version Expert
100 1101 1001 1 R Word Number of I/Os Advanced
101 1102 1002 1 R Word Number of peripherals Advanced
102 1103 1003 1 R Word Firmware ID Expert
103 1104 1004 1 R Word Hardware ID Expert
104 1105 1005 2 R DWord PCB Serial Number Expert
105 1107 1007 1 RW Word Interrupt Mask Expert
106 1108 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
107 1109 1009 1 R Word VRef of MCU Expert
108 1110 1010 1 RW Word Debounce time (in 100us) for DI 2.1 Advanced
109 1111 1011 1 RW Word Debounce time (in 100us) for DI 2.2 Advanced
110 1112 1012 1 RW Word Debounce time (in 100us) for DI 2.3 Advanced
111 1113 1013 1 RW Word Debounce time (in 100us) for DI 2.4 Advanced
112 1114 1014 1 RW Word Debounce time (in 100us) for DI 2.5 Advanced
113 1115 1015 1 RW Word Debounce time (in 100us) for DI 2.6 Advanced
114 1116 1016 1 RW Word Debounce time (in 100us) for DI 2.7 Advanced
115 1117 1017 1 RW Word Debounce time (in 100us) for DI 2.8 Advanced
116 1118 1018 1 RW Word Debounce time (in 100us) for DI 2.9 Advanced
117 1119 1019 1 RW Word Debounce time (in 100us) for DI 2.10 Advanced
118 1120 1020 1 RW Word Debounce time (in 100us) for DI 2.11 Advanced
119 1121 1021 1 RW Word Debounce time (in 100us) for DI 2.12 Advanced
120 1122 1022 1 RW Word Debounce time (in 100us) for DI 2.13 Advanced
121 1123 1023 1 RW Word Debounce time (in 100us) for DI 2.14 Advanced
122 1124 1024 1 RW Word Debounce time (in 100us) for DI 2.15 Advanced
123 1125 1025 1 RW Word Debounce time (in 100us) for DI 2.16 Advanced
124 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.1 0 Basic
125 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.2 1 Basic
126 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.3 2 Basic
127 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.4 3 Basic
128 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.5 4 Basic
129 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.6 5 Basic
130 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.7 6 Basic
131 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.8 7 Basic
132 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.9 8 Basic
133 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.10 9 Basic
134 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.11 10 Basic
135 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.12 11 Basic
136 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.13 12 Basic
137 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.14 13 Basic
138 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.1 0 Basic
139 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.2 1 Basic
140 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.3 2 Basic
141 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.4 3 Basic
142 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.5 4 Basic
143 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.6 5 Basic
144 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.7 6 Basic
145 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.8 7 Basic
146 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.9 8 Basic
147 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.10 9 Basic
148 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.11 10 Basic
149 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.12 11 Basic
150 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.13 12 Basic
151 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.14 13 Basic
152 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.1 0 Basic
153 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.2 1 Basic
154 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.3 2 Basic
155 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.4 3 Basic
156 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.5 4 Basic
157 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.6 5 Basic
158 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.7 6 Basic
159 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.8 7 Basic
160 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.9 8 Basic
161 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.10 9 Basic
162 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.11 10 Basic
163 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.12 11 Basic
164 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.13 12 Basic
165 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.14 13 Basic
166 1129 1029 1 W Word Reserved - Do Not Use Reserved
167 1130 1030 1 W Word Reserved - Do Not Use Reserved
168 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,168 @@
Via Unit 0,Via Unit 3,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
200,0,1,R,MixedBits,Digital Input 3.1,0,Basic
200,0,1,R,MixedBits,Digital Input 3.2,1,Basic
200,0,1,R,MixedBits,Digital Input 3.3,2,Basic
200,0,1,R,MixedBits,Digital Input 3.4,3,Basic
200,0,1,R,MixedBits,Digital Input 3.5,4,Basic
200,0,1,R,MixedBits,Digital Input 3.6,5,Basic
200,0,1,R,MixedBits,Digital Input 3.7,6,Basic
200,0,1,R,MixedBits,Digital Input 3.8,7,Basic
200,0,1,R,MixedBits,Digital Input 3.9,8,Basic
200,0,1,R,MixedBits,Digital Input 3.10,9,Basic
200,0,1,R,MixedBits,Digital Input 3.11,10,Basic
200,0,1,R,MixedBits,Digital Input 3.12,11,Basic
200,0,1,R,MixedBits,Digital Input 3.13,12,Basic
200,0,1,R,MixedBits,Digital Input 3.14,13,Basic
200,0,1,R,MixedBits,Digital Input 3.15,14,Basic
200,0,1,R,MixedBits,Digital Input 3.16,15,Basic
201,1,1,RW,MixedBits,Relay Output 3.1,0,Basic
201,1,1,RW,MixedBits,Relay Output 3.2,1,Basic
201,1,1,RW,MixedBits,Relay Output 3.3,2,Basic
201,1,1,RW,MixedBits,Relay Output 3.4,3,Basic
201,1,1,RW,MixedBits,Relay Output 3.5,4,Basic
201,1,1,RW,MixedBits,Relay Output 3.6,5,Basic
201,1,1,RW,MixedBits,Relay Output 3.7,6,Basic
201,1,1,RW,MixedBits,Relay Output 3.8,7,Basic
201,1,1,RW,MixedBits,Relay Output 3.9,8,Basic
201,1,1,RW,MixedBits,Relay Output 3.10,9,Basic
201,1,1,RW,MixedBits,Relay Output 3.11,10,Basic
201,1,1,RW,MixedBits,Relay Output 3.12,11,Basic
201,1,1,RW,MixedBits,Relay Output 3.13,12,Basic
201,1,1,RW,MixedBits,Relay Output 3.14,13,Basic
202,2,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
203,3,2,RW,DWord,Counter of Digital Input 3.1,,Basic
205,5,2,RW,DWord,Counter of Digital Input 3.2,,Basic
207,7,2,RW,DWord,Counter of Digital Input 3.3,,Basic
209,9,2,RW,DWord,Counter of Digital Input 3.4,,Basic
211,11,2,RW,DWord,Counter of Digital Input 3.5,,Basic
213,13,2,RW,DWord,Counter of Digital Input 3.6,,Basic
215,15,2,RW,DWord,Counter of Digital Input 3.7,,Basic
217,17,2,RW,DWord,Counter of Digital Input 3.8,,Basic
219,19,2,RW,DWord,Counter of Digital Input 3.9,,Basic
221,21,2,RW,DWord,Counter of Digital Input 3.10,,Basic
223,23,2,RW,DWord,Counter of Digital Input 3.11,,Basic
225,25,2,RW,DWord,Counter of Digital Input 3.12,,Basic
227,27,2,RW,DWord,Counter of Digital Input 3.13,,Basic
229,29,2,RW,DWord,Counter of Digital Input 3.14,,Basic
231,31,2,RW,DWord,Counter of Digital Input 3.15,,Basic
233,33,2,RW,DWord,Counter of Digital Input 3.16,,Basic
235,35,1,W,Word,Reserved - Do Not Use,,Reserved
236,36,1,W,Word,Reserved - Do Not Use,,Reserved
237,37,1,W,Word,Reserved - Do Not Use,,Reserved
238,38,1,W,Word,Reserved - Do Not Use,,Reserved
239,39,1,RW,MixedBits,Synchronised DO/RO 3.1,0,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.2,1,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.3,2,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.4,3,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.5,4,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.6,5,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.7,6,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.8,7,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.9,8,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.10,9,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.11,10,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.12,11,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.13,12,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.14,13,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.1,0,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.2,1,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.3,2,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.4,3,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.5,4,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.6,5,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.7,6,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.8,7,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.9,8,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.10,9,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.11,10,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.12,11,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.13,12,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.14,13,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 3.1,,Obsolete
700,500,1,W,Word,Reserved - Do Not Use,,Reserved
701,501,1,W,Word,Reserved - Do Not Use,,Reserved
702,502,1,W,Word,Reserved - Do Not Use,,Reserved
703,503,1,W,Word,Reserved - Do Not Use,,Reserved
704,504,1,W,Word,Reserved - Do Not Use,,Reserved
705,505,1,W,Word,Reserved - Do Not Use,,Reserved
706,506,1,W,Word,Reserved - Do Not Use,,Reserved
707,507,1,W,Word,Reserved - Do Not Use,,Reserved
708,508,1,W,Word,Reserved - Do Not Use,,Reserved
709,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1200,1000,1,R,Word,Firmware Version,,Expert
1201,1001,1,R,Word,Number of I/Os,,Advanced
1202,1002,1,R,Word,Number of peripherals,,Advanced
1203,1003,1,R,Word,Firmware ID,,Expert
1204,1004,1,R,Word,Hardware ID,,Expert
1205,1005,2,R,DWord,PCB Serial Number,,Expert
1207,1007,1,RW,Word,Interrupt Mask,,Expert
1208,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1209,1009,1,R,Word,VRef of MCU,,Expert
1210,1010,1,RW,Word,Debounce time (in 100us) for DI 3.1,,Advanced
1211,1011,1,RW,Word,Debounce time (in 100us) for DI 3.2,,Advanced
1212,1012,1,RW,Word,Debounce time (in 100us) for DI 3.3,,Advanced
1213,1013,1,RW,Word,Debounce time (in 100us) for DI 3.4,,Advanced
1214,1014,1,RW,Word,Debounce time (in 100us) for DI 3.5,,Advanced
1215,1015,1,RW,Word,Debounce time (in 100us) for DI 3.6,,Advanced
1216,1016,1,RW,Word,Debounce time (in 100us) for DI 3.7,,Advanced
1217,1017,1,RW,Word,Debounce time (in 100us) for DI 3.8,,Advanced
1218,1018,1,RW,Word,Debounce time (in 100us) for DI 3.9,,Advanced
1219,1019,1,RW,Word,Debounce time (in 100us) for DI 3.10,,Advanced
1220,1020,1,RW,Word,Debounce time (in 100us) for DI 3.11,,Advanced
1221,1021,1,RW,Word,Debounce time (in 100us) for DI 3.12,,Advanced
1222,1022,1,RW,Word,Debounce time (in 100us) for DI 3.13,,Advanced
1223,1023,1,RW,Word,Debounce time (in 100us) for DI 3.14,,Advanced
1224,1024,1,RW,Word,Debounce time (in 100us) for DI 3.15,,Advanced
1225,1025,1,RW,Word,Debounce time (in 100us) for DI 3.16,,Advanced
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.1,0,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.2,1,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.3,2,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.4,3,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.5,4,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.6,5,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.7,6,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.8,7,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.9,8,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.10,9,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.11,10,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.12,11,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.13,12,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.14,13,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.1,0,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.2,1,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.3,2,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.4,3,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.5,4,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.6,5,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.7,6,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.8,7,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.9,8,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.10,9,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.11,10,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.12,11,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.13,12,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.14,13,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.1,0,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.2,1,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.3,2,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.4,3,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.5,4,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.6,5,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.7,6,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.8,7,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.9,8,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.10,9,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.11,10,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.12,11,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.13,12,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.14,13,Basic
1229,1029,1,W,Word,Reserved - Do Not Use,,Reserved
1230,1030,1,W,Word,Reserved - Do Not Use,,Reserved
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 3 Register Count R/W Data Type Content Start Bit Nr. Category
2 200 0 1 R MixedBits Digital Input 3.1 0 Basic
3 200 0 1 R MixedBits Digital Input 3.2 1 Basic
4 200 0 1 R MixedBits Digital Input 3.3 2 Basic
5 200 0 1 R MixedBits Digital Input 3.4 3 Basic
6 200 0 1 R MixedBits Digital Input 3.5 4 Basic
7 200 0 1 R MixedBits Digital Input 3.6 5 Basic
8 200 0 1 R MixedBits Digital Input 3.7 6 Basic
9 200 0 1 R MixedBits Digital Input 3.8 7 Basic
10 200 0 1 R MixedBits Digital Input 3.9 8 Basic
11 200 0 1 R MixedBits Digital Input 3.10 9 Basic
12 200 0 1 R MixedBits Digital Input 3.11 10 Basic
13 200 0 1 R MixedBits Digital Input 3.12 11 Basic
14 200 0 1 R MixedBits Digital Input 3.13 12 Basic
15 200 0 1 R MixedBits Digital Input 3.14 13 Basic
16 200 0 1 R MixedBits Digital Input 3.15 14 Basic
17 200 0 1 R MixedBits Digital Input 3.16 15 Basic
18 201 1 1 RW MixedBits Relay Output 3.1 0 Basic
19 201 1 1 RW MixedBits Relay Output 3.2 1 Basic
20 201 1 1 RW MixedBits Relay Output 3.3 2 Basic
21 201 1 1 RW MixedBits Relay Output 3.4 3 Basic
22 201 1 1 RW MixedBits Relay Output 3.5 4 Basic
23 201 1 1 RW MixedBits Relay Output 3.6 5 Basic
24 201 1 1 RW MixedBits Relay Output 3.7 6 Basic
25 201 1 1 RW MixedBits Relay Output 3.8 7 Basic
26 201 1 1 RW MixedBits Relay Output 3.9 8 Basic
27 201 1 1 RW MixedBits Relay Output 3.10 9 Basic
28 201 1 1 RW MixedBits Relay Output 3.11 10 Basic
29 201 1 1 RW MixedBits Relay Output 3.12 11 Basic
30 201 1 1 RW MixedBits Relay Output 3.13 12 Basic
31 201 1 1 RW MixedBits Relay Output 3.14 13 Basic
32 202 2 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
33 203 3 2 RW DWord Counter of Digital Input 3.1 Basic
34 205 5 2 RW DWord Counter of Digital Input 3.2 Basic
35 207 7 2 RW DWord Counter of Digital Input 3.3 Basic
36 209 9 2 RW DWord Counter of Digital Input 3.4 Basic
37 211 11 2 RW DWord Counter of Digital Input 3.5 Basic
38 213 13 2 RW DWord Counter of Digital Input 3.6 Basic
39 215 15 2 RW DWord Counter of Digital Input 3.7 Basic
40 217 17 2 RW DWord Counter of Digital Input 3.8 Basic
41 219 19 2 RW DWord Counter of Digital Input 3.9 Basic
42 221 21 2 RW DWord Counter of Digital Input 3.10 Basic
43 223 23 2 RW DWord Counter of Digital Input 3.11 Basic
44 225 25 2 RW DWord Counter of Digital Input 3.12 Basic
45 227 27 2 RW DWord Counter of Digital Input 3.13 Basic
46 229 29 2 RW DWord Counter of Digital Input 3.14 Basic
47 231 31 2 RW DWord Counter of Digital Input 3.15 Basic
48 233 33 2 RW DWord Counter of Digital Input 3.16 Basic
49 235 35 1 W Word Reserved - Do Not Use Reserved
50 236 36 1 W Word Reserved - Do Not Use Reserved
51 237 37 1 W Word Reserved - Do Not Use Reserved
52 238 38 1 W Word Reserved - Do Not Use Reserved
53 239 39 1 RW MixedBits Synchronised DO/RO 3.1 0 Advanced
54 239 39 1 RW MixedBits Synchronised DO/RO 3.2 1 Advanced
55 239 39 1 RW MixedBits Synchronised DO/RO 3.3 2 Advanced
56 239 39 1 RW MixedBits Synchronised DO/RO 3.4 3 Advanced
57 239 39 1 RW MixedBits Synchronised DO/RO 3.5 4 Advanced
58 239 39 1 RW MixedBits Synchronised DO/RO 3.6 5 Advanced
59 239 39 1 RW MixedBits Synchronised DO/RO 3.7 6 Advanced
60 239 39 1 RW MixedBits Synchronised DO/RO 3.8 7 Advanced
61 239 39 1 RW MixedBits Synchronised DO/RO 3.9 8 Advanced
62 239 39 1 RW MixedBits Synchronised DO/RO 3.10 9 Advanced
63 239 39 1 RW MixedBits Synchronised DO/RO 3.11 10 Advanced
64 239 39 1 RW MixedBits Synchronised DO/RO 3.12 11 Advanced
65 239 39 1 RW MixedBits Synchronised DO/RO 3.13 12 Advanced
66 239 39 1 RW MixedBits Synchronised DO/RO 3.14 13 Advanced
67 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.1 0 Advanced
68 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.2 1 Advanced
69 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.3 2 Advanced
70 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.4 3 Advanced
71 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.5 4 Advanced
72 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.6 5 Advanced
73 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.7 6 Advanced
74 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.8 7 Advanced
75 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.9 8 Advanced
76 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.10 9 Advanced
77 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.11 10 Advanced
78 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.12 11 Advanced
79 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.13 12 Advanced
80 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.14 13 Advanced
81 100 2 RW DWord (Internal) RS485 Full Mode Configuration 3.1 Obsolete
82 700 500 1 W Word Reserved - Do Not Use Reserved
83 701 501 1 W Word Reserved - Do Not Use Reserved
84 702 502 1 W Word Reserved - Do Not Use Reserved
85 703 503 1 W Word Reserved - Do Not Use Reserved
86 704 504 1 W Word Reserved - Do Not Use Reserved
87 705 505 1 W Word Reserved - Do Not Use Reserved
88 706 506 1 W Word Reserved - Do Not Use Reserved
89 707 507 1 W Word Reserved - Do Not Use Reserved
90 708 508 1 W Word Reserved - Do Not Use Reserved
91 709 509 1 W Word Reserved - Do Not Use Reserved
92 510 1 RW Word (Internal) Stored Firmware Version Expert
93 511 1 RW Word (Internal) Stored Firmware Revision Expert
94 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
95 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
96 514 1 RW Word (Internal) Stored PCB Revision Expert
97 515 1 RW Word (Internal) Stored PCB Serial Number Expert
98 516 1 RW Word (Internal) Stored HW Revision Number Expert
99 1200 1000 1 R Word Firmware Version Expert
100 1201 1001 1 R Word Number of I/Os Advanced
101 1202 1002 1 R Word Number of peripherals Advanced
102 1203 1003 1 R Word Firmware ID Expert
103 1204 1004 1 R Word Hardware ID Expert
104 1205 1005 2 R DWord PCB Serial Number Expert
105 1207 1007 1 RW Word Interrupt Mask Expert
106 1208 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
107 1209 1009 1 R Word VRef of MCU Expert
108 1210 1010 1 RW Word Debounce time (in 100us) for DI 3.1 Advanced
109 1211 1011 1 RW Word Debounce time (in 100us) for DI 3.2 Advanced
110 1212 1012 1 RW Word Debounce time (in 100us) for DI 3.3 Advanced
111 1213 1013 1 RW Word Debounce time (in 100us) for DI 3.4 Advanced
112 1214 1014 1 RW Word Debounce time (in 100us) for DI 3.5 Advanced
113 1215 1015 1 RW Word Debounce time (in 100us) for DI 3.6 Advanced
114 1216 1016 1 RW Word Debounce time (in 100us) for DI 3.7 Advanced
115 1217 1017 1 RW Word Debounce time (in 100us) for DI 3.8 Advanced
116 1218 1018 1 RW Word Debounce time (in 100us) for DI 3.9 Advanced
117 1219 1019 1 RW Word Debounce time (in 100us) for DI 3.10 Advanced
118 1220 1020 1 RW Word Debounce time (in 100us) for DI 3.11 Advanced
119 1221 1021 1 RW Word Debounce time (in 100us) for DI 3.12 Advanced
120 1222 1022 1 RW Word Debounce time (in 100us) for DI 3.13 Advanced
121 1223 1023 1 RW Word Debounce time (in 100us) for DI 3.14 Advanced
122 1224 1024 1 RW Word Debounce time (in 100us) for DI 3.15 Advanced
123 1225 1025 1 RW Word Debounce time (in 100us) for DI 3.16 Advanced
124 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.1 0 Basic
125 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.2 1 Basic
126 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.3 2 Basic
127 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.4 3 Basic
128 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.5 4 Basic
129 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.6 5 Basic
130 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.7 6 Basic
131 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.8 7 Basic
132 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.9 8 Basic
133 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.10 9 Basic
134 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.11 10 Basic
135 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.12 11 Basic
136 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.13 12 Basic
137 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.14 13 Basic
138 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.1 0 Basic
139 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.2 1 Basic
140 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.3 2 Basic
141 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.4 3 Basic
142 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.5 4 Basic
143 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.6 5 Basic
144 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.7 6 Basic
145 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.8 7 Basic
146 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.9 8 Basic
147 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.10 9 Basic
148 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.11 10 Basic
149 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.12 11 Basic
150 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.13 12 Basic
151 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.14 13 Basic
152 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.1 0 Basic
153 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.2 1 Basic
154 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.3 2 Basic
155 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.4 3 Basic
156 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.5 4 Basic
157 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.6 5 Basic
158 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.7 6 Basic
159 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.8 7 Basic
160 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.9 8 Basic
161 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.10 9 Basic
162 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.11 10 Basic
163 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.12 11 Basic
164 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.13 12 Basic
165 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.14 13 Basic
166 1229 1029 1 W Word Reserved - Do Not Use Reserved
167 1230 1030 1 W Word Reserved - Do Not Use Reserved
168 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,32 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Digital Output 1.1,Basic
1,1,RW,Digital Output 1.2,Basic
2,2,RW,Digital Output 1.3,Basic
3,3,RW,Digital Output 1.4,Basic
4,4,R,Digital Input 1.1,Basic
5,5,R,Digital Input 1.2,Basic
6,6,R,Digital Input 1.3,Basic
7,7,R,Digital Input 1.4,Basic
8,8,RW,User Programmable LED 1.1,Basic
9,9,RW,User Programmable LED 1.2,Basic
10,10,RW,User Programmable LED 1.3,Basic
11,11,RW,User Programmable LED 1.4,Basic
1000,1000,RW,MWD reset indication,Advanced
1001,1001,RW,Enable/Disable 1Wire Bus,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1012,1012,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1013,1013,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1014,1014,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1015,1015,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1016,1016,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1017,1017,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1018,1018,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Digital Output 1.1 Basic
3 1 1 RW Digital Output 1.2 Basic
4 2 2 RW Digital Output 1.3 Basic
5 3 3 RW Digital Output 1.4 Basic
6 4 4 R Digital Input 1.1 Basic
7 5 5 R Digital Input 1.2 Basic
8 6 6 R Digital Input 1.3 Basic
9 7 7 R Digital Input 1.4 Basic
10 8 8 RW User Programmable LED 1.1 Basic
11 9 9 RW User Programmable LED 1.2 Basic
12 10 10 RW User Programmable LED 1.3 Basic
13 11 11 RW User Programmable LED 1.4 Basic
14 1000 1000 RW MWD reset indication Advanced
15 1001 1001 RW Enable/Disable 1Wire Bus Advanced
16 1002 1002 R Reset group MCU Advanced
17 1003 1003 RW Save current configuration and use on startup Advanced
18 1004 1004 RW (Internal) Firmware programming toggle Expert
19 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
20 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
21 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
22 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
23 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
24 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
25 1011 1011 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
26 1012 1012 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
27 1013 1013 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
28 1014 1014 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
29 1015 1015 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
30 1016 1016 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
31 1017 1017 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
32 1018 1018 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced

View File

@ -0,0 +1,37 @@
Via Unit 0,Via Unit 2,R/W,Content,Category
100,0,R,Digital Input 2.1,Basic
101,1,R,Digital Input 2.2,Basic
102,2,R,Digital Input 2.3,Basic
103,3,R,Digital Input 2.4,Basic
104,4,R,Digital Input 2.5,Basic
105,5,R,Digital Input 2.6,Basic
106,6,R,Digital Input 2.7,Basic
107,7,R,Digital Input 2.8,Basic
108,8,R,Digital Input 2.9,Basic
109,9,R,Digital Input 2.10,Basic
110,10,R,Digital Input 2.11,Basic
111,11,R,Digital Input 2.12,Basic
112,12,R,Digital Input 2.13,Basic
113,13,R,Digital Input 2.14,Basic
114,14,R,Digital Input 2.15,Basic
115,15,R,Digital Input 2.16,Basic
116,16,R,Digital Input 2.17,Basic
117,17,R,Digital Input 2.18,Basic
118,18,R,Digital Input 2.19,Basic
119,19,R,Digital Input 2.20,Basic
120,20,R,Digital Input 2.21,Basic
121,21,R,Digital Input 2.22,Basic
122,22,R,Digital Input 2.23,Basic
123,23,R,Digital Input 2.24,Basic
124,24,R,Digital Input 2.25,Basic
125,25,R,Digital Input 2.26,Basic
126,26,R,Digital Input 2.27,Basic
127,27,R,Digital Input 2.28,Basic
128,28,R,Digital Input 2.29,Basic
129,29,R,Digital Input 2.30,Basic
1100,1000,RW,MWD reset indication,Advanced
1102,1002,R,Reset group MCU,Advanced
1103,1003,RW,Save current configuration and use on startup,Advanced
1104,1004,RW,(Internal) Firmware programming toggle,Expert
1105,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1106,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1 Via Unit 0 Via Unit 2 R/W Content Category
2 100 0 R Digital Input 2.1 Basic
3 101 1 R Digital Input 2.2 Basic
4 102 2 R Digital Input 2.3 Basic
5 103 3 R Digital Input 2.4 Basic
6 104 4 R Digital Input 2.5 Basic
7 105 5 R Digital Input 2.6 Basic
8 106 6 R Digital Input 2.7 Basic
9 107 7 R Digital Input 2.8 Basic
10 108 8 R Digital Input 2.9 Basic
11 109 9 R Digital Input 2.10 Basic
12 110 10 R Digital Input 2.11 Basic
13 111 11 R Digital Input 2.12 Basic
14 112 12 R Digital Input 2.13 Basic
15 113 13 R Digital Input 2.14 Basic
16 114 14 R Digital Input 2.15 Basic
17 115 15 R Digital Input 2.16 Basic
18 116 16 R Digital Input 2.17 Basic
19 117 17 R Digital Input 2.18 Basic
20 118 18 R Digital Input 2.19 Basic
21 119 19 R Digital Input 2.20 Basic
22 120 20 R Digital Input 2.21 Basic
23 121 21 R Digital Input 2.22 Basic
24 122 22 R Digital Input 2.23 Basic
25 123 23 R Digital Input 2.24 Basic
26 124 24 R Digital Input 2.25 Basic
27 125 25 R Digital Input 2.26 Basic
28 126 26 R Digital Input 2.27 Basic
29 127 27 R Digital Input 2.28 Basic
30 128 28 R Digital Input 2.29 Basic
31 129 29 R Digital Input 2.30 Basic
32 1100 1000 RW MWD reset indication Advanced
33 1102 1002 R Reset group MCU Advanced
34 1103 1003 RW Save current configuration and use on startup Advanced
35 1104 1004 RW (Internal) Firmware programming toggle Expert
36 1105 1005 RW (Internal) Firmware reprogramming toggle Expert
37 1106 1006 RW (Internal) Firmware calibration programming toggle Expert

View File

@ -0,0 +1,37 @@
Via Unit 0,Via Unit 3,R/W,Content,Category
200,0,R,Digital Input 3.1,Basic
201,1,R,Digital Input 3.2,Basic
202,2,R,Digital Input 3.3,Basic
203,3,R,Digital Input 3.4,Basic
204,4,R,Digital Input 3.5,Basic
205,5,R,Digital Input 3.6,Basic
206,6,R,Digital Input 3.7,Basic
207,7,R,Digital Input 3.8,Basic
208,8,R,Digital Input 3.9,Basic
209,9,R,Digital Input 3.10,Basic
210,10,R,Digital Input 3.11,Basic
211,11,R,Digital Input 3.12,Basic
212,12,R,Digital Input 3.13,Basic
213,13,R,Digital Input 3.14,Basic
214,14,R,Digital Input 3.15,Basic
215,15,R,Digital Input 3.16,Basic
216,16,R,Digital Input 3.17,Basic
217,17,R,Digital Input 3.18,Basic
218,18,R,Digital Input 3.19,Basic
219,19,R,Digital Input 3.20,Basic
220,20,R,Digital Input 3.21,Basic
221,21,R,Digital Input 3.22,Basic
222,22,R,Digital Input 3.23,Basic
223,23,R,Digital Input 3.24,Basic
224,24,R,Digital Input 3.25,Basic
225,25,R,Digital Input 3.26,Basic
226,26,R,Digital Input 3.27,Basic
227,27,R,Digital Input 3.28,Basic
228,28,R,Digital Input 3.29,Basic
229,29,R,Digital Input 3.30,Basic
1200,1000,RW,MWD reset indication,Advanced
1202,1002,R,Reset group MCU,Advanced
1203,1003,RW,Save current configuration and use on startup,Advanced
1204,1004,RW,(Internal) Firmware programming toggle,Expert
1205,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1206,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1 Via Unit 0 Via Unit 3 R/W Content Category
2 200 0 R Digital Input 3.1 Basic
3 201 1 R Digital Input 3.2 Basic
4 202 2 R Digital Input 3.3 Basic
5 203 3 R Digital Input 3.4 Basic
6 204 4 R Digital Input 3.5 Basic
7 205 5 R Digital Input 3.6 Basic
8 206 6 R Digital Input 3.7 Basic
9 207 7 R Digital Input 3.8 Basic
10 208 8 R Digital Input 3.9 Basic
11 209 9 R Digital Input 3.10 Basic
12 210 10 R Digital Input 3.11 Basic
13 211 11 R Digital Input 3.12 Basic
14 212 12 R Digital Input 3.13 Basic
15 213 13 R Digital Input 3.14 Basic
16 214 14 R Digital Input 3.15 Basic
17 215 15 R Digital Input 3.16 Basic
18 216 16 R Digital Input 3.17 Basic
19 217 17 R Digital Input 3.18 Basic
20 218 18 R Digital Input 3.19 Basic
21 219 19 R Digital Input 3.20 Basic
22 220 20 R Digital Input 3.21 Basic
23 221 21 R Digital Input 3.22 Basic
24 222 22 R Digital Input 3.23 Basic
25 223 23 R Digital Input 3.24 Basic
26 224 24 R Digital Input 3.25 Basic
27 225 25 R Digital Input 3.26 Basic
28 226 26 R Digital Input 3.27 Basic
29 227 27 R Digital Input 3.28 Basic
30 228 28 R Digital Input 3.29 Basic
31 229 29 R Digital Input 3.30 Basic
32 1200 1000 RW MWD reset indication Advanced
33 1202 1002 R Reset group MCU Advanced
34 1203 1003 RW Save current configuration and use on startup Advanced
35 1204 1004 RW (Internal) Firmware programming toggle Expert
36 1205 1005 RW (Internal) Firmware reprogramming toggle Expert
37 1206 1006 RW (Internal) Firmware calibration programming toggle Expert

View File

@ -0,0 +1,97 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
1,1,1,RW,MixedBits,Digital Output 1.1,0,Basic
1,1,1,RW,MixedBits,Digital Output 1.2,1,Basic
1,1,1,RW,MixedBits,Digital Output 1.3,2,Basic
1,1,1,RW,MixedBits,Digital Output 1.4,3,Basic
2,2,1,RW,Word,Analog Output (raw value) 1.1,,Obsolete
3,3,1,R,Word,Analog Input (raw value) 1.1,,Obsolete
4,4,1,R,Word,Analog Input/Output (raw value) 1.1,,Obsolete
5,5,1,R,Word,VRefInt of MCU,,Expert
6,6,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
7,7,1,R,Word,Length of RS485 TX Queue 1.1,,Obsolete
8,8,2,RW,DWord,Counter of Digital Input 1.1,,Basic
10,10,2,RW,DWord,Counter of Digital Input 1.2,,Basic
12,12,2,RW,DWord,Counter of Digital Input 1.3,,Basic
14,14,2,RW,DWord,Counter of Digital Input 1.4,,Basic
16,16,1,RW,Word,PWM Duty Cycle of DO 1.1,,Basic
17,17,1,RW,Word,PWM Duty Cycle of DO 1.2,,Basic
18,18,1,RW,Word,PWM Duty Cycle of DO 1.3,,Basic
19,19,1,RW,Word,PWM Duty Cycle of DO 1.4,,Basic
20,20,1,RW,MixedBits,User LED 1.1,0,Basic
20,20,1,RW,MixedBits,User LED 1.2,1,Basic
20,20,1,RW,MixedBits,User LED 1.3,2,Basic
20,20,1,RW,MixedBits,User LED 1.4,3,Basic
21,21,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1017,1017,1,RW,Word,PWM Group prescaler,,Basic
1018,1018,1,RW,Word,PWM Group cycle length,,Basic
1019,1019,1,RW,Word,Analog Output Configuration(U/I/R-measure) 1.1,,Basic
1020,1020,1,RW,Word,Analog Output Voltage deviation 1.1,,Expert
1021,1021,1,RW,Word,Analog Output Voltage offset 1.1,,Expert
1022,1022,1,RW,Word,Analog Output Current deviation 1.1,,Expert
1023,1023,1,RW,Word,Analog Output Current offset 1.1,,Expert
1024,1024,1,RW,Word,Analog Input Configuration(U/I) 1.1,,Basic
1025,1025,1,RW,Word,Analog Input Voltage deviation 1.1,,Expert
1026,1026,1,RW,Word,Analog Input Voltage offset 1.1,,Expert
1027,1027,1,RW,Word,Analog Input Current deviation 1.1,,Expert
1028,1028,1,RW,Word,Analog Input Current offset 1.1,,Expert
1029,1029,1,RW,Word,Analog Input/Output Voltage deviation (input side) 1.1,,Expert
1030,1030,1,RW,Word,Analog Input/Output Voltage offset (input side) 1.1,,Expert
1031,1031,1,RW,MixedBits,RS485 Configuration 1.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
3000,3000,2,RW,Real,Analog Output value 1.1,,Basic
3002,3002,2,R,Real,Analog Input value 1.1,,Basic
3004,3004,2,R,Real,(Internal) Analog Output measured voltage value 1.1,,Expert
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 1 1 1 RW MixedBits Digital Output 1.1 0 Basic
7 1 1 1 RW MixedBits Digital Output 1.2 1 Basic
8 1 1 1 RW MixedBits Digital Output 1.3 2 Basic
9 1 1 1 RW MixedBits Digital Output 1.4 3 Basic
10 2 2 1 RW Word Analog Output (raw value) 1.1 Obsolete
11 3 3 1 R Word Analog Input (raw value) 1.1 Obsolete
12 4 4 1 R Word Analog Input/Output (raw value) 1.1 Obsolete
13 5 5 1 R Word VRefInt of MCU Expert
14 6 6 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
15 7 7 1 R Word Length of RS485 TX Queue 1.1 Obsolete
16 8 8 2 RW DWord Counter of Digital Input 1.1 Basic
17 10 10 2 RW DWord Counter of Digital Input 1.2 Basic
18 12 12 2 RW DWord Counter of Digital Input 1.3 Basic
19 14 14 2 RW DWord Counter of Digital Input 1.4 Basic
20 16 16 1 RW Word PWM Duty Cycle of DO 1.1 Basic
21 17 17 1 RW Word PWM Duty Cycle of DO 1.2 Basic
22 18 18 1 RW Word PWM Duty Cycle of DO 1.3 Basic
23 19 19 1 RW Word PWM Duty Cycle of DO 1.4 Basic
24 20 20 1 RW MixedBits User LED 1.1 0 Basic
25 20 20 1 RW MixedBits User LED 1.2 1 Basic
26 20 20 1 RW MixedBits User LED 1.3 2 Basic
27 20 20 1 RW MixedBits User LED 1.4 3 Basic
28 21 21 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
29 21 21 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
30 21 21 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
31 21 21 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
32 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
33 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
34 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
35 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
36 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
37 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
38 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
39 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
40 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
41 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
42 505 505 1 W Word Reserved - Do Not Use Reserved
43 506 506 1 W Word Reserved - Do Not Use Reserved
44 507 507 1 W Word Reserved - Do Not Use Reserved
45 508 508 1 W Word Reserved - Do Not Use Reserved
46 509 509 1 W Word Reserved - Do Not Use Reserved
47 510 1 RW Word (Internal) Stored Firmware Version Expert
48 511 1 RW Word (Internal) Stored Firmware Revision Expert
49 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
50 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
51 514 1 RW Word (Internal) Stored PCB Revision Expert
52 515 1 RW Word (Internal) Stored PCB Serial Number Expert
53 516 1 RW Word (Internal) Stored HW Revision Number Expert
54 1000 1000 1 R Word Firmware Version Expert
55 1001 1001 1 R Word Number of I/Os Advanced
56 1002 1002 1 R Word Number of peripherals Advanced
57 1003 1003 1 R Word Firmware ID Expert
58 1004 1004 1 R Word Hardware ID Expert
59 1005 1005 2 R DWord PCB Serial Number Expert
60 1007 1007 1 RW Word Interrupt Mask Expert
61 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
62 1009 1009 1 R Word VRef of MCU Expert
63 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
64 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
65 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
66 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
67 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
68 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
69 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
70 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
71 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
72 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
73 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
74 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
75 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
76 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
77 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
78 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
79 1017 1017 1 RW Word PWM Group prescaler Basic
80 1018 1018 1 RW Word PWM Group cycle length Basic
81 1019 1019 1 RW Word Analog Output Configuration(U/I/R-measure) 1.1 Basic
82 1020 1020 1 RW Word Analog Output Voltage deviation 1.1 Expert
83 1021 1021 1 RW Word Analog Output Voltage offset 1.1 Expert
84 1022 1022 1 RW Word Analog Output Current deviation 1.1 Expert
85 1023 1023 1 RW Word Analog Output Current offset 1.1 Expert
86 1024 1024 1 RW Word Analog Input Configuration(U/I) 1.1 Basic
87 1025 1025 1 RW Word Analog Input Voltage deviation 1.1 Expert
88 1026 1026 1 RW Word Analog Input Voltage offset 1.1 Expert
89 1027 1027 1 RW Word Analog Input Current deviation 1.1 Expert
90 1028 1028 1 RW Word Analog Input Current offset 1.1 Expert
91 1029 1029 1 RW Word Analog Input/Output Voltage deviation (input side) 1.1 Expert
92 1030 1030 1 RW Word Analog Input/Output Voltage offset (input side) 1.1 Expert
93 1031 1031 1 RW MixedBits RS485 Configuration 1.1 Obsolete
94 2000 220 W Word Reserved - Do Not Use Reserved
95 3000 3000 2 RW Real Analog Output value 1.1 Basic
96 3002 3002 2 R Real Analog Input value 1.1 Basic
97 3004 3004 2 R Real (Internal) Analog Output measured voltage value 1.1 Expert

View File

@ -0,0 +1,120 @@
Via Unit 0,Via Unit 2,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
100,0,1,R,MixedBits,Digital Input 2.1,0,Basic
100,0,1,R,MixedBits,Digital Input 2.2,1,Basic
100,0,1,R,MixedBits,Digital Input 2.3,2,Basic
100,0,1,R,MixedBits,Digital Input 2.4,3,Basic
100,0,1,R,MixedBits,Digital Input 2.5,4,Basic
100,0,1,R,MixedBits,Digital Input 2.6,5,Basic
100,0,1,R,MixedBits,Digital Input 2.7,6,Basic
100,0,1,R,MixedBits,Digital Input 2.8,7,Basic
100,0,1,R,MixedBits,Digital Input 2.9,8,Basic
100,0,1,R,MixedBits,Digital Input 2.10,9,Basic
100,0,1,R,MixedBits,Digital Input 2.11,10,Basic
100,0,1,R,MixedBits,Digital Input 2.12,11,Basic
100,0,1,R,MixedBits,Digital Input 2.13,12,Basic
100,0,1,R,MixedBits,Digital Input 2.14,13,Basic
100,0,1,R,MixedBits,Digital Input 2.15,14,Basic
100,0,1,R,MixedBits,Digital Input 2.16,15,Basic
101,1,1,R,MixedBits,Digital Input 2.17,0,Basic
101,1,1,R,MixedBits,Digital Input 2.18,1,Basic
101,1,1,R,MixedBits,Digital Input 2.19,2,Basic
101,1,1,R,MixedBits,Digital Input 2.20,3,Basic
101,1,1,R,MixedBits,Digital Input 2.21,4,Basic
101,1,1,R,MixedBits,Digital Input 2.22,5,Basic
101,1,1,R,MixedBits,Digital Input 2.23,6,Basic
101,1,1,R,MixedBits,Digital Input 2.24,7,Basic
101,1,1,R,MixedBits,Digital Input 2.25,8,Basic
101,1,1,R,MixedBits,Digital Input 2.26,9,Basic
101,1,1,R,MixedBits,Digital Input 2.27,10,Basic
101,1,1,R,MixedBits,Digital Input 2.28,11,Basic
101,1,1,R,MixedBits,Digital Input 2.29,12,Basic
101,1,1,R,MixedBits,Digital Input 2.30,13,Basic
102,2,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
103,3,2,RW,DWord,Counter of Digital Input 2.1,,Basic
105,5,2,RW,DWord,Counter of Digital Input 2.2,,Basic
107,7,2,RW,DWord,Counter of Digital Input 2.3,,Basic
109,9,2,RW,DWord,Counter of Digital Input 2.4,,Basic
111,11,2,RW,DWord,Counter of Digital Input 2.5,,Basic
113,13,2,RW,DWord,Counter of Digital Input 2.6,,Basic
115,15,2,RW,DWord,Counter of Digital Input 2.7,,Basic
117,17,2,RW,DWord,Counter of Digital Input 2.8,,Basic
119,19,2,RW,DWord,Counter of Digital Input 2.9,,Basic
121,21,2,RW,DWord,Counter of Digital Input 2.10,,Basic
123,23,2,RW,DWord,Counter of Digital Input 2.11,,Basic
125,25,2,RW,DWord,Counter of Digital Input 2.12,,Basic
127,27,2,RW,DWord,Counter of Digital Input 2.13,,Basic
129,29,2,RW,DWord,Counter of Digital Input 2.14,,Basic
131,31,2,RW,DWord,Counter of Digital Input 2.15,,Basic
133,33,2,RW,DWord,Counter of Digital Input 2.16,,Basic
135,35,2,RW,DWord,Counter of Digital Input 2.17,,Basic
137,37,2,RW,DWord,Counter of Digital Input 2.18,,Basic
139,39,2,RW,DWord,Counter of Digital Input 2.19,,Basic
141,41,2,RW,DWord,Counter of Digital Input 2.20,,Basic
143,43,2,RW,DWord,Counter of Digital Input 2.21,,Basic
145,45,2,RW,DWord,Counter of Digital Input 2.22,,Basic
147,47,2,RW,DWord,Counter of Digital Input 2.23,,Basic
149,49,2,RW,DWord,Counter of Digital Input 2.24,,Basic
151,51,2,RW,DWord,Counter of Digital Input 2.25,,Basic
153,53,2,RW,DWord,Counter of Digital Input 2.26,,Basic
155,55,2,RW,DWord,Counter of Digital Input 2.27,,Basic
157,57,2,RW,DWord,Counter of Digital Input 2.28,,Basic
159,59,2,RW,DWord,Counter of Digital Input 2.29,,Basic
161,61,2,RW,DWord,Counter of Digital Input 2.30,,Basic
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 2.1,,Obsolete
600,500,1,W,Word,Reserved - Do Not Use,,Reserved
601,501,1,W,Word,Reserved - Do Not Use,,Reserved
602,502,1,W,Word,Reserved - Do Not Use,,Reserved
603,503,1,W,Word,Reserved - Do Not Use,,Reserved
604,504,1,W,Word,Reserved - Do Not Use,,Reserved
605,505,1,W,Word,Reserved - Do Not Use,,Reserved
606,506,1,W,Word,Reserved - Do Not Use,,Reserved
607,507,1,W,Word,Reserved - Do Not Use,,Reserved
608,508,1,W,Word,Reserved - Do Not Use,,Reserved
609,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1100,1000,1,R,Word,Firmware Version,,Expert
1101,1001,1,R,Word,Number of I/Os,,Advanced
1102,1002,1,R,Word,Number of peripherals,,Advanced
1103,1003,1,R,Word,Firmware ID,,Expert
1104,1004,1,R,Word,Hardware ID,,Expert
1105,1005,2,R,DWord,PCB Serial Number,,Expert
1107,1007,1,RW,Word,Interrupt Mask,,Expert
1108,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1109,1009,1,R,Word,VRef of MCU,,Expert
1110,1010,1,RW,Word,Debounce time (in 100us) for DI 2.1,,Advanced
1111,1011,1,RW,Word,Debounce time (in 100us) for DI 2.2,,Advanced
1112,1012,1,RW,Word,Debounce time (in 100us) for DI 2.3,,Advanced
1113,1013,1,RW,Word,Debounce time (in 100us) for DI 2.4,,Advanced
1114,1014,1,RW,Word,Debounce time (in 100us) for DI 2.5,,Advanced
1115,1015,1,RW,Word,Debounce time (in 100us) for DI 2.6,,Advanced
1116,1016,1,RW,Word,Debounce time (in 100us) for DI 2.7,,Advanced
1117,1017,1,RW,Word,Debounce time (in 100us) for DI 2.8,,Advanced
1118,1018,1,RW,Word,Debounce time (in 100us) for DI 2.9,,Advanced
1119,1019,1,RW,Word,Debounce time (in 100us) for DI 2.10,,Advanced
1120,1020,1,RW,Word,Debounce time (in 100us) for DI 2.11,,Advanced
1121,1021,1,RW,Word,Debounce time (in 100us) for DI 2.12,,Advanced
1122,1022,1,RW,Word,Debounce time (in 100us) for DI 2.13,,Advanced
1123,1023,1,RW,Word,Debounce time (in 100us) for DI 2.14,,Advanced
1124,1024,1,RW,Word,Debounce time (in 100us) for DI 2.15,,Advanced
1125,1025,1,RW,Word,Debounce time (in 100us) for DI 2.16,,Advanced
1126,1026,1,RW,Word,Debounce time (in 100us) for DI 2.17,,Advanced
1127,1027,1,RW,Word,Debounce time (in 100us) for DI 2.18,,Advanced
1128,1028,1,RW,Word,Debounce time (in 100us) for DI 2.19,,Advanced
1129,1029,1,RW,Word,Debounce time (in 100us) for DI 2.20,,Advanced
1130,1030,1,RW,Word,Debounce time (in 100us) for DI 2.21,,Advanced
1131,1031,1,RW,Word,Debounce time (in 100us) for DI 2.22,,Advanced
1132,1032,1,RW,Word,Debounce time (in 100us) for DI 2.23,,Advanced
1133,1033,1,RW,Word,Debounce time (in 100us) for DI 2.24,,Advanced
1134,1034,1,RW,Word,Debounce time (in 100us) for DI 2.25,,Advanced
1135,1035,1,RW,Word,Debounce time (in 100us) for DI 2.26,,Advanced
1136,1036,1,RW,Word,Debounce time (in 100us) for DI 2.27,,Advanced
1137,1037,1,RW,Word,Debounce time (in 100us) for DI 2.28,,Advanced
1138,1038,1,RW,Word,Debounce time (in 100us) for DI 2.29,,Advanced
1139,1039,1,RW,Word,Debounce time (in 100us) for DI 2.30,,Advanced
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 2 Register Count R/W Data Type Content Start Bit Nr. Category
2 100 0 1 R MixedBits Digital Input 2.1 0 Basic
3 100 0 1 R MixedBits Digital Input 2.2 1 Basic
4 100 0 1 R MixedBits Digital Input 2.3 2 Basic
5 100 0 1 R MixedBits Digital Input 2.4 3 Basic
6 100 0 1 R MixedBits Digital Input 2.5 4 Basic
7 100 0 1 R MixedBits Digital Input 2.6 5 Basic
8 100 0 1 R MixedBits Digital Input 2.7 6 Basic
9 100 0 1 R MixedBits Digital Input 2.8 7 Basic
10 100 0 1 R MixedBits Digital Input 2.9 8 Basic
11 100 0 1 R MixedBits Digital Input 2.10 9 Basic
12 100 0 1 R MixedBits Digital Input 2.11 10 Basic
13 100 0 1 R MixedBits Digital Input 2.12 11 Basic
14 100 0 1 R MixedBits Digital Input 2.13 12 Basic
15 100 0 1 R MixedBits Digital Input 2.14 13 Basic
16 100 0 1 R MixedBits Digital Input 2.15 14 Basic
17 100 0 1 R MixedBits Digital Input 2.16 15 Basic
18 101 1 1 R MixedBits Digital Input 2.17 0 Basic
19 101 1 1 R MixedBits Digital Input 2.18 1 Basic
20 101 1 1 R MixedBits Digital Input 2.19 2 Basic
21 101 1 1 R MixedBits Digital Input 2.20 3 Basic
22 101 1 1 R MixedBits Digital Input 2.21 4 Basic
23 101 1 1 R MixedBits Digital Input 2.22 5 Basic
24 101 1 1 R MixedBits Digital Input 2.23 6 Basic
25 101 1 1 R MixedBits Digital Input 2.24 7 Basic
26 101 1 1 R MixedBits Digital Input 2.25 8 Basic
27 101 1 1 R MixedBits Digital Input 2.26 9 Basic
28 101 1 1 R MixedBits Digital Input 2.27 10 Basic
29 101 1 1 R MixedBits Digital Input 2.28 11 Basic
30 101 1 1 R MixedBits Digital Input 2.29 12 Basic
31 101 1 1 R MixedBits Digital Input 2.30 13 Basic
32 102 2 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
33 103 3 2 RW DWord Counter of Digital Input 2.1 Basic
34 105 5 2 RW DWord Counter of Digital Input 2.2 Basic
35 107 7 2 RW DWord Counter of Digital Input 2.3 Basic
36 109 9 2 RW DWord Counter of Digital Input 2.4 Basic
37 111 11 2 RW DWord Counter of Digital Input 2.5 Basic
38 113 13 2 RW DWord Counter of Digital Input 2.6 Basic
39 115 15 2 RW DWord Counter of Digital Input 2.7 Basic
40 117 17 2 RW DWord Counter of Digital Input 2.8 Basic
41 119 19 2 RW DWord Counter of Digital Input 2.9 Basic
42 121 21 2 RW DWord Counter of Digital Input 2.10 Basic
43 123 23 2 RW DWord Counter of Digital Input 2.11 Basic
44 125 25 2 RW DWord Counter of Digital Input 2.12 Basic
45 127 27 2 RW DWord Counter of Digital Input 2.13 Basic
46 129 29 2 RW DWord Counter of Digital Input 2.14 Basic
47 131 31 2 RW DWord Counter of Digital Input 2.15 Basic
48 133 33 2 RW DWord Counter of Digital Input 2.16 Basic
49 135 35 2 RW DWord Counter of Digital Input 2.17 Basic
50 137 37 2 RW DWord Counter of Digital Input 2.18 Basic
51 139 39 2 RW DWord Counter of Digital Input 2.19 Basic
52 141 41 2 RW DWord Counter of Digital Input 2.20 Basic
53 143 43 2 RW DWord Counter of Digital Input 2.21 Basic
54 145 45 2 RW DWord Counter of Digital Input 2.22 Basic
55 147 47 2 RW DWord Counter of Digital Input 2.23 Basic
56 149 49 2 RW DWord Counter of Digital Input 2.24 Basic
57 151 51 2 RW DWord Counter of Digital Input 2.25 Basic
58 153 53 2 RW DWord Counter of Digital Input 2.26 Basic
59 155 55 2 RW DWord Counter of Digital Input 2.27 Basic
60 157 57 2 RW DWord Counter of Digital Input 2.28 Basic
61 159 59 2 RW DWord Counter of Digital Input 2.29 Basic
62 161 61 2 RW DWord Counter of Digital Input 2.30 Basic
63 100 2 RW DWord (Internal) RS485 Full Mode Configuration 2.1 Obsolete
64 600 500 1 W Word Reserved - Do Not Use Reserved
65 601 501 1 W Word Reserved - Do Not Use Reserved
66 602 502 1 W Word Reserved - Do Not Use Reserved
67 603 503 1 W Word Reserved - Do Not Use Reserved
68 604 504 1 W Word Reserved - Do Not Use Reserved
69 605 505 1 W Word Reserved - Do Not Use Reserved
70 606 506 1 W Word Reserved - Do Not Use Reserved
71 607 507 1 W Word Reserved - Do Not Use Reserved
72 608 508 1 W Word Reserved - Do Not Use Reserved
73 609 509 1 W Word Reserved - Do Not Use Reserved
74 510 1 RW Word (Internal) Stored Firmware Version Expert
75 511 1 RW Word (Internal) Stored Firmware Revision Expert
76 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
77 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
78 514 1 RW Word (Internal) Stored PCB Revision Expert
79 515 1 RW Word (Internal) Stored PCB Serial Number Expert
80 516 1 RW Word (Internal) Stored HW Revision Number Expert
81 1100 1000 1 R Word Firmware Version Expert
82 1101 1001 1 R Word Number of I/Os Advanced
83 1102 1002 1 R Word Number of peripherals Advanced
84 1103 1003 1 R Word Firmware ID Expert
85 1104 1004 1 R Word Hardware ID Expert
86 1105 1005 2 R DWord PCB Serial Number Expert
87 1107 1007 1 RW Word Interrupt Mask Expert
88 1108 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
89 1109 1009 1 R Word VRef of MCU Expert
90 1110 1010 1 RW Word Debounce time (in 100us) for DI 2.1 Advanced
91 1111 1011 1 RW Word Debounce time (in 100us) for DI 2.2 Advanced
92 1112 1012 1 RW Word Debounce time (in 100us) for DI 2.3 Advanced
93 1113 1013 1 RW Word Debounce time (in 100us) for DI 2.4 Advanced
94 1114 1014 1 RW Word Debounce time (in 100us) for DI 2.5 Advanced
95 1115 1015 1 RW Word Debounce time (in 100us) for DI 2.6 Advanced
96 1116 1016 1 RW Word Debounce time (in 100us) for DI 2.7 Advanced
97 1117 1017 1 RW Word Debounce time (in 100us) for DI 2.8 Advanced
98 1118 1018 1 RW Word Debounce time (in 100us) for DI 2.9 Advanced
99 1119 1019 1 RW Word Debounce time (in 100us) for DI 2.10 Advanced
100 1120 1020 1 RW Word Debounce time (in 100us) for DI 2.11 Advanced
101 1121 1021 1 RW Word Debounce time (in 100us) for DI 2.12 Advanced
102 1122 1022 1 RW Word Debounce time (in 100us) for DI 2.13 Advanced
103 1123 1023 1 RW Word Debounce time (in 100us) for DI 2.14 Advanced
104 1124 1024 1 RW Word Debounce time (in 100us) for DI 2.15 Advanced
105 1125 1025 1 RW Word Debounce time (in 100us) for DI 2.16 Advanced
106 1126 1026 1 RW Word Debounce time (in 100us) for DI 2.17 Advanced
107 1127 1027 1 RW Word Debounce time (in 100us) for DI 2.18 Advanced
108 1128 1028 1 RW Word Debounce time (in 100us) for DI 2.19 Advanced
109 1129 1029 1 RW Word Debounce time (in 100us) for DI 2.20 Advanced
110 1130 1030 1 RW Word Debounce time (in 100us) for DI 2.21 Advanced
111 1131 1031 1 RW Word Debounce time (in 100us) for DI 2.22 Advanced
112 1132 1032 1 RW Word Debounce time (in 100us) for DI 2.23 Advanced
113 1133 1033 1 RW Word Debounce time (in 100us) for DI 2.24 Advanced
114 1134 1034 1 RW Word Debounce time (in 100us) for DI 2.25 Advanced
115 1135 1035 1 RW Word Debounce time (in 100us) for DI 2.26 Advanced
116 1136 1036 1 RW Word Debounce time (in 100us) for DI 2.27 Advanced
117 1137 1037 1 RW Word Debounce time (in 100us) for DI 2.28 Advanced
118 1138 1038 1 RW Word Debounce time (in 100us) for DI 2.29 Advanced
119 1139 1039 1 RW Word Debounce time (in 100us) for DI 2.30 Advanced
120 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,120 @@
Via Unit 0,Via Unit 3,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
200,0,1,R,MixedBits,Digital Input 3.1,0,Basic
200,0,1,R,MixedBits,Digital Input 3.2,1,Basic
200,0,1,R,MixedBits,Digital Input 3.3,2,Basic
200,0,1,R,MixedBits,Digital Input 3.4,3,Basic
200,0,1,R,MixedBits,Digital Input 3.5,4,Basic
200,0,1,R,MixedBits,Digital Input 3.6,5,Basic
200,0,1,R,MixedBits,Digital Input 3.7,6,Basic
200,0,1,R,MixedBits,Digital Input 3.8,7,Basic
200,0,1,R,MixedBits,Digital Input 3.9,8,Basic
200,0,1,R,MixedBits,Digital Input 3.10,9,Basic
200,0,1,R,MixedBits,Digital Input 3.11,10,Basic
200,0,1,R,MixedBits,Digital Input 3.12,11,Basic
200,0,1,R,MixedBits,Digital Input 3.13,12,Basic
200,0,1,R,MixedBits,Digital Input 3.14,13,Basic
200,0,1,R,MixedBits,Digital Input 3.15,14,Basic
200,0,1,R,MixedBits,Digital Input 3.16,15,Basic
201,1,1,R,MixedBits,Digital Input 3.17,0,Basic
201,1,1,R,MixedBits,Digital Input 3.18,1,Basic
201,1,1,R,MixedBits,Digital Input 3.19,2,Basic
201,1,1,R,MixedBits,Digital Input 3.20,3,Basic
201,1,1,R,MixedBits,Digital Input 3.21,4,Basic
201,1,1,R,MixedBits,Digital Input 3.22,5,Basic
201,1,1,R,MixedBits,Digital Input 3.23,6,Basic
201,1,1,R,MixedBits,Digital Input 3.24,7,Basic
201,1,1,R,MixedBits,Digital Input 3.25,8,Basic
201,1,1,R,MixedBits,Digital Input 3.26,9,Basic
201,1,1,R,MixedBits,Digital Input 3.27,10,Basic
201,1,1,R,MixedBits,Digital Input 3.28,11,Basic
201,1,1,R,MixedBits,Digital Input 3.29,12,Basic
201,1,1,R,MixedBits,Digital Input 3.30,13,Basic
202,2,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
203,3,2,RW,DWord,Counter of Digital Input 3.1,,Basic
205,5,2,RW,DWord,Counter of Digital Input 3.2,,Basic
207,7,2,RW,DWord,Counter of Digital Input 3.3,,Basic
209,9,2,RW,DWord,Counter of Digital Input 3.4,,Basic
211,11,2,RW,DWord,Counter of Digital Input 3.5,,Basic
213,13,2,RW,DWord,Counter of Digital Input 3.6,,Basic
215,15,2,RW,DWord,Counter of Digital Input 3.7,,Basic
217,17,2,RW,DWord,Counter of Digital Input 3.8,,Basic
219,19,2,RW,DWord,Counter of Digital Input 3.9,,Basic
221,21,2,RW,DWord,Counter of Digital Input 3.10,,Basic
223,23,2,RW,DWord,Counter of Digital Input 3.11,,Basic
225,25,2,RW,DWord,Counter of Digital Input 3.12,,Basic
227,27,2,RW,DWord,Counter of Digital Input 3.13,,Basic
229,29,2,RW,DWord,Counter of Digital Input 3.14,,Basic
231,31,2,RW,DWord,Counter of Digital Input 3.15,,Basic
233,33,2,RW,DWord,Counter of Digital Input 3.16,,Basic
235,35,2,RW,DWord,Counter of Digital Input 3.17,,Basic
237,37,2,RW,DWord,Counter of Digital Input 3.18,,Basic
239,39,2,RW,DWord,Counter of Digital Input 3.19,,Basic
241,41,2,RW,DWord,Counter of Digital Input 3.20,,Basic
243,43,2,RW,DWord,Counter of Digital Input 3.21,,Basic
245,45,2,RW,DWord,Counter of Digital Input 3.22,,Basic
247,47,2,RW,DWord,Counter of Digital Input 3.23,,Basic
249,49,2,RW,DWord,Counter of Digital Input 3.24,,Basic
251,51,2,RW,DWord,Counter of Digital Input 3.25,,Basic
253,53,2,RW,DWord,Counter of Digital Input 3.26,,Basic
255,55,2,RW,DWord,Counter of Digital Input 3.27,,Basic
257,57,2,RW,DWord,Counter of Digital Input 3.28,,Basic
259,59,2,RW,DWord,Counter of Digital Input 3.29,,Basic
261,61,2,RW,DWord,Counter of Digital Input 3.30,,Basic
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 3.1,,Obsolete
700,500,1,W,Word,Reserved - Do Not Use,,Reserved
701,501,1,W,Word,Reserved - Do Not Use,,Reserved
702,502,1,W,Word,Reserved - Do Not Use,,Reserved
703,503,1,W,Word,Reserved - Do Not Use,,Reserved
704,504,1,W,Word,Reserved - Do Not Use,,Reserved
705,505,1,W,Word,Reserved - Do Not Use,,Reserved
706,506,1,W,Word,Reserved - Do Not Use,,Reserved
707,507,1,W,Word,Reserved - Do Not Use,,Reserved
708,508,1,W,Word,Reserved - Do Not Use,,Reserved
709,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1200,1000,1,R,Word,Firmware Version,,Expert
1201,1001,1,R,Word,Number of I/Os,,Advanced
1202,1002,1,R,Word,Number of peripherals,,Advanced
1203,1003,1,R,Word,Firmware ID,,Expert
1204,1004,1,R,Word,Hardware ID,,Expert
1205,1005,2,R,DWord,PCB Serial Number,,Expert
1207,1007,1,RW,Word,Interrupt Mask,,Expert
1208,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1209,1009,1,R,Word,VRef of MCU,,Expert
1210,1010,1,RW,Word,Debounce time (in 100us) for DI 3.1,,Advanced
1211,1011,1,RW,Word,Debounce time (in 100us) for DI 3.2,,Advanced
1212,1012,1,RW,Word,Debounce time (in 100us) for DI 3.3,,Advanced
1213,1013,1,RW,Word,Debounce time (in 100us) for DI 3.4,,Advanced
1214,1014,1,RW,Word,Debounce time (in 100us) for DI 3.5,,Advanced
1215,1015,1,RW,Word,Debounce time (in 100us) for DI 3.6,,Advanced
1216,1016,1,RW,Word,Debounce time (in 100us) for DI 3.7,,Advanced
1217,1017,1,RW,Word,Debounce time (in 100us) for DI 3.8,,Advanced
1218,1018,1,RW,Word,Debounce time (in 100us) for DI 3.9,,Advanced
1219,1019,1,RW,Word,Debounce time (in 100us) for DI 3.10,,Advanced
1220,1020,1,RW,Word,Debounce time (in 100us) for DI 3.11,,Advanced
1221,1021,1,RW,Word,Debounce time (in 100us) for DI 3.12,,Advanced
1222,1022,1,RW,Word,Debounce time (in 100us) for DI 3.13,,Advanced
1223,1023,1,RW,Word,Debounce time (in 100us) for DI 3.14,,Advanced
1224,1024,1,RW,Word,Debounce time (in 100us) for DI 3.15,,Advanced
1225,1025,1,RW,Word,Debounce time (in 100us) for DI 3.16,,Advanced
1226,1026,1,RW,Word,Debounce time (in 100us) for DI 3.17,,Advanced
1227,1027,1,RW,Word,Debounce time (in 100us) for DI 3.18,,Advanced
1228,1028,1,RW,Word,Debounce time (in 100us) for DI 3.19,,Advanced
1229,1029,1,RW,Word,Debounce time (in 100us) for DI 3.20,,Advanced
1230,1030,1,RW,Word,Debounce time (in 100us) for DI 3.21,,Advanced
1231,1031,1,RW,Word,Debounce time (in 100us) for DI 3.22,,Advanced
1232,1032,1,RW,Word,Debounce time (in 100us) for DI 3.23,,Advanced
1233,1033,1,RW,Word,Debounce time (in 100us) for DI 3.24,,Advanced
1234,1034,1,RW,Word,Debounce time (in 100us) for DI 3.25,,Advanced
1235,1035,1,RW,Word,Debounce time (in 100us) for DI 3.26,,Advanced
1236,1036,1,RW,Word,Debounce time (in 100us) for DI 3.27,,Advanced
1237,1037,1,RW,Word,Debounce time (in 100us) for DI 3.28,,Advanced
1238,1038,1,RW,Word,Debounce time (in 100us) for DI 3.29,,Advanced
1239,1039,1,RW,Word,Debounce time (in 100us) for DI 3.30,,Advanced
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 3 Register Count R/W Data Type Content Start Bit Nr. Category
2 200 0 1 R MixedBits Digital Input 3.1 0 Basic
3 200 0 1 R MixedBits Digital Input 3.2 1 Basic
4 200 0 1 R MixedBits Digital Input 3.3 2 Basic
5 200 0 1 R MixedBits Digital Input 3.4 3 Basic
6 200 0 1 R MixedBits Digital Input 3.5 4 Basic
7 200 0 1 R MixedBits Digital Input 3.6 5 Basic
8 200 0 1 R MixedBits Digital Input 3.7 6 Basic
9 200 0 1 R MixedBits Digital Input 3.8 7 Basic
10 200 0 1 R MixedBits Digital Input 3.9 8 Basic
11 200 0 1 R MixedBits Digital Input 3.10 9 Basic
12 200 0 1 R MixedBits Digital Input 3.11 10 Basic
13 200 0 1 R MixedBits Digital Input 3.12 11 Basic
14 200 0 1 R MixedBits Digital Input 3.13 12 Basic
15 200 0 1 R MixedBits Digital Input 3.14 13 Basic
16 200 0 1 R MixedBits Digital Input 3.15 14 Basic
17 200 0 1 R MixedBits Digital Input 3.16 15 Basic
18 201 1 1 R MixedBits Digital Input 3.17 0 Basic
19 201 1 1 R MixedBits Digital Input 3.18 1 Basic
20 201 1 1 R MixedBits Digital Input 3.19 2 Basic
21 201 1 1 R MixedBits Digital Input 3.20 3 Basic
22 201 1 1 R MixedBits Digital Input 3.21 4 Basic
23 201 1 1 R MixedBits Digital Input 3.22 5 Basic
24 201 1 1 R MixedBits Digital Input 3.23 6 Basic
25 201 1 1 R MixedBits Digital Input 3.24 7 Basic
26 201 1 1 R MixedBits Digital Input 3.25 8 Basic
27 201 1 1 R MixedBits Digital Input 3.26 9 Basic
28 201 1 1 R MixedBits Digital Input 3.27 10 Basic
29 201 1 1 R MixedBits Digital Input 3.28 11 Basic
30 201 1 1 R MixedBits Digital Input 3.29 12 Basic
31 201 1 1 R MixedBits Digital Input 3.30 13 Basic
32 202 2 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
33 203 3 2 RW DWord Counter of Digital Input 3.1 Basic
34 205 5 2 RW DWord Counter of Digital Input 3.2 Basic
35 207 7 2 RW DWord Counter of Digital Input 3.3 Basic
36 209 9 2 RW DWord Counter of Digital Input 3.4 Basic
37 211 11 2 RW DWord Counter of Digital Input 3.5 Basic
38 213 13 2 RW DWord Counter of Digital Input 3.6 Basic
39 215 15 2 RW DWord Counter of Digital Input 3.7 Basic
40 217 17 2 RW DWord Counter of Digital Input 3.8 Basic
41 219 19 2 RW DWord Counter of Digital Input 3.9 Basic
42 221 21 2 RW DWord Counter of Digital Input 3.10 Basic
43 223 23 2 RW DWord Counter of Digital Input 3.11 Basic
44 225 25 2 RW DWord Counter of Digital Input 3.12 Basic
45 227 27 2 RW DWord Counter of Digital Input 3.13 Basic
46 229 29 2 RW DWord Counter of Digital Input 3.14 Basic
47 231 31 2 RW DWord Counter of Digital Input 3.15 Basic
48 233 33 2 RW DWord Counter of Digital Input 3.16 Basic
49 235 35 2 RW DWord Counter of Digital Input 3.17 Basic
50 237 37 2 RW DWord Counter of Digital Input 3.18 Basic
51 239 39 2 RW DWord Counter of Digital Input 3.19 Basic
52 241 41 2 RW DWord Counter of Digital Input 3.20 Basic
53 243 43 2 RW DWord Counter of Digital Input 3.21 Basic
54 245 45 2 RW DWord Counter of Digital Input 3.22 Basic
55 247 47 2 RW DWord Counter of Digital Input 3.23 Basic
56 249 49 2 RW DWord Counter of Digital Input 3.24 Basic
57 251 51 2 RW DWord Counter of Digital Input 3.25 Basic
58 253 53 2 RW DWord Counter of Digital Input 3.26 Basic
59 255 55 2 RW DWord Counter of Digital Input 3.27 Basic
60 257 57 2 RW DWord Counter of Digital Input 3.28 Basic
61 259 59 2 RW DWord Counter of Digital Input 3.29 Basic
62 261 61 2 RW DWord Counter of Digital Input 3.30 Basic
63 100 2 RW DWord (Internal) RS485 Full Mode Configuration 3.1 Obsolete
64 700 500 1 W Word Reserved - Do Not Use Reserved
65 701 501 1 W Word Reserved - Do Not Use Reserved
66 702 502 1 W Word Reserved - Do Not Use Reserved
67 703 503 1 W Word Reserved - Do Not Use Reserved
68 704 504 1 W Word Reserved - Do Not Use Reserved
69 705 505 1 W Word Reserved - Do Not Use Reserved
70 706 506 1 W Word Reserved - Do Not Use Reserved
71 707 507 1 W Word Reserved - Do Not Use Reserved
72 708 508 1 W Word Reserved - Do Not Use Reserved
73 709 509 1 W Word Reserved - Do Not Use Reserved
74 510 1 RW Word (Internal) Stored Firmware Version Expert
75 511 1 RW Word (Internal) Stored Firmware Revision Expert
76 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
77 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
78 514 1 RW Word (Internal) Stored PCB Revision Expert
79 515 1 RW Word (Internal) Stored PCB Serial Number Expert
80 516 1 RW Word (Internal) Stored HW Revision Number Expert
81 1200 1000 1 R Word Firmware Version Expert
82 1201 1001 1 R Word Number of I/Os Advanced
83 1202 1002 1 R Word Number of peripherals Advanced
84 1203 1003 1 R Word Firmware ID Expert
85 1204 1004 1 R Word Hardware ID Expert
86 1205 1005 2 R DWord PCB Serial Number Expert
87 1207 1007 1 RW Word Interrupt Mask Expert
88 1208 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
89 1209 1009 1 R Word VRef of MCU Expert
90 1210 1010 1 RW Word Debounce time (in 100us) for DI 3.1 Advanced
91 1211 1011 1 RW Word Debounce time (in 100us) for DI 3.2 Advanced
92 1212 1012 1 RW Word Debounce time (in 100us) for DI 3.3 Advanced
93 1213 1013 1 RW Word Debounce time (in 100us) for DI 3.4 Advanced
94 1214 1014 1 RW Word Debounce time (in 100us) for DI 3.5 Advanced
95 1215 1015 1 RW Word Debounce time (in 100us) for DI 3.6 Advanced
96 1216 1016 1 RW Word Debounce time (in 100us) for DI 3.7 Advanced
97 1217 1017 1 RW Word Debounce time (in 100us) for DI 3.8 Advanced
98 1218 1018 1 RW Word Debounce time (in 100us) for DI 3.9 Advanced
99 1219 1019 1 RW Word Debounce time (in 100us) for DI 3.10 Advanced
100 1220 1020 1 RW Word Debounce time (in 100us) for DI 3.11 Advanced
101 1221 1021 1 RW Word Debounce time (in 100us) for DI 3.12 Advanced
102 1222 1022 1 RW Word Debounce time (in 100us) for DI 3.13 Advanced
103 1223 1023 1 RW Word Debounce time (in 100us) for DI 3.14 Advanced
104 1224 1024 1 RW Word Debounce time (in 100us) for DI 3.15 Advanced
105 1225 1025 1 RW Word Debounce time (in 100us) for DI 3.16 Advanced
106 1226 1026 1 RW Word Debounce time (in 100us) for DI 3.17 Advanced
107 1227 1027 1 RW Word Debounce time (in 100us) for DI 3.18 Advanced
108 1228 1028 1 RW Word Debounce time (in 100us) for DI 3.19 Advanced
109 1229 1029 1 RW Word Debounce time (in 100us) for DI 3.20 Advanced
110 1230 1030 1 RW Word Debounce time (in 100us) for DI 3.21 Advanced
111 1231 1031 1 RW Word Debounce time (in 100us) for DI 3.22 Advanced
112 1232 1032 1 RW Word Debounce time (in 100us) for DI 3.23 Advanced
113 1233 1033 1 RW Word Debounce time (in 100us) for DI 3.24 Advanced
114 1234 1034 1 RW Word Debounce time (in 100us) for DI 3.25 Advanced
115 1235 1035 1 RW Word Debounce time (in 100us) for DI 3.26 Advanced
116 1236 1036 1 RW Word Debounce time (in 100us) for DI 3.27 Advanced
117 1237 1037 1 RW Word Debounce time (in 100us) for DI 3.28 Advanced
118 1238 1038 1 RW Word Debounce time (in 100us) for DI 3.29 Advanced
119 1239 1039 1 RW Word Debounce time (in 100us) for DI 3.30 Advanced
120 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,32 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Digital Output 1.1,Basic
1,1,RW,Digital Output 1.2,Basic
2,2,RW,Digital Output 1.3,Basic
3,3,RW,Digital Output 1.4,Basic
4,4,R,Digital Input 1.1,Basic
5,5,R,Digital Input 1.2,Basic
6,6,R,Digital Input 1.3,Basic
7,7,R,Digital Input 1.4,Basic
8,8,RW,User Programmable LED 1.1,Basic
9,9,RW,User Programmable LED 1.2,Basic
10,10,RW,User Programmable LED 1.3,Basic
11,11,RW,User Programmable LED 1.4,Basic
1000,1000,RW,MWD reset indication,Advanced
1001,1001,RW,Enable/Disable 1Wire Bus,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1012,1012,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1013,1013,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1014,1014,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1015,1015,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1016,1016,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1017,1017,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1018,1018,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Digital Output 1.1 Basic
3 1 1 RW Digital Output 1.2 Basic
4 2 2 RW Digital Output 1.3 Basic
5 3 3 RW Digital Output 1.4 Basic
6 4 4 R Digital Input 1.1 Basic
7 5 5 R Digital Input 1.2 Basic
8 6 6 R Digital Input 1.3 Basic
9 7 7 R Digital Input 1.4 Basic
10 8 8 RW User Programmable LED 1.1 Basic
11 9 9 RW User Programmable LED 1.2 Basic
12 10 10 RW User Programmable LED 1.3 Basic
13 11 11 RW User Programmable LED 1.4 Basic
14 1000 1000 RW MWD reset indication Advanced
15 1001 1001 RW Enable/Disable 1Wire Bus Advanced
16 1002 1002 R Reset group MCU Advanced
17 1003 1003 RW Save current configuration and use on startup Advanced
18 1004 1004 RW (Internal) Firmware programming toggle Expert
19 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
20 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
21 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
22 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
23 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
24 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
25 1011 1011 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
26 1012 1012 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
27 1013 1013 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
28 1014 1014 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
29 1015 1015 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
30 1016 1016 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
31 1017 1017 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
32 1018 1018 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced

View File

@ -0,0 +1,35 @@
Via Unit 0,Via Unit 2,R/W,Content,Category
100,0,RW,Relay Output 2.1,Basic
101,1,RW,Relay Output 2.2,Basic
102,2,RW,Relay Output 2.3,Basic
103,3,RW,Relay Output 2.4,Basic
104,4,RW,Relay Output 2.5,Basic
105,5,RW,Relay Output 2.6,Basic
106,6,RW,Relay Output 2.7,Basic
107,7,RW,Relay Output 2.8,Basic
108,8,RW,Relay Output 2.9,Basic
109,9,RW,Relay Output 2.10,Basic
110,10,RW,Relay Output 2.11,Basic
111,11,RW,Relay Output 2.12,Basic
112,12,RW,Relay Output 2.13,Basic
113,13,RW,Relay Output 2.14,Basic
114,14,RW,Relay Output 2.15,Basic
115,15,RW,Relay Output 2.16,Basic
116,16,RW,Relay Output 2.17,Basic
117,17,RW,Relay Output 2.18,Basic
118,18,RW,Relay Output 2.19,Basic
119,19,RW,Relay Output 2.20,Basic
120,20,RW,Relay Output 2.21,Basic
121,21,RW,Relay Output 2.22,Basic
122,22,RW,Relay Output 2.23,Basic
123,23,RW,Relay Output 2.24,Basic
124,24,RW,Relay Output 2.25,Basic
125,25,RW,Relay Output 2.26,Basic
126,26,RW,Relay Output 2.27,Basic
127,27,RW,Relay Output 2.28,Basic
1100,1000,RW,MWD reset indication,Advanced
1102,1002,R,Reset group MCU,Advanced
1103,1003,RW,Save current configuration and use on startup,Advanced
1104,1004,RW,(Internal) Firmware programming toggle,Expert
1105,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1106,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1 Via Unit 0 Via Unit 2 R/W Content Category
2 100 0 RW Relay Output 2.1 Basic
3 101 1 RW Relay Output 2.2 Basic
4 102 2 RW Relay Output 2.3 Basic
5 103 3 RW Relay Output 2.4 Basic
6 104 4 RW Relay Output 2.5 Basic
7 105 5 RW Relay Output 2.6 Basic
8 106 6 RW Relay Output 2.7 Basic
9 107 7 RW Relay Output 2.8 Basic
10 108 8 RW Relay Output 2.9 Basic
11 109 9 RW Relay Output 2.10 Basic
12 110 10 RW Relay Output 2.11 Basic
13 111 11 RW Relay Output 2.12 Basic
14 112 12 RW Relay Output 2.13 Basic
15 113 13 RW Relay Output 2.14 Basic
16 114 14 RW Relay Output 2.15 Basic
17 115 15 RW Relay Output 2.16 Basic
18 116 16 RW Relay Output 2.17 Basic
19 117 17 RW Relay Output 2.18 Basic
20 118 18 RW Relay Output 2.19 Basic
21 119 19 RW Relay Output 2.20 Basic
22 120 20 RW Relay Output 2.21 Basic
23 121 21 RW Relay Output 2.22 Basic
24 122 22 RW Relay Output 2.23 Basic
25 123 23 RW Relay Output 2.24 Basic
26 124 24 RW Relay Output 2.25 Basic
27 125 25 RW Relay Output 2.26 Basic
28 126 26 RW Relay Output 2.27 Basic
29 127 27 RW Relay Output 2.28 Basic
30 1100 1000 RW MWD reset indication Advanced
31 1102 1002 R Reset group MCU Advanced
32 1103 1003 RW Save current configuration and use on startup Advanced
33 1104 1004 RW (Internal) Firmware programming toggle Expert
34 1105 1005 RW (Internal) Firmware reprogramming toggle Expert
35 1106 1006 RW (Internal) Firmware calibration programming toggle Expert

View File

@ -0,0 +1,35 @@
Via Unit 0,Via Unit 3,R/W,Content,Category
200,0,RW,Relay Output 3.1,Basic
201,1,RW,Relay Output 3.2,Basic
202,2,RW,Relay Output 3.3,Basic
203,3,RW,Relay Output 3.4,Basic
204,4,RW,Relay Output 3.5,Basic
205,5,RW,Relay Output 3.6,Basic
206,6,RW,Relay Output 3.7,Basic
207,7,RW,Relay Output 3.8,Basic
208,8,RW,Relay Output 3.9,Basic
209,9,RW,Relay Output 3.10,Basic
210,10,RW,Relay Output 3.11,Basic
211,11,RW,Relay Output 3.12,Basic
212,12,RW,Relay Output 3.13,Basic
213,13,RW,Relay Output 3.14,Basic
214,14,RW,Relay Output 3.15,Basic
215,15,RW,Relay Output 3.16,Basic
216,16,RW,Relay Output 3.17,Basic
217,17,RW,Relay Output 3.18,Basic
218,18,RW,Relay Output 3.19,Basic
219,19,RW,Relay Output 3.20,Basic
220,20,RW,Relay Output 3.21,Basic
221,21,RW,Relay Output 3.22,Basic
222,22,RW,Relay Output 3.23,Basic
223,23,RW,Relay Output 3.24,Basic
224,24,RW,Relay Output 3.25,Basic
225,25,RW,Relay Output 3.26,Basic
226,26,RW,Relay Output 3.27,Basic
227,27,RW,Relay Output 3.28,Basic
1200,1000,RW,MWD reset indication,Advanced
1202,1002,R,Reset group MCU,Advanced
1203,1003,RW,Save current configuration and use on startup,Advanced
1204,1004,RW,(Internal) Firmware programming toggle,Expert
1205,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1206,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1 Via Unit 0 Via Unit 3 R/W Content Category
2 200 0 RW Relay Output 3.1 Basic
3 201 1 RW Relay Output 3.2 Basic
4 202 2 RW Relay Output 3.3 Basic
5 203 3 RW Relay Output 3.4 Basic
6 204 4 RW Relay Output 3.5 Basic
7 205 5 RW Relay Output 3.6 Basic
8 206 6 RW Relay Output 3.7 Basic
9 207 7 RW Relay Output 3.8 Basic
10 208 8 RW Relay Output 3.9 Basic
11 209 9 RW Relay Output 3.10 Basic
12 210 10 RW Relay Output 3.11 Basic
13 211 11 RW Relay Output 3.12 Basic
14 212 12 RW Relay Output 3.13 Basic
15 213 13 RW Relay Output 3.14 Basic
16 214 14 RW Relay Output 3.15 Basic
17 215 15 RW Relay Output 3.16 Basic
18 216 16 RW Relay Output 3.17 Basic
19 217 17 RW Relay Output 3.18 Basic
20 218 18 RW Relay Output 3.19 Basic
21 219 19 RW Relay Output 3.20 Basic
22 220 20 RW Relay Output 3.21 Basic
23 221 21 RW Relay Output 3.22 Basic
24 222 22 RW Relay Output 3.23 Basic
25 223 23 RW Relay Output 3.24 Basic
26 224 24 RW Relay Output 3.25 Basic
27 225 25 RW Relay Output 3.26 Basic
28 226 26 RW Relay Output 3.27 Basic
29 227 27 RW Relay Output 3.28 Basic
30 1200 1000 RW MWD reset indication Advanced
31 1202 1002 R Reset group MCU Advanced
32 1203 1003 RW Save current configuration and use on startup Advanced
33 1204 1004 RW (Internal) Firmware programming toggle Expert
34 1205 1005 RW (Internal) Firmware reprogramming toggle Expert
35 1206 1006 RW (Internal) Firmware calibration programming toggle Expert

View File

@ -0,0 +1,97 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
1,1,1,RW,MixedBits,Digital Output 1.1,0,Basic
1,1,1,RW,MixedBits,Digital Output 1.2,1,Basic
1,1,1,RW,MixedBits,Digital Output 1.3,2,Basic
1,1,1,RW,MixedBits,Digital Output 1.4,3,Basic
2,2,1,RW,Word,Analog Output (raw value) 1.1,,Obsolete
3,3,1,R,Word,Analog Input (raw value) 1.1,,Obsolete
4,4,1,R,Word,Analog Input/Output (raw value) 1.1,,Obsolete
5,5,1,R,Word,VRefInt of MCU,,Expert
6,6,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
7,7,1,R,Word,Length of RS485 TX Queue 1.1,,Obsolete
8,8,2,RW,DWord,Counter of Digital Input 1.1,,Basic
10,10,2,RW,DWord,Counter of Digital Input 1.2,,Basic
12,12,2,RW,DWord,Counter of Digital Input 1.3,,Basic
14,14,2,RW,DWord,Counter of Digital Input 1.4,,Basic
16,16,1,RW,Word,PWM Duty Cycle of DO 1.1,,Basic
17,17,1,RW,Word,PWM Duty Cycle of DO 1.2,,Basic
18,18,1,RW,Word,PWM Duty Cycle of DO 1.3,,Basic
19,19,1,RW,Word,PWM Duty Cycle of DO 1.4,,Basic
20,20,1,RW,MixedBits,User LED 1.1,0,Basic
20,20,1,RW,MixedBits,User LED 1.2,1,Basic
20,20,1,RW,MixedBits,User LED 1.3,2,Basic
20,20,1,RW,MixedBits,User LED 1.4,3,Basic
21,21,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1017,1017,1,RW,Word,PWM Group prescaler,,Basic
1018,1018,1,RW,Word,PWM Group cycle length,,Basic
1019,1019,1,RW,Word,Analog Output Configuration(U/I/R-measure) 1.1,,Basic
1020,1020,1,RW,Word,Analog Output Voltage deviation 1.1,,Expert
1021,1021,1,RW,Word,Analog Output Voltage offset 1.1,,Expert
1022,1022,1,RW,Word,Analog Output Current deviation 1.1,,Expert
1023,1023,1,RW,Word,Analog Output Current offset 1.1,,Expert
1024,1024,1,RW,Word,Analog Input Configuration(U/I) 1.1,,Basic
1025,1025,1,RW,Word,Analog Input Voltage deviation 1.1,,Expert
1026,1026,1,RW,Word,Analog Input Voltage offset 1.1,,Expert
1027,1027,1,RW,Word,Analog Input Current deviation 1.1,,Expert
1028,1028,1,RW,Word,Analog Input Current offset 1.1,,Expert
1029,1029,1,RW,Word,Analog Input/Output Voltage deviation (input side) 1.1,,Expert
1030,1030,1,RW,Word,Analog Input/Output Voltage offset (input side) 1.1,,Expert
1031,1031,1,RW,MixedBits,RS485 Configuration 1.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
3000,3000,2,RW,Real,Analog Output value 1.1,,Basic
3002,3002,2,R,Real,Analog Input value 1.1,,Basic
3004,3004,2,R,Real,(Internal) Analog Output measured voltage value 1.1,,Expert
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 1 1 1 RW MixedBits Digital Output 1.1 0 Basic
7 1 1 1 RW MixedBits Digital Output 1.2 1 Basic
8 1 1 1 RW MixedBits Digital Output 1.3 2 Basic
9 1 1 1 RW MixedBits Digital Output 1.4 3 Basic
10 2 2 1 RW Word Analog Output (raw value) 1.1 Obsolete
11 3 3 1 R Word Analog Input (raw value) 1.1 Obsolete
12 4 4 1 R Word Analog Input/Output (raw value) 1.1 Obsolete
13 5 5 1 R Word VRefInt of MCU Expert
14 6 6 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
15 7 7 1 R Word Length of RS485 TX Queue 1.1 Obsolete
16 8 8 2 RW DWord Counter of Digital Input 1.1 Basic
17 10 10 2 RW DWord Counter of Digital Input 1.2 Basic
18 12 12 2 RW DWord Counter of Digital Input 1.3 Basic
19 14 14 2 RW DWord Counter of Digital Input 1.4 Basic
20 16 16 1 RW Word PWM Duty Cycle of DO 1.1 Basic
21 17 17 1 RW Word PWM Duty Cycle of DO 1.2 Basic
22 18 18 1 RW Word PWM Duty Cycle of DO 1.3 Basic
23 19 19 1 RW Word PWM Duty Cycle of DO 1.4 Basic
24 20 20 1 RW MixedBits User LED 1.1 0 Basic
25 20 20 1 RW MixedBits User LED 1.2 1 Basic
26 20 20 1 RW MixedBits User LED 1.3 2 Basic
27 20 20 1 RW MixedBits User LED 1.4 3 Basic
28 21 21 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
29 21 21 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
30 21 21 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
31 21 21 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
32 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
33 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
34 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
35 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
36 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
37 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
38 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
39 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
40 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
41 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
42 505 505 1 W Word Reserved - Do Not Use Reserved
43 506 506 1 W Word Reserved - Do Not Use Reserved
44 507 507 1 W Word Reserved - Do Not Use Reserved
45 508 508 1 W Word Reserved - Do Not Use Reserved
46 509 509 1 W Word Reserved - Do Not Use Reserved
47 510 1 RW Word (Internal) Stored Firmware Version Expert
48 511 1 RW Word (Internal) Stored Firmware Revision Expert
49 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
50 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
51 514 1 RW Word (Internal) Stored PCB Revision Expert
52 515 1 RW Word (Internal) Stored PCB Serial Number Expert
53 516 1 RW Word (Internal) Stored HW Revision Number Expert
54 1000 1000 1 R Word Firmware Version Expert
55 1001 1001 1 R Word Number of I/Os Advanced
56 1002 1002 1 R Word Number of peripherals Advanced
57 1003 1003 1 R Word Firmware ID Expert
58 1004 1004 1 R Word Hardware ID Expert
59 1005 1005 2 R DWord PCB Serial Number Expert
60 1007 1007 1 RW Word Interrupt Mask Expert
61 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
62 1009 1009 1 R Word VRef of MCU Expert
63 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
64 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
65 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
66 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
67 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
68 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
69 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
70 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
71 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
72 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
73 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
74 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
75 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
76 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
77 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
78 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
79 1017 1017 1 RW Word PWM Group prescaler Basic
80 1018 1018 1 RW Word PWM Group cycle length Basic
81 1019 1019 1 RW Word Analog Output Configuration(U/I/R-measure) 1.1 Basic
82 1020 1020 1 RW Word Analog Output Voltage deviation 1.1 Expert
83 1021 1021 1 RW Word Analog Output Voltage offset 1.1 Expert
84 1022 1022 1 RW Word Analog Output Current deviation 1.1 Expert
85 1023 1023 1 RW Word Analog Output Current offset 1.1 Expert
86 1024 1024 1 RW Word Analog Input Configuration(U/I) 1.1 Basic
87 1025 1025 1 RW Word Analog Input Voltage deviation 1.1 Expert
88 1026 1026 1 RW Word Analog Input Voltage offset 1.1 Expert
89 1027 1027 1 RW Word Analog Input Current deviation 1.1 Expert
90 1028 1028 1 RW Word Analog Input Current offset 1.1 Expert
91 1029 1029 1 RW Word Analog Input/Output Voltage deviation (input side) 1.1 Expert
92 1030 1030 1 RW Word Analog Input/Output Voltage offset (input side) 1.1 Expert
93 1031 1031 1 RW MixedBits RS485 Configuration 1.1 Obsolete
94 2000 220 W Word Reserved - Do Not Use Reserved
95 3000 3000 2 RW Real Analog Output value 1.1 Basic
96 3002 3002 2 R Real Analog Input value 1.1 Basic
97 3004 3004 2 R Real (Internal) Analog Output measured voltage value 1.1 Expert

View File

@ -0,0 +1,120 @@
Via Unit 0,Via Unit 2,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
100,0,1,RW,MixedBits,Relay Output 2.1,0,Basic
100,0,1,RW,MixedBits,Relay Output 2.2,1,Basic
100,0,1,RW,MixedBits,Relay Output 2.3,2,Basic
100,0,1,RW,MixedBits,Relay Output 2.4,3,Basic
100,0,1,RW,MixedBits,Relay Output 2.5,4,Basic
100,0,1,RW,MixedBits,Relay Output 2.6,5,Basic
100,0,1,RW,MixedBits,Relay Output 2.7,6,Basic
100,0,1,RW,MixedBits,Relay Output 2.8,7,Basic
100,0,1,RW,MixedBits,Relay Output 2.9,8,Basic
100,0,1,RW,MixedBits,Relay Output 2.10,9,Basic
100,0,1,RW,MixedBits,Relay Output 2.11,10,Basic
100,0,1,RW,MixedBits,Relay Output 2.12,11,Basic
100,0,1,RW,MixedBits,Relay Output 2.13,12,Basic
100,0,1,RW,MixedBits,Relay Output 2.14,13,Basic
100,0,1,RW,MixedBits,Relay Output 2.15,14,Basic
100,0,1,RW,MixedBits,Relay Output 2.16,15,Basic
101,1,1,RW,MixedBits,Relay Output 2.17,0,Basic
101,1,1,RW,MixedBits,Relay Output 2.18,1,Basic
101,1,1,RW,MixedBits,Relay Output 2.19,2,Basic
101,1,1,RW,MixedBits,Relay Output 2.20,3,Basic
101,1,1,RW,MixedBits,Relay Output 2.21,4,Basic
101,1,1,RW,MixedBits,Relay Output 2.22,5,Basic
101,1,1,RW,MixedBits,Relay Output 2.23,6,Basic
101,1,1,RW,MixedBits,Relay Output 2.24,7,Basic
101,1,1,RW,MixedBits,Relay Output 2.25,8,Basic
101,1,1,RW,MixedBits,Relay Output 2.26,9,Basic
101,1,1,RW,MixedBits,Relay Output 2.27,10,Basic
101,1,1,RW,MixedBits,Relay Output 2.28,11,Basic
102,2,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
103,3,1,W,Word,Reserved - Do Not Use,,Reserved
104,4,1,W,Word,Reserved - Do Not Use,,Reserved
105,5,1,W,Word,Reserved - Do Not Use,,Reserved
106,6,1,W,Word,Reserved - Do Not Use,,Reserved
107,7,1,RW,MixedBits,Synchronised DO/RO 2.1,0,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.2,1,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.3,2,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.4,3,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.5,4,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.6,5,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.7,6,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.8,7,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.9,8,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.10,9,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.11,10,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.12,11,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.13,12,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.14,13,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.15,14,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.16,15,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.17,0,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.18,1,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.19,2,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.20,3,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.21,4,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.22,5,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.23,6,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.24,7,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.25,8,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.26,9,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.27,10,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.28,11,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.1,0,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.2,1,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.3,2,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.4,3,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.5,4,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.6,5,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.7,6,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.8,7,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.9,8,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.10,9,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.11,10,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.12,11,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.13,12,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.14,13,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.15,14,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.16,15,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.17,0,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.18,1,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.19,2,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.20,3,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.21,4,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.22,5,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.23,6,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.24,7,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.25,8,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.26,9,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.27,10,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.28,11,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 2.1,,Obsolete
600,500,1,W,Word,Reserved - Do Not Use,,Reserved
601,501,1,W,Word,Reserved - Do Not Use,,Reserved
602,502,1,W,Word,Reserved - Do Not Use,,Reserved
603,503,1,W,Word,Reserved - Do Not Use,,Reserved
604,504,1,W,Word,Reserved - Do Not Use,,Reserved
605,505,1,W,Word,Reserved - Do Not Use,,Reserved
606,506,1,W,Word,Reserved - Do Not Use,,Reserved
607,507,1,W,Word,Reserved - Do Not Use,,Reserved
608,508,1,W,Word,Reserved - Do Not Use,,Reserved
609,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1100,1000,1,R,Word,Firmware Version,,Expert
1101,1001,1,R,Word,Number of I/Os,,Advanced
1102,1002,1,R,Word,Number of peripherals,,Advanced
1103,1003,1,R,Word,Firmware ID,,Expert
1104,1004,1,R,Word,Hardware ID,,Expert
1105,1005,2,R,DWord,PCB Serial Number,,Expert
1107,1007,1,RW,Word,Interrupt Mask,,Expert
1108,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1109,1009,1,R,Word,VRef of MCU,,Expert
1110,1010,1,W,Word,Reserved - Do Not Use,,Reserved
1111,1011,1,W,Word,Reserved - Do Not Use,,Reserved
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 2 Register Count R/W Data Type Content Start Bit Nr. Category
2 100 0 1 RW MixedBits Relay Output 2.1 0 Basic
3 100 0 1 RW MixedBits Relay Output 2.2 1 Basic
4 100 0 1 RW MixedBits Relay Output 2.3 2 Basic
5 100 0 1 RW MixedBits Relay Output 2.4 3 Basic
6 100 0 1 RW MixedBits Relay Output 2.5 4 Basic
7 100 0 1 RW MixedBits Relay Output 2.6 5 Basic
8 100 0 1 RW MixedBits Relay Output 2.7 6 Basic
9 100 0 1 RW MixedBits Relay Output 2.8 7 Basic
10 100 0 1 RW MixedBits Relay Output 2.9 8 Basic
11 100 0 1 RW MixedBits Relay Output 2.10 9 Basic
12 100 0 1 RW MixedBits Relay Output 2.11 10 Basic
13 100 0 1 RW MixedBits Relay Output 2.12 11 Basic
14 100 0 1 RW MixedBits Relay Output 2.13 12 Basic
15 100 0 1 RW MixedBits Relay Output 2.14 13 Basic
16 100 0 1 RW MixedBits Relay Output 2.15 14 Basic
17 100 0 1 RW MixedBits Relay Output 2.16 15 Basic
18 101 1 1 RW MixedBits Relay Output 2.17 0 Basic
19 101 1 1 RW MixedBits Relay Output 2.18 1 Basic
20 101 1 1 RW MixedBits Relay Output 2.19 2 Basic
21 101 1 1 RW MixedBits Relay Output 2.20 3 Basic
22 101 1 1 RW MixedBits Relay Output 2.21 4 Basic
23 101 1 1 RW MixedBits Relay Output 2.22 5 Basic
24 101 1 1 RW MixedBits Relay Output 2.23 6 Basic
25 101 1 1 RW MixedBits Relay Output 2.24 7 Basic
26 101 1 1 RW MixedBits Relay Output 2.25 8 Basic
27 101 1 1 RW MixedBits Relay Output 2.26 9 Basic
28 101 1 1 RW MixedBits Relay Output 2.27 10 Basic
29 101 1 1 RW MixedBits Relay Output 2.28 11 Basic
30 102 2 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
31 103 3 1 W Word Reserved - Do Not Use Reserved
32 104 4 1 W Word Reserved - Do Not Use Reserved
33 105 5 1 W Word Reserved - Do Not Use Reserved
34 106 6 1 W Word Reserved - Do Not Use Reserved
35 107 7 1 RW MixedBits Synchronised DO/RO 2.1 0 Advanced
36 107 7 1 RW MixedBits Synchronised DO/RO 2.2 1 Advanced
37 107 7 1 RW MixedBits Synchronised DO/RO 2.3 2 Advanced
38 107 7 1 RW MixedBits Synchronised DO/RO 2.4 3 Advanced
39 107 7 1 RW MixedBits Synchronised DO/RO 2.5 4 Advanced
40 107 7 1 RW MixedBits Synchronised DO/RO 2.6 5 Advanced
41 107 7 1 RW MixedBits Synchronised DO/RO 2.7 6 Advanced
42 107 7 1 RW MixedBits Synchronised DO/RO 2.8 7 Advanced
43 107 7 1 RW MixedBits Synchronised DO/RO 2.9 8 Advanced
44 107 7 1 RW MixedBits Synchronised DO/RO 2.10 9 Advanced
45 107 7 1 RW MixedBits Synchronised DO/RO 2.11 10 Advanced
46 107 7 1 RW MixedBits Synchronised DO/RO 2.12 11 Advanced
47 107 7 1 RW MixedBits Synchronised DO/RO 2.13 12 Advanced
48 107 7 1 RW MixedBits Synchronised DO/RO 2.14 13 Advanced
49 107 7 1 RW MixedBits Synchronised DO/RO 2.15 14 Advanced
50 107 7 1 RW MixedBits Synchronised DO/RO 2.16 15 Advanced
51 108 8 1 RW MixedBits Synchronised DO/RO 2.17 0 Advanced
52 108 8 1 RW MixedBits Synchronised DO/RO 2.18 1 Advanced
53 108 8 1 RW MixedBits Synchronised DO/RO 2.19 2 Advanced
54 108 8 1 RW MixedBits Synchronised DO/RO 2.20 3 Advanced
55 108 8 1 RW MixedBits Synchronised DO/RO 2.21 4 Advanced
56 108 8 1 RW MixedBits Synchronised DO/RO 2.22 5 Advanced
57 108 8 1 RW MixedBits Synchronised DO/RO 2.23 6 Advanced
58 108 8 1 RW MixedBits Synchronised DO/RO 2.24 7 Advanced
59 108 8 1 RW MixedBits Synchronised DO/RO 2.25 8 Advanced
60 108 8 1 RW MixedBits Synchronised DO/RO 2.26 9 Advanced
61 108 8 1 RW MixedBits Synchronised DO/RO 2.27 10 Advanced
62 108 8 1 RW MixedBits Synchronised DO/RO 2.28 11 Advanced
63 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.1 0 Advanced
64 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.2 1 Advanced
65 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.3 2 Advanced
66 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.4 3 Advanced
67 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.5 4 Advanced
68 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.6 5 Advanced
69 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.7 6 Advanced
70 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.8 7 Advanced
71 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.9 8 Advanced
72 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.10 9 Advanced
73 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.11 10 Advanced
74 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.12 11 Advanced
75 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.13 12 Advanced
76 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.14 13 Advanced
77 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.15 14 Advanced
78 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.16 15 Advanced
79 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.17 0 Advanced
80 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.18 1 Advanced
81 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.19 2 Advanced
82 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.20 3 Advanced
83 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.21 4 Advanced
84 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.22 5 Advanced
85 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.23 6 Advanced
86 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.24 7 Advanced
87 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.25 8 Advanced
88 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.26 9 Advanced
89 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.27 10 Advanced
90 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.28 11 Advanced
91 100 2 RW DWord (Internal) RS485 Full Mode Configuration 2.1 Obsolete
92 600 500 1 W Word Reserved - Do Not Use Reserved
93 601 501 1 W Word Reserved - Do Not Use Reserved
94 602 502 1 W Word Reserved - Do Not Use Reserved
95 603 503 1 W Word Reserved - Do Not Use Reserved
96 604 504 1 W Word Reserved - Do Not Use Reserved
97 605 505 1 W Word Reserved - Do Not Use Reserved
98 606 506 1 W Word Reserved - Do Not Use Reserved
99 607 507 1 W Word Reserved - Do Not Use Reserved
100 608 508 1 W Word Reserved - Do Not Use Reserved
101 609 509 1 W Word Reserved - Do Not Use Reserved
102 510 1 RW Word (Internal) Stored Firmware Version Expert
103 511 1 RW Word (Internal) Stored Firmware Revision Expert
104 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
105 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
106 514 1 RW Word (Internal) Stored PCB Revision Expert
107 515 1 RW Word (Internal) Stored PCB Serial Number Expert
108 516 1 RW Word (Internal) Stored HW Revision Number Expert
109 1100 1000 1 R Word Firmware Version Expert
110 1101 1001 1 R Word Number of I/Os Advanced
111 1102 1002 1 R Word Number of peripherals Advanced
112 1103 1003 1 R Word Firmware ID Expert
113 1104 1004 1 R Word Hardware ID Expert
114 1105 1005 2 R DWord PCB Serial Number Expert
115 1107 1007 1 RW Word Interrupt Mask Expert
116 1108 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
117 1109 1009 1 R Word VRef of MCU Expert
118 1110 1010 1 W Word Reserved - Do Not Use Reserved
119 1111 1011 1 W Word Reserved - Do Not Use Reserved
120 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,120 @@
Via Unit 0,Via Unit 3,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
200,0,1,RW,MixedBits,Relay Output 3.1,0,Basic
200,0,1,RW,MixedBits,Relay Output 3.2,1,Basic
200,0,1,RW,MixedBits,Relay Output 3.3,2,Basic
200,0,1,RW,MixedBits,Relay Output 3.4,3,Basic
200,0,1,RW,MixedBits,Relay Output 3.5,4,Basic
200,0,1,RW,MixedBits,Relay Output 3.6,5,Basic
200,0,1,RW,MixedBits,Relay Output 3.7,6,Basic
200,0,1,RW,MixedBits,Relay Output 3.8,7,Basic
200,0,1,RW,MixedBits,Relay Output 3.9,8,Basic
200,0,1,RW,MixedBits,Relay Output 3.10,9,Basic
200,0,1,RW,MixedBits,Relay Output 3.11,10,Basic
200,0,1,RW,MixedBits,Relay Output 3.12,11,Basic
200,0,1,RW,MixedBits,Relay Output 3.13,12,Basic
200,0,1,RW,MixedBits,Relay Output 3.14,13,Basic
200,0,1,RW,MixedBits,Relay Output 3.15,14,Basic
200,0,1,RW,MixedBits,Relay Output 3.16,15,Basic
201,1,1,RW,MixedBits,Relay Output 3.17,0,Basic
201,1,1,RW,MixedBits,Relay Output 3.18,1,Basic
201,1,1,RW,MixedBits,Relay Output 3.19,2,Basic
201,1,1,RW,MixedBits,Relay Output 3.20,3,Basic
201,1,1,RW,MixedBits,Relay Output 3.21,4,Basic
201,1,1,RW,MixedBits,Relay Output 3.22,5,Basic
201,1,1,RW,MixedBits,Relay Output 3.23,6,Basic
201,1,1,RW,MixedBits,Relay Output 3.24,7,Basic
201,1,1,RW,MixedBits,Relay Output 3.25,8,Basic
201,1,1,RW,MixedBits,Relay Output 3.26,9,Basic
201,1,1,RW,MixedBits,Relay Output 3.27,10,Basic
201,1,1,RW,MixedBits,Relay Output 3.28,11,Basic
202,2,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
203,3,1,W,Word,Reserved - Do Not Use,,Reserved
204,4,1,W,Word,Reserved - Do Not Use,,Reserved
205,5,1,W,Word,Reserved - Do Not Use,,Reserved
206,6,1,W,Word,Reserved - Do Not Use,,Reserved
207,7,1,RW,MixedBits,Synchronised DO/RO 3.1,0,Advanced
207,7,1,RW,MixedBits,Synchronised DO/RO 3.2,1,Advanced
207,7,1,RW,MixedBits,Synchronised DO/RO 3.3,2,Advanced
207,7,1,RW,MixedBits,Synchronised DO/RO 3.4,3,Advanced
207,7,1,RW,MixedBits,Synchronised DO/RO 3.5,4,Advanced
207,7,1,RW,MixedBits,Synchronised DO/RO 3.6,5,Advanced
207,7,1,RW,MixedBits,Synchronised DO/RO 3.7,6,Advanced
207,7,1,RW,MixedBits,Synchronised DO/RO 3.8,7,Advanced
207,7,1,RW,MixedBits,Synchronised DO/RO 3.9,8,Advanced
207,7,1,RW,MixedBits,Synchronised DO/RO 3.10,9,Advanced
207,7,1,RW,MixedBits,Synchronised DO/RO 3.11,10,Advanced
207,7,1,RW,MixedBits,Synchronised DO/RO 3.12,11,Advanced
207,7,1,RW,MixedBits,Synchronised DO/RO 3.13,12,Advanced
207,7,1,RW,MixedBits,Synchronised DO/RO 3.14,13,Advanced
207,7,1,RW,MixedBits,Synchronised DO/RO 3.15,14,Advanced
207,7,1,RW,MixedBits,Synchronised DO/RO 3.16,15,Advanced
208,8,1,RW,MixedBits,Synchronised DO/RO 3.17,0,Advanced
208,8,1,RW,MixedBits,Synchronised DO/RO 3.18,1,Advanced
208,8,1,RW,MixedBits,Synchronised DO/RO 3.19,2,Advanced
208,8,1,RW,MixedBits,Synchronised DO/RO 3.20,3,Advanced
208,8,1,RW,MixedBits,Synchronised DO/RO 3.21,4,Advanced
208,8,1,RW,MixedBits,Synchronised DO/RO 3.22,5,Advanced
208,8,1,RW,MixedBits,Synchronised DO/RO 3.23,6,Advanced
208,8,1,RW,MixedBits,Synchronised DO/RO 3.24,7,Advanced
208,8,1,RW,MixedBits,Synchronised DO/RO 3.25,8,Advanced
208,8,1,RW,MixedBits,Synchronised DO/RO 3.26,9,Advanced
208,8,1,RW,MixedBits,Synchronised DO/RO 3.27,10,Advanced
208,8,1,RW,MixedBits,Synchronised DO/RO 3.28,11,Advanced
209,9,1,RW,MixedBits,Synchronised DO/RO Lock 3.1,0,Advanced
209,9,1,RW,MixedBits,Synchronised DO/RO Lock 3.2,1,Advanced
209,9,1,RW,MixedBits,Synchronised DO/RO Lock 3.3,2,Advanced
209,9,1,RW,MixedBits,Synchronised DO/RO Lock 3.4,3,Advanced
209,9,1,RW,MixedBits,Synchronised DO/RO Lock 3.5,4,Advanced
209,9,1,RW,MixedBits,Synchronised DO/RO Lock 3.6,5,Advanced
209,9,1,RW,MixedBits,Synchronised DO/RO Lock 3.7,6,Advanced
209,9,1,RW,MixedBits,Synchronised DO/RO Lock 3.8,7,Advanced
209,9,1,RW,MixedBits,Synchronised DO/RO Lock 3.9,8,Advanced
209,9,1,RW,MixedBits,Synchronised DO/RO Lock 3.10,9,Advanced
209,9,1,RW,MixedBits,Synchronised DO/RO Lock 3.11,10,Advanced
209,9,1,RW,MixedBits,Synchronised DO/RO Lock 3.12,11,Advanced
209,9,1,RW,MixedBits,Synchronised DO/RO Lock 3.13,12,Advanced
209,9,1,RW,MixedBits,Synchronised DO/RO Lock 3.14,13,Advanced
209,9,1,RW,MixedBits,Synchronised DO/RO Lock 3.15,14,Advanced
209,9,1,RW,MixedBits,Synchronised DO/RO Lock 3.16,15,Advanced
210,10,1,RW,MixedBits,Synchronised DO/RO Lock 3.17,0,Advanced
210,10,1,RW,MixedBits,Synchronised DO/RO Lock 3.18,1,Advanced
210,10,1,RW,MixedBits,Synchronised DO/RO Lock 3.19,2,Advanced
210,10,1,RW,MixedBits,Synchronised DO/RO Lock 3.20,3,Advanced
210,10,1,RW,MixedBits,Synchronised DO/RO Lock 3.21,4,Advanced
210,10,1,RW,MixedBits,Synchronised DO/RO Lock 3.22,5,Advanced
210,10,1,RW,MixedBits,Synchronised DO/RO Lock 3.23,6,Advanced
210,10,1,RW,MixedBits,Synchronised DO/RO Lock 3.24,7,Advanced
210,10,1,RW,MixedBits,Synchronised DO/RO Lock 3.25,8,Advanced
210,10,1,RW,MixedBits,Synchronised DO/RO Lock 3.26,9,Advanced
210,10,1,RW,MixedBits,Synchronised DO/RO Lock 3.27,10,Advanced
210,10,1,RW,MixedBits,Synchronised DO/RO Lock 3.28,11,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 3.1,,Obsolete
700,500,1,W,Word,Reserved - Do Not Use,,Reserved
701,501,1,W,Word,Reserved - Do Not Use,,Reserved
702,502,1,W,Word,Reserved - Do Not Use,,Reserved
703,503,1,W,Word,Reserved - Do Not Use,,Reserved
704,504,1,W,Word,Reserved - Do Not Use,,Reserved
705,505,1,W,Word,Reserved - Do Not Use,,Reserved
706,506,1,W,Word,Reserved - Do Not Use,,Reserved
707,507,1,W,Word,Reserved - Do Not Use,,Reserved
708,508,1,W,Word,Reserved - Do Not Use,,Reserved
709,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1200,1000,1,R,Word,Firmware Version,,Expert
1201,1001,1,R,Word,Number of I/Os,,Advanced
1202,1002,1,R,Word,Number of peripherals,,Advanced
1203,1003,1,R,Word,Firmware ID,,Expert
1204,1004,1,R,Word,Hardware ID,,Expert
1205,1005,2,R,DWord,PCB Serial Number,,Expert
1207,1007,1,RW,Word,Interrupt Mask,,Expert
1208,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1209,1009,1,R,Word,VRef of MCU,,Expert
1210,1010,1,W,Word,Reserved - Do Not Use,,Reserved
1211,1011,1,W,Word,Reserved - Do Not Use,,Reserved
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 3 Register Count R/W Data Type Content Start Bit Nr. Category
2 200 0 1 RW MixedBits Relay Output 3.1 0 Basic
3 200 0 1 RW MixedBits Relay Output 3.2 1 Basic
4 200 0 1 RW MixedBits Relay Output 3.3 2 Basic
5 200 0 1 RW MixedBits Relay Output 3.4 3 Basic
6 200 0 1 RW MixedBits Relay Output 3.5 4 Basic
7 200 0 1 RW MixedBits Relay Output 3.6 5 Basic
8 200 0 1 RW MixedBits Relay Output 3.7 6 Basic
9 200 0 1 RW MixedBits Relay Output 3.8 7 Basic
10 200 0 1 RW MixedBits Relay Output 3.9 8 Basic
11 200 0 1 RW MixedBits Relay Output 3.10 9 Basic
12 200 0 1 RW MixedBits Relay Output 3.11 10 Basic
13 200 0 1 RW MixedBits Relay Output 3.12 11 Basic
14 200 0 1 RW MixedBits Relay Output 3.13 12 Basic
15 200 0 1 RW MixedBits Relay Output 3.14 13 Basic
16 200 0 1 RW MixedBits Relay Output 3.15 14 Basic
17 200 0 1 RW MixedBits Relay Output 3.16 15 Basic
18 201 1 1 RW MixedBits Relay Output 3.17 0 Basic
19 201 1 1 RW MixedBits Relay Output 3.18 1 Basic
20 201 1 1 RW MixedBits Relay Output 3.19 2 Basic
21 201 1 1 RW MixedBits Relay Output 3.20 3 Basic
22 201 1 1 RW MixedBits Relay Output 3.21 4 Basic
23 201 1 1 RW MixedBits Relay Output 3.22 5 Basic
24 201 1 1 RW MixedBits Relay Output 3.23 6 Basic
25 201 1 1 RW MixedBits Relay Output 3.24 7 Basic
26 201 1 1 RW MixedBits Relay Output 3.25 8 Basic
27 201 1 1 RW MixedBits Relay Output 3.26 9 Basic
28 201 1 1 RW MixedBits Relay Output 3.27 10 Basic
29 201 1 1 RW MixedBits Relay Output 3.28 11 Basic
30 202 2 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
31 203 3 1 W Word Reserved - Do Not Use Reserved
32 204 4 1 W Word Reserved - Do Not Use Reserved
33 205 5 1 W Word Reserved - Do Not Use Reserved
34 206 6 1 W Word Reserved - Do Not Use Reserved
35 207 7 1 RW MixedBits Synchronised DO/RO 3.1 0 Advanced
36 207 7 1 RW MixedBits Synchronised DO/RO 3.2 1 Advanced
37 207 7 1 RW MixedBits Synchronised DO/RO 3.3 2 Advanced
38 207 7 1 RW MixedBits Synchronised DO/RO 3.4 3 Advanced
39 207 7 1 RW MixedBits Synchronised DO/RO 3.5 4 Advanced
40 207 7 1 RW MixedBits Synchronised DO/RO 3.6 5 Advanced
41 207 7 1 RW MixedBits Synchronised DO/RO 3.7 6 Advanced
42 207 7 1 RW MixedBits Synchronised DO/RO 3.8 7 Advanced
43 207 7 1 RW MixedBits Synchronised DO/RO 3.9 8 Advanced
44 207 7 1 RW MixedBits Synchronised DO/RO 3.10 9 Advanced
45 207 7 1 RW MixedBits Synchronised DO/RO 3.11 10 Advanced
46 207 7 1 RW MixedBits Synchronised DO/RO 3.12 11 Advanced
47 207 7 1 RW MixedBits Synchronised DO/RO 3.13 12 Advanced
48 207 7 1 RW MixedBits Synchronised DO/RO 3.14 13 Advanced
49 207 7 1 RW MixedBits Synchronised DO/RO 3.15 14 Advanced
50 207 7 1 RW MixedBits Synchronised DO/RO 3.16 15 Advanced
51 208 8 1 RW MixedBits Synchronised DO/RO 3.17 0 Advanced
52 208 8 1 RW MixedBits Synchronised DO/RO 3.18 1 Advanced
53 208 8 1 RW MixedBits Synchronised DO/RO 3.19 2 Advanced
54 208 8 1 RW MixedBits Synchronised DO/RO 3.20 3 Advanced
55 208 8 1 RW MixedBits Synchronised DO/RO 3.21 4 Advanced
56 208 8 1 RW MixedBits Synchronised DO/RO 3.22 5 Advanced
57 208 8 1 RW MixedBits Synchronised DO/RO 3.23 6 Advanced
58 208 8 1 RW MixedBits Synchronised DO/RO 3.24 7 Advanced
59 208 8 1 RW MixedBits Synchronised DO/RO 3.25 8 Advanced
60 208 8 1 RW MixedBits Synchronised DO/RO 3.26 9 Advanced
61 208 8 1 RW MixedBits Synchronised DO/RO 3.27 10 Advanced
62 208 8 1 RW MixedBits Synchronised DO/RO 3.28 11 Advanced
63 209 9 1 RW MixedBits Synchronised DO/RO Lock 3.1 0 Advanced
64 209 9 1 RW MixedBits Synchronised DO/RO Lock 3.2 1 Advanced
65 209 9 1 RW MixedBits Synchronised DO/RO Lock 3.3 2 Advanced
66 209 9 1 RW MixedBits Synchronised DO/RO Lock 3.4 3 Advanced
67 209 9 1 RW MixedBits Synchronised DO/RO Lock 3.5 4 Advanced
68 209 9 1 RW MixedBits Synchronised DO/RO Lock 3.6 5 Advanced
69 209 9 1 RW MixedBits Synchronised DO/RO Lock 3.7 6 Advanced
70 209 9 1 RW MixedBits Synchronised DO/RO Lock 3.8 7 Advanced
71 209 9 1 RW MixedBits Synchronised DO/RO Lock 3.9 8 Advanced
72 209 9 1 RW MixedBits Synchronised DO/RO Lock 3.10 9 Advanced
73 209 9 1 RW MixedBits Synchronised DO/RO Lock 3.11 10 Advanced
74 209 9 1 RW MixedBits Synchronised DO/RO Lock 3.12 11 Advanced
75 209 9 1 RW MixedBits Synchronised DO/RO Lock 3.13 12 Advanced
76 209 9 1 RW MixedBits Synchronised DO/RO Lock 3.14 13 Advanced
77 209 9 1 RW MixedBits Synchronised DO/RO Lock 3.15 14 Advanced
78 209 9 1 RW MixedBits Synchronised DO/RO Lock 3.16 15 Advanced
79 210 10 1 RW MixedBits Synchronised DO/RO Lock 3.17 0 Advanced
80 210 10 1 RW MixedBits Synchronised DO/RO Lock 3.18 1 Advanced
81 210 10 1 RW MixedBits Synchronised DO/RO Lock 3.19 2 Advanced
82 210 10 1 RW MixedBits Synchronised DO/RO Lock 3.20 3 Advanced
83 210 10 1 RW MixedBits Synchronised DO/RO Lock 3.21 4 Advanced
84 210 10 1 RW MixedBits Synchronised DO/RO Lock 3.22 5 Advanced
85 210 10 1 RW MixedBits Synchronised DO/RO Lock 3.23 6 Advanced
86 210 10 1 RW MixedBits Synchronised DO/RO Lock 3.24 7 Advanced
87 210 10 1 RW MixedBits Synchronised DO/RO Lock 3.25 8 Advanced
88 210 10 1 RW MixedBits Synchronised DO/RO Lock 3.26 9 Advanced
89 210 10 1 RW MixedBits Synchronised DO/RO Lock 3.27 10 Advanced
90 210 10 1 RW MixedBits Synchronised DO/RO Lock 3.28 11 Advanced
91 100 2 RW DWord (Internal) RS485 Full Mode Configuration 3.1 Obsolete
92 700 500 1 W Word Reserved - Do Not Use Reserved
93 701 501 1 W Word Reserved - Do Not Use Reserved
94 702 502 1 W Word Reserved - Do Not Use Reserved
95 703 503 1 W Word Reserved - Do Not Use Reserved
96 704 504 1 W Word Reserved - Do Not Use Reserved
97 705 505 1 W Word Reserved - Do Not Use Reserved
98 706 506 1 W Word Reserved - Do Not Use Reserved
99 707 507 1 W Word Reserved - Do Not Use Reserved
100 708 508 1 W Word Reserved - Do Not Use Reserved
101 709 509 1 W Word Reserved - Do Not Use Reserved
102 510 1 RW Word (Internal) Stored Firmware Version Expert
103 511 1 RW Word (Internal) Stored Firmware Revision Expert
104 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
105 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
106 514 1 RW Word (Internal) Stored PCB Revision Expert
107 515 1 RW Word (Internal) Stored PCB Serial Number Expert
108 516 1 RW Word (Internal) Stored HW Revision Number Expert
109 1200 1000 1 R Word Firmware Version Expert
110 1201 1001 1 R Word Number of I/Os Advanced
111 1202 1002 1 R Word Number of peripherals Advanced
112 1203 1003 1 R Word Firmware ID Expert
113 1204 1004 1 R Word Hardware ID Expert
114 1205 1005 2 R DWord PCB Serial Number Expert
115 1207 1007 1 RW Word Interrupt Mask Expert
116 1208 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
117 1209 1009 1 R Word VRef of MCU Expert
118 1210 1010 1 W Word Reserved - Do Not Use Reserved
119 1211 1011 1 W Word Reserved - Do Not Use Reserved
120 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,32 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Digital Output 1.1,Basic
1,1,RW,Digital Output 1.2,Basic
2,2,RW,Digital Output 1.3,Basic
3,3,RW,Digital Output 1.4,Basic
4,4,R,Digital Input 1.1,Basic
5,5,R,Digital Input 1.2,Basic
6,6,R,Digital Input 1.3,Basic
7,7,R,Digital Input 1.4,Basic
8,8,RW,User Programmable LED 1.1,Basic
9,9,RW,User Programmable LED 1.2,Basic
10,10,RW,User Programmable LED 1.3,Basic
11,11,RW,User Programmable LED 1.4,Basic
1000,1000,RW,MWD reset indication,Advanced
1001,1001,RW,Enable/Disable 1Wire Bus,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1012,1012,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1013,1013,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1014,1014,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1015,1015,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1016,1016,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1017,1017,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1018,1018,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Digital Output 1.1 Basic
3 1 1 RW Digital Output 1.2 Basic
4 2 2 RW Digital Output 1.3 Basic
5 3 3 RW Digital Output 1.4 Basic
6 4 4 R Digital Input 1.1 Basic
7 5 5 R Digital Input 1.2 Basic
8 6 6 R Digital Input 1.3 Basic
9 7 7 R Digital Input 1.4 Basic
10 8 8 RW User Programmable LED 1.1 Basic
11 9 9 RW User Programmable LED 1.2 Basic
12 10 10 RW User Programmable LED 1.3 Basic
13 11 11 RW User Programmable LED 1.4 Basic
14 1000 1000 RW MWD reset indication Advanced
15 1001 1001 RW Enable/Disable 1Wire Bus Advanced
16 1002 1002 R Reset group MCU Advanced
17 1003 1003 RW Save current configuration and use on startup Advanced
18 1004 1004 RW (Internal) Firmware programming toggle Expert
19 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
20 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
21 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
22 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
23 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
24 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
25 1011 1011 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
26 1012 1012 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
27 1013 1013 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
28 1014 1014 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
29 1015 1015 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
30 1016 1016 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
31 1017 1017 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
32 1018 1018 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced

View File

@ -0,0 +1,33 @@
Via Unit 0,Via Unit 2,R/W,Content,Category
100,0,RW,Relay Output 2.1,Basic
101,1,RW,Relay Output 2.2,Basic
102,2,RW,Relay Output 2.3,Basic
103,3,RW,Relay Output 2.4,Basic
104,4,RW,Relay Output 2.5,Basic
105,5,R,Digital Input 2.1,Basic
106,6,R,Digital Input 2.2,Basic
107,7,R,Digital Input 2.3,Basic
108,8,R,Digital Input 2.4,Basic
109,9,R,Digital Input 2.5,Basic
110,10,R,Digital Input 2.6,Basic
1100,1000,RW,MWD reset indication,Advanced
1102,1002,R,Reset group MCU,Advanced
1103,1003,RW,Save current configuration and use on startup,Advanced
1104,1004,RW,(Internal) Firmware programming toggle,Expert
1105,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1106,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1107,1007,RW,Enable DirectSwitch on DI 2.1,Advanced
1108,1008,RW,Enable DirectSwitch on DI 2.2,Advanced
1109,1009,RW,Enable DirectSwitch on DI 2.3,Advanced
1110,1010,RW,Enable DirectSwitch on DI 2.4,Advanced
1111,1011,RW,Enable DirectSwitch on DI 2.5,Advanced
1112,1012,RW,Invert DirectSwitch Polarity on DI 2.1,Advanced
1113,1013,RW,Invert DirectSwitch Polarity on DI 2.2,Advanced
1114,1014,RW,Invert DirectSwitch Polarity on DI 2.3,Advanced
1115,1015,RW,Invert DirectSwitch Polarity on DI 2.4,Advanced
1116,1016,RW,Invert DirectSwitch Polarity on DI 2.5,Advanced
1117,1017,RW,Enable DirectSwitch Toggle Mode on DI 2.1,Advanced
1118,1018,RW,Enable DirectSwitch Toggle Mode on DI 2.2,Advanced
1119,1019,RW,Enable DirectSwitch Toggle Mode on DI 2.3,Advanced
1120,1020,RW,Enable DirectSwitch Toggle Mode on DI 2.4,Advanced
1121,1021,RW,Enable DirectSwitch Toggle Mode on DI 2.5,Advanced
1 Via Unit 0 Via Unit 2 R/W Content Category
2 100 0 RW Relay Output 2.1 Basic
3 101 1 RW Relay Output 2.2 Basic
4 102 2 RW Relay Output 2.3 Basic
5 103 3 RW Relay Output 2.4 Basic
6 104 4 RW Relay Output 2.5 Basic
7 105 5 R Digital Input 2.1 Basic
8 106 6 R Digital Input 2.2 Basic
9 107 7 R Digital Input 2.3 Basic
10 108 8 R Digital Input 2.4 Basic
11 109 9 R Digital Input 2.5 Basic
12 110 10 R Digital Input 2.6 Basic
13 1100 1000 RW MWD reset indication Advanced
14 1102 1002 R Reset group MCU Advanced
15 1103 1003 RW Save current configuration and use on startup Advanced
16 1104 1004 RW (Internal) Firmware programming toggle Expert
17 1105 1005 RW (Internal) Firmware reprogramming toggle Expert
18 1106 1006 RW (Internal) Firmware calibration programming toggle Expert
19 1107 1007 RW Enable DirectSwitch on DI 2.1 Advanced
20 1108 1008 RW Enable DirectSwitch on DI 2.2 Advanced
21 1109 1009 RW Enable DirectSwitch on DI 2.3 Advanced
22 1110 1010 RW Enable DirectSwitch on DI 2.4 Advanced
23 1111 1011 RW Enable DirectSwitch on DI 2.5 Advanced
24 1112 1012 RW Invert DirectSwitch Polarity on DI 2.1 Advanced
25 1113 1013 RW Invert DirectSwitch Polarity on DI 2.2 Advanced
26 1114 1014 RW Invert DirectSwitch Polarity on DI 2.3 Advanced
27 1115 1015 RW Invert DirectSwitch Polarity on DI 2.4 Advanced
28 1116 1016 RW Invert DirectSwitch Polarity on DI 2.5 Advanced
29 1117 1017 RW Enable DirectSwitch Toggle Mode on DI 2.1 Advanced
30 1118 1018 RW Enable DirectSwitch Toggle Mode on DI 2.2 Advanced
31 1119 1019 RW Enable DirectSwitch Toggle Mode on DI 2.3 Advanced
32 1120 1020 RW Enable DirectSwitch Toggle Mode on DI 2.4 Advanced
33 1121 1021 RW Enable DirectSwitch Toggle Mode on DI 2.5 Advanced

View File

@ -0,0 +1,77 @@
Via Unit 0,Via Unit 3,R/W,Content,Category
200,0,RW,Relay Output 3.1,Basic
201,1,RW,Relay Output 3.2,Basic
202,2,RW,Relay Output 3.3,Basic
203,3,RW,Relay Output 3.4,Basic
204,4,RW,Relay Output 3.5,Basic
205,5,RW,Relay Output 3.6,Basic
206,6,RW,Relay Output 3.7,Basic
207,7,RW,Relay Output 3.8,Basic
208,8,RW,Relay Output 3.9,Basic
209,9,RW,Relay Output 3.10,Basic
210,10,RW,Relay Output 3.11,Basic
211,11,RW,Relay Output 3.12,Basic
212,12,RW,Relay Output 3.13,Basic
213,13,RW,Relay Output 3.14,Basic
214,14,R,Digital Input 3.1,Basic
215,15,R,Digital Input 3.2,Basic
216,16,R,Digital Input 3.3,Basic
217,17,R,Digital Input 3.4,Basic
218,18,R,Digital Input 3.5,Basic
219,19,R,Digital Input 3.6,Basic
220,20,R,Digital Input 3.7,Basic
221,21,R,Digital Input 3.8,Basic
222,22,R,Digital Input 3.9,Basic
223,23,R,Digital Input 3.10,Basic
224,24,R,Digital Input 3.11,Basic
225,25,R,Digital Input 3.12,Basic
226,26,R,Digital Input 3.13,Basic
227,27,R,Digital Input 3.14,Basic
1200,1000,RW,MWD reset indication,Advanced
1202,1002,R,Reset group MCU,Advanced
1203,1003,RW,Save current configuration and use on startup,Advanced
1204,1004,RW,(Internal) Firmware programming toggle,Expert
1205,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1206,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1207,1007,RW,Enable DirectSwitch on DI 3.1,Advanced
1208,1008,RW,Enable DirectSwitch on DI 3.2,Advanced
1209,1009,RW,Enable DirectSwitch on DI 3.3,Advanced
1210,1010,RW,Enable DirectSwitch on DI 3.4,Advanced
1211,1011,RW,Enable DirectSwitch on DI 3.5,Advanced
1212,1012,RW,Enable DirectSwitch on DI 3.6,Advanced
1213,1013,RW,Enable DirectSwitch on DI 3.7,Advanced
1214,1014,RW,Enable DirectSwitch on DI 3.8,Advanced
1215,1015,RW,Enable DirectSwitch on DI 3.9,Advanced
1216,1016,RW,Enable DirectSwitch on DI 3.10,Advanced
1217,1017,RW,Enable DirectSwitch on DI 3.11,Advanced
1218,1018,RW,Enable DirectSwitch on DI 3.12,Advanced
1219,1019,RW,Enable DirectSwitch on DI 3.13,Advanced
1220,1020,RW,Enable DirectSwitch on DI 3.14,Advanced
1221,1021,RW,Invert DirectSwitch Polarity on DI 3.1,Advanced
1222,1022,RW,Invert DirectSwitch Polarity on DI 3.2,Advanced
1223,1023,RW,Invert DirectSwitch Polarity on DI 3.3,Advanced
1224,1024,RW,Invert DirectSwitch Polarity on DI 3.4,Advanced
1225,1025,RW,Invert DirectSwitch Polarity on DI 3.5,Advanced
1226,1026,RW,Invert DirectSwitch Polarity on DI 3.6,Advanced
1227,1027,RW,Invert DirectSwitch Polarity on DI 3.7,Advanced
1228,1028,RW,Invert DirectSwitch Polarity on DI 3.8,Advanced
1229,1029,RW,Invert DirectSwitch Polarity on DI 3.9,Advanced
1230,1030,RW,Invert DirectSwitch Polarity on DI 3.10,Advanced
1231,1031,RW,Invert DirectSwitch Polarity on DI 3.11,Advanced
1232,1032,RW,Invert DirectSwitch Polarity on DI 3.12,Advanced
1233,1033,RW,Invert DirectSwitch Polarity on DI 3.13,Advanced
1234,1034,RW,Invert DirectSwitch Polarity on DI 3.14,Advanced
1235,1035,RW,Enable DirectSwitch Toggle Mode on DI 3.1,Advanced
1236,1036,RW,Enable DirectSwitch Toggle Mode on DI 3.2,Advanced
1237,1037,RW,Enable DirectSwitch Toggle Mode on DI 3.3,Advanced
1238,1038,RW,Enable DirectSwitch Toggle Mode on DI 3.4,Advanced
1239,1039,RW,Enable DirectSwitch Toggle Mode on DI 3.5,Advanced
1240,1040,RW,Enable DirectSwitch Toggle Mode on DI 3.6,Advanced
1241,1041,RW,Enable DirectSwitch Toggle Mode on DI 3.7,Advanced
1242,1042,RW,Enable DirectSwitch Toggle Mode on DI 3.8,Advanced
1243,1043,RW,Enable DirectSwitch Toggle Mode on DI 3.9,Advanced
1244,1044,RW,Enable DirectSwitch Toggle Mode on DI 3.10,Advanced
1245,1045,RW,Enable DirectSwitch Toggle Mode on DI 3.11,Advanced
1246,1046,RW,Enable DirectSwitch Toggle Mode on DI 3.12,Advanced
1247,1047,RW,Enable DirectSwitch Toggle Mode on DI 3.13,Advanced
1248,1048,RW,Enable DirectSwitch Toggle Mode on DI 3.14,Advanced
1 Via Unit 0 Via Unit 3 R/W Content Category
2 200 0 RW Relay Output 3.1 Basic
3 201 1 RW Relay Output 3.2 Basic
4 202 2 RW Relay Output 3.3 Basic
5 203 3 RW Relay Output 3.4 Basic
6 204 4 RW Relay Output 3.5 Basic
7 205 5 RW Relay Output 3.6 Basic
8 206 6 RW Relay Output 3.7 Basic
9 207 7 RW Relay Output 3.8 Basic
10 208 8 RW Relay Output 3.9 Basic
11 209 9 RW Relay Output 3.10 Basic
12 210 10 RW Relay Output 3.11 Basic
13 211 11 RW Relay Output 3.12 Basic
14 212 12 RW Relay Output 3.13 Basic
15 213 13 RW Relay Output 3.14 Basic
16 214 14 R Digital Input 3.1 Basic
17 215 15 R Digital Input 3.2 Basic
18 216 16 R Digital Input 3.3 Basic
19 217 17 R Digital Input 3.4 Basic
20 218 18 R Digital Input 3.5 Basic
21 219 19 R Digital Input 3.6 Basic
22 220 20 R Digital Input 3.7 Basic
23 221 21 R Digital Input 3.8 Basic
24 222 22 R Digital Input 3.9 Basic
25 223 23 R Digital Input 3.10 Basic
26 224 24 R Digital Input 3.11 Basic
27 225 25 R Digital Input 3.12 Basic
28 226 26 R Digital Input 3.13 Basic
29 227 27 R Digital Input 3.14 Basic
30 1200 1000 RW MWD reset indication Advanced
31 1202 1002 R Reset group MCU Advanced
32 1203 1003 RW Save current configuration and use on startup Advanced
33 1204 1004 RW (Internal) Firmware programming toggle Expert
34 1205 1005 RW (Internal) Firmware reprogramming toggle Expert
35 1206 1006 RW (Internal) Firmware calibration programming toggle Expert
36 1207 1007 RW Enable DirectSwitch on DI 3.1 Advanced
37 1208 1008 RW Enable DirectSwitch on DI 3.2 Advanced
38 1209 1009 RW Enable DirectSwitch on DI 3.3 Advanced
39 1210 1010 RW Enable DirectSwitch on DI 3.4 Advanced
40 1211 1011 RW Enable DirectSwitch on DI 3.5 Advanced
41 1212 1012 RW Enable DirectSwitch on DI 3.6 Advanced
42 1213 1013 RW Enable DirectSwitch on DI 3.7 Advanced
43 1214 1014 RW Enable DirectSwitch on DI 3.8 Advanced
44 1215 1015 RW Enable DirectSwitch on DI 3.9 Advanced
45 1216 1016 RW Enable DirectSwitch on DI 3.10 Advanced
46 1217 1017 RW Enable DirectSwitch on DI 3.11 Advanced
47 1218 1018 RW Enable DirectSwitch on DI 3.12 Advanced
48 1219 1019 RW Enable DirectSwitch on DI 3.13 Advanced
49 1220 1020 RW Enable DirectSwitch on DI 3.14 Advanced
50 1221 1021 RW Invert DirectSwitch Polarity on DI 3.1 Advanced
51 1222 1022 RW Invert DirectSwitch Polarity on DI 3.2 Advanced
52 1223 1023 RW Invert DirectSwitch Polarity on DI 3.3 Advanced
53 1224 1024 RW Invert DirectSwitch Polarity on DI 3.4 Advanced
54 1225 1025 RW Invert DirectSwitch Polarity on DI 3.5 Advanced
55 1226 1026 RW Invert DirectSwitch Polarity on DI 3.6 Advanced
56 1227 1027 RW Invert DirectSwitch Polarity on DI 3.7 Advanced
57 1228 1028 RW Invert DirectSwitch Polarity on DI 3.8 Advanced
58 1229 1029 RW Invert DirectSwitch Polarity on DI 3.9 Advanced
59 1230 1030 RW Invert DirectSwitch Polarity on DI 3.10 Advanced
60 1231 1031 RW Invert DirectSwitch Polarity on DI 3.11 Advanced
61 1232 1032 RW Invert DirectSwitch Polarity on DI 3.12 Advanced
62 1233 1033 RW Invert DirectSwitch Polarity on DI 3.13 Advanced
63 1234 1034 RW Invert DirectSwitch Polarity on DI 3.14 Advanced
64 1235 1035 RW Enable DirectSwitch Toggle Mode on DI 3.1 Advanced
65 1236 1036 RW Enable DirectSwitch Toggle Mode on DI 3.2 Advanced
66 1237 1037 RW Enable DirectSwitch Toggle Mode on DI 3.3 Advanced
67 1238 1038 RW Enable DirectSwitch Toggle Mode on DI 3.4 Advanced
68 1239 1039 RW Enable DirectSwitch Toggle Mode on DI 3.5 Advanced
69 1240 1040 RW Enable DirectSwitch Toggle Mode on DI 3.6 Advanced
70 1241 1041 RW Enable DirectSwitch Toggle Mode on DI 3.7 Advanced
71 1242 1042 RW Enable DirectSwitch Toggle Mode on DI 3.8 Advanced
72 1243 1043 RW Enable DirectSwitch Toggle Mode on DI 3.9 Advanced
73 1244 1044 RW Enable DirectSwitch Toggle Mode on DI 3.10 Advanced
74 1245 1045 RW Enable DirectSwitch Toggle Mode on DI 3.11 Advanced
75 1246 1046 RW Enable DirectSwitch Toggle Mode on DI 3.12 Advanced
76 1247 1047 RW Enable DirectSwitch Toggle Mode on DI 3.13 Advanced
77 1248 1048 RW Enable DirectSwitch Toggle Mode on DI 3.14 Advanced

View File

@ -0,0 +1,97 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
1,1,1,RW,MixedBits,Digital Output 1.1,0,Basic
1,1,1,RW,MixedBits,Digital Output 1.2,1,Basic
1,1,1,RW,MixedBits,Digital Output 1.3,2,Basic
1,1,1,RW,MixedBits,Digital Output 1.4,3,Basic
2,2,1,RW,Word,Analog Output (raw value) 1.1,,Obsolete
3,3,1,R,Word,Analog Input (raw value) 1.1,,Obsolete
4,4,1,R,Word,Analog Input/Output (raw value) 1.1,,Obsolete
5,5,1,R,Word,VRefInt of MCU,,Expert
6,6,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
7,7,1,R,Word,Length of RS485 TX Queue 1.1,,Obsolete
8,8,2,RW,DWord,Counter of Digital Input 1.1,,Basic
10,10,2,RW,DWord,Counter of Digital Input 1.2,,Basic
12,12,2,RW,DWord,Counter of Digital Input 1.3,,Basic
14,14,2,RW,DWord,Counter of Digital Input 1.4,,Basic
16,16,1,RW,Word,PWM Duty Cycle of DO 1.1,,Basic
17,17,1,RW,Word,PWM Duty Cycle of DO 1.2,,Basic
18,18,1,RW,Word,PWM Duty Cycle of DO 1.3,,Basic
19,19,1,RW,Word,PWM Duty Cycle of DO 1.4,,Basic
20,20,1,RW,MixedBits,User LED 1.1,0,Basic
20,20,1,RW,MixedBits,User LED 1.2,1,Basic
20,20,1,RW,MixedBits,User LED 1.3,2,Basic
20,20,1,RW,MixedBits,User LED 1.4,3,Basic
21,21,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1017,1017,1,RW,Word,PWM Group prescaler,,Basic
1018,1018,1,RW,Word,PWM Group cycle length,,Basic
1019,1019,1,RW,Word,Analog Output Configuration(U/I/R-measure) 1.1,,Basic
1020,1020,1,RW,Word,Analog Output Voltage deviation 1.1,,Expert
1021,1021,1,RW,Word,Analog Output Voltage offset 1.1,,Expert
1022,1022,1,RW,Word,Analog Output Current deviation 1.1,,Expert
1023,1023,1,RW,Word,Analog Output Current offset 1.1,,Expert
1024,1024,1,RW,Word,Analog Input Configuration(U/I) 1.1,,Basic
1025,1025,1,RW,Word,Analog Input Voltage deviation 1.1,,Expert
1026,1026,1,RW,Word,Analog Input Voltage offset 1.1,,Expert
1027,1027,1,RW,Word,Analog Input Current deviation 1.1,,Expert
1028,1028,1,RW,Word,Analog Input Current offset 1.1,,Expert
1029,1029,1,RW,Word,Analog Input/Output Voltage deviation (input side) 1.1,,Expert
1030,1030,1,RW,Word,Analog Input/Output Voltage offset (input side) 1.1,,Expert
1031,1031,1,RW,MixedBits,RS485 Configuration 1.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
3000,3000,2,RW,Real,Analog Output value 1.1,,Basic
3002,3002,2,R,Real,Analog Input value 1.1,,Basic
3004,3004,2,R,Real,(Internal) Analog Output measured voltage value 1.1,,Expert
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 1 1 1 RW MixedBits Digital Output 1.1 0 Basic
7 1 1 1 RW MixedBits Digital Output 1.2 1 Basic
8 1 1 1 RW MixedBits Digital Output 1.3 2 Basic
9 1 1 1 RW MixedBits Digital Output 1.4 3 Basic
10 2 2 1 RW Word Analog Output (raw value) 1.1 Obsolete
11 3 3 1 R Word Analog Input (raw value) 1.1 Obsolete
12 4 4 1 R Word Analog Input/Output (raw value) 1.1 Obsolete
13 5 5 1 R Word VRefInt of MCU Expert
14 6 6 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
15 7 7 1 R Word Length of RS485 TX Queue 1.1 Obsolete
16 8 8 2 RW DWord Counter of Digital Input 1.1 Basic
17 10 10 2 RW DWord Counter of Digital Input 1.2 Basic
18 12 12 2 RW DWord Counter of Digital Input 1.3 Basic
19 14 14 2 RW DWord Counter of Digital Input 1.4 Basic
20 16 16 1 RW Word PWM Duty Cycle of DO 1.1 Basic
21 17 17 1 RW Word PWM Duty Cycle of DO 1.2 Basic
22 18 18 1 RW Word PWM Duty Cycle of DO 1.3 Basic
23 19 19 1 RW Word PWM Duty Cycle of DO 1.4 Basic
24 20 20 1 RW MixedBits User LED 1.1 0 Basic
25 20 20 1 RW MixedBits User LED 1.2 1 Basic
26 20 20 1 RW MixedBits User LED 1.3 2 Basic
27 20 20 1 RW MixedBits User LED 1.4 3 Basic
28 21 21 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
29 21 21 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
30 21 21 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
31 21 21 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
32 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
33 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
34 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
35 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
36 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
37 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
38 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
39 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
40 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
41 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
42 505 505 1 W Word Reserved - Do Not Use Reserved
43 506 506 1 W Word Reserved - Do Not Use Reserved
44 507 507 1 W Word Reserved - Do Not Use Reserved
45 508 508 1 W Word Reserved - Do Not Use Reserved
46 509 509 1 W Word Reserved - Do Not Use Reserved
47 510 1 RW Word (Internal) Stored Firmware Version Expert
48 511 1 RW Word (Internal) Stored Firmware Revision Expert
49 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
50 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
51 514 1 RW Word (Internal) Stored PCB Revision Expert
52 515 1 RW Word (Internal) Stored PCB Serial Number Expert
53 516 1 RW Word (Internal) Stored HW Revision Number Expert
54 1000 1000 1 R Word Firmware Version Expert
55 1001 1001 1 R Word Number of I/Os Advanced
56 1002 1002 1 R Word Number of peripherals Advanced
57 1003 1003 1 R Word Firmware ID Expert
58 1004 1004 1 R Word Hardware ID Expert
59 1005 1005 2 R DWord PCB Serial Number Expert
60 1007 1007 1 RW Word Interrupt Mask Expert
61 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
62 1009 1009 1 R Word VRef of MCU Expert
63 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
64 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
65 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
66 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
67 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
68 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
69 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
70 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
71 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
72 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
73 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
74 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
75 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
76 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
77 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
78 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
79 1017 1017 1 RW Word PWM Group prescaler Basic
80 1018 1018 1 RW Word PWM Group cycle length Basic
81 1019 1019 1 RW Word Analog Output Configuration(U/I/R-measure) 1.1 Basic
82 1020 1020 1 RW Word Analog Output Voltage deviation 1.1 Expert
83 1021 1021 1 RW Word Analog Output Voltage offset 1.1 Expert
84 1022 1022 1 RW Word Analog Output Current deviation 1.1 Expert
85 1023 1023 1 RW Word Analog Output Current offset 1.1 Expert
86 1024 1024 1 RW Word Analog Input Configuration(U/I) 1.1 Basic
87 1025 1025 1 RW Word Analog Input Voltage deviation 1.1 Expert
88 1026 1026 1 RW Word Analog Input Voltage offset 1.1 Expert
89 1027 1027 1 RW Word Analog Input Current deviation 1.1 Expert
90 1028 1028 1 RW Word Analog Input Current offset 1.1 Expert
91 1029 1029 1 RW Word Analog Input/Output Voltage deviation (input side) 1.1 Expert
92 1030 1030 1 RW Word Analog Input/Output Voltage offset (input side) 1.1 Expert
93 1031 1031 1 RW MixedBits RS485 Configuration 1.1 Obsolete
94 2000 220 W Word Reserved - Do Not Use Reserved
95 3000 3000 2 RW Real Analog Output value 1.1 Basic
96 3002 3002 2 R Real Analog Input value 1.1 Basic
97 3004 3004 2 R Real (Internal) Analog Output measured voltage value 1.1 Expert

View File

@ -0,0 +1,92 @@
Via Unit 0,Via Unit 2,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
100,0,1,R,MixedBits,Digital Input 2.1,0,Basic
100,0,1,R,MixedBits,Digital Input 2.2,1,Basic
100,0,1,R,MixedBits,Digital Input 2.3,2,Basic
100,0,1,R,MixedBits,Digital Input 2.4,3,Basic
100,0,1,R,MixedBits,Digital Input 2.5,4,Basic
100,0,1,R,MixedBits,Digital Input 2.6,5,Basic
101,1,1,RW,MixedBits,Relay Output 2.1,0,Basic
101,1,1,RW,MixedBits,Relay Output 2.2,1,Basic
101,1,1,RW,MixedBits,Relay Output 2.3,2,Basic
101,1,1,RW,MixedBits,Relay Output 2.4,3,Basic
101,1,1,RW,MixedBits,Relay Output 2.5,4,Basic
102,2,1,RW,Word,Analog Output Value 2.1 (0..4000 ~ 0..10V),,Basic
103,3,1,RW,Word,Analog Output Value 2.2 (0..4000 ~ 0..10V),,Basic
104,4,1,RW,Word,Analog Output Value 2.3 (0..4000 ~ 0..10V),,Basic
105,5,1,RW,Word,Analog Output Value 2.4 (0..4000 ~ 0..10V),,Basic
106,6,2,R,Real,Analog Input Value 2.1,,Basic
108,8,2,R,Real,Analog Input Value 2.2,,Basic
110,10,2,R,Real,Analog Input Value 2.3,,Basic
112,12,2,R,Real,Analog Input Value 2.4,,Basic
114,14,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
115,15,1,R,Word,Length of RS485 TX Queue 2.1,,Obsolete
116,16,2,RW,DWord,Counter of Digital Input 2.1,,Basic
118,18,2,RW,DWord,Counter of Digital Input 2.2,,Basic
120,20,2,RW,DWord,Counter of Digital Input 2.3,,Basic
122,22,2,RW,DWord,Counter of Digital Input 2.4,,Basic
124,24,2,RW,DWord,Counter of Digital Input 2.5,,Basic
126,26,2,RW,DWord,Counter of Digital Input 2.6,,Basic
128,28,1,RW,MixedBits,Synchronised DO/RO 2.1,0,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.2,1,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.3,2,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.4,3,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.5,4,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.1,0,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.2,1,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.3,2,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.4,3,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.5,4,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 2.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 2.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 2.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 2.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 2.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 2.1,,Basic
605,505,1,W,Word,Reserved - Do Not Use,,Reserved
606,506,1,W,Word,Reserved - Do Not Use,,Reserved
607,507,1,W,Word,Reserved - Do Not Use,,Reserved
608,508,1,W,Word,Reserved - Do Not Use,,Reserved
609,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1100,1000,1,R,Word,Firmware Version,,Expert
1101,1001,1,R,Word,Number of I/Os,,Advanced
1102,1002,1,R,Word,Number of peripherals,,Advanced
1103,1003,1,R,Word,Firmware ID,,Expert
1104,1004,1,R,Word,Hardware ID,,Expert
1105,1005,2,R,DWord,PCB Serial Number,,Expert
1107,1007,1,RW,Word,Interrupt Mask,,Expert
1108,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1109,1009,1,R,Word,VRef of MCU,,Expert
1110,1010,1,RW,Word,Debounce time (in 100us) for DI 2.1,,Advanced
1111,1011,1,RW,Word,Debounce time (in 100us) for DI 2.2,,Advanced
1112,1012,1,RW,Word,Debounce time (in 100us) for DI 2.3,,Advanced
1113,1013,1,RW,Word,Debounce time (in 100us) for DI 2.4,,Advanced
1114,1014,1,RW,Word,Debounce time (in 100us) for DI 2.5,,Advanced
1115,1015,1,RW,Word,Debounce time (in 100us) for DI 2.6,,Advanced
1116,1016,1,RW,MixedBits,Enable DirectSwitch on DI 2.1,0,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch on DI 2.2,1,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch on DI 2.3,2,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch on DI 2.4,3,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch on DI 2.5,4,Basic
1117,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.1,0,Basic
1117,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.2,1,Basic
1117,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.3,2,Basic
1117,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.4,3,Basic
1117,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.5,4,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.1,0,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.2,1,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.3,2,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.4,3,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.5,4,Basic
1119,1019,1,RW,Word,Analog Input Configuration(U/I/R) 2.1,,Basic
1120,1020,1,RW,Word,Analog Input Configuration(U/I/R) 2.2,,Basic
1121,1021,1,RW,Word,Analog Input Configuration(U/I/R) 2.3,,Basic
1122,1022,1,RW,Word,Analog Input Configuration(U/I/R) 2.4,,Basic
1123,1023,1,RW,MixedBits,RS485 Configuration 2.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 2 Register Count R/W Data Type Content Start Bit Nr. Category
2 100 0 1 R MixedBits Digital Input 2.1 0 Basic
3 100 0 1 R MixedBits Digital Input 2.2 1 Basic
4 100 0 1 R MixedBits Digital Input 2.3 2 Basic
5 100 0 1 R MixedBits Digital Input 2.4 3 Basic
6 100 0 1 R MixedBits Digital Input 2.5 4 Basic
7 100 0 1 R MixedBits Digital Input 2.6 5 Basic
8 101 1 1 RW MixedBits Relay Output 2.1 0 Basic
9 101 1 1 RW MixedBits Relay Output 2.2 1 Basic
10 101 1 1 RW MixedBits Relay Output 2.3 2 Basic
11 101 1 1 RW MixedBits Relay Output 2.4 3 Basic
12 101 1 1 RW MixedBits Relay Output 2.5 4 Basic
13 102 2 1 RW Word Analog Output Value 2.1 (0..4000 ~ 0..10V) Basic
14 103 3 1 RW Word Analog Output Value 2.2 (0..4000 ~ 0..10V) Basic
15 104 4 1 RW Word Analog Output Value 2.3 (0..4000 ~ 0..10V) Basic
16 105 5 1 RW Word Analog Output Value 2.4 (0..4000 ~ 0..10V) Basic
17 106 6 2 R Real Analog Input Value 2.1 Basic
18 108 8 2 R Real Analog Input Value 2.2 Basic
19 110 10 2 R Real Analog Input Value 2.3 Basic
20 112 12 2 R Real Analog Input Value 2.4 Basic
21 114 14 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
22 115 15 1 R Word Length of RS485 TX Queue 2.1 Obsolete
23 116 16 2 RW DWord Counter of Digital Input 2.1 Basic
24 118 18 2 RW DWord Counter of Digital Input 2.2 Basic
25 120 20 2 RW DWord Counter of Digital Input 2.3 Basic
26 122 22 2 RW DWord Counter of Digital Input 2.4 Basic
27 124 24 2 RW DWord Counter of Digital Input 2.5 Basic
28 126 26 2 RW DWord Counter of Digital Input 2.6 Basic
29 128 28 1 RW MixedBits Synchronised DO/RO 2.1 0 Advanced
30 128 28 1 RW MixedBits Synchronised DO/RO 2.2 1 Advanced
31 128 28 1 RW MixedBits Synchronised DO/RO 2.3 2 Advanced
32 128 28 1 RW MixedBits Synchronised DO/RO 2.4 3 Advanced
33 128 28 1 RW MixedBits Synchronised DO/RO 2.5 4 Advanced
34 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.1 0 Advanced
35 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.2 1 Advanced
36 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.3 2 Advanced
37 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.4 3 Advanced
38 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.5 4 Advanced
39 100 2 RW DWord (Internal) RS485 Full Mode Configuration 2.1 Obsolete
40 500 1 RW Word RS485 TERMIOS CFlags 2.1 Expert
41 501 1 RW Word RS485 TERMIOS LFlags 2.1 Expert
42 502 1 RW Word RS485 TERMIOS IFlags 2.1 Expert
43 503 1 RW Word RS485 TERMIOS LDisc 2.1 Expert
44 504 1 RW Word RS485 ModBus Timeout 2.1 Basic
45 605 505 1 W Word Reserved - Do Not Use Reserved
46 606 506 1 W Word Reserved - Do Not Use Reserved
47 607 507 1 W Word Reserved - Do Not Use Reserved
48 608 508 1 W Word Reserved - Do Not Use Reserved
49 609 509 1 W Word Reserved - Do Not Use Reserved
50 510 1 RW Word (Internal) Stored Firmware Version Expert
51 511 1 RW Word (Internal) Stored Firmware Revision Expert
52 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
53 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
54 514 1 RW Word (Internal) Stored PCB Revision Expert
55 515 1 RW Word (Internal) Stored PCB Serial Number Expert
56 516 1 RW Word (Internal) Stored HW Revision Number Expert
57 1100 1000 1 R Word Firmware Version Expert
58 1101 1001 1 R Word Number of I/Os Advanced
59 1102 1002 1 R Word Number of peripherals Advanced
60 1103 1003 1 R Word Firmware ID Expert
61 1104 1004 1 R Word Hardware ID Expert
62 1105 1005 2 R DWord PCB Serial Number Expert
63 1107 1007 1 RW Word Interrupt Mask Expert
64 1108 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
65 1109 1009 1 R Word VRef of MCU Expert
66 1110 1010 1 RW Word Debounce time (in 100us) for DI 2.1 Advanced
67 1111 1011 1 RW Word Debounce time (in 100us) for DI 2.2 Advanced
68 1112 1012 1 RW Word Debounce time (in 100us) for DI 2.3 Advanced
69 1113 1013 1 RW Word Debounce time (in 100us) for DI 2.4 Advanced
70 1114 1014 1 RW Word Debounce time (in 100us) for DI 2.5 Advanced
71 1115 1015 1 RW Word Debounce time (in 100us) for DI 2.6 Advanced
72 1116 1016 1 RW MixedBits Enable DirectSwitch on DI 2.1 0 Basic
73 1116 1016 1 RW MixedBits Enable DirectSwitch on DI 2.2 1 Basic
74 1116 1016 1 RW MixedBits Enable DirectSwitch on DI 2.3 2 Basic
75 1116 1016 1 RW MixedBits Enable DirectSwitch on DI 2.4 3 Basic
76 1116 1016 1 RW MixedBits Enable DirectSwitch on DI 2.5 4 Basic
77 1117 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.1 0 Basic
78 1117 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.2 1 Basic
79 1117 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.3 2 Basic
80 1117 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.4 3 Basic
81 1117 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.5 4 Basic
82 1118 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.1 0 Basic
83 1118 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.2 1 Basic
84 1118 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.3 2 Basic
85 1118 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.4 3 Basic
86 1118 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.5 4 Basic
87 1119 1019 1 RW Word Analog Input Configuration(U/I/R) 2.1 Basic
88 1120 1020 1 RW Word Analog Input Configuration(U/I/R) 2.2 Basic
89 1121 1021 1 RW Word Analog Input Configuration(U/I/R) 2.3 Basic
90 1122 1022 1 RW Word Analog Input Configuration(U/I/R) 2.4 Basic
91 1123 1023 1 RW MixedBits RS485 Configuration 2.1 Obsolete
92 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,162 @@
Via Unit 0,Via Unit 3,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
200,0,1,R,MixedBits,Digital Input 3.1,0,Basic
200,0,1,R,MixedBits,Digital Input 3.2,1,Basic
200,0,1,R,MixedBits,Digital Input 3.3,2,Basic
200,0,1,R,MixedBits,Digital Input 3.4,3,Basic
200,0,1,R,MixedBits,Digital Input 3.5,4,Basic
200,0,1,R,MixedBits,Digital Input 3.6,5,Basic
200,0,1,R,MixedBits,Digital Input 3.7,6,Basic
200,0,1,R,MixedBits,Digital Input 3.8,7,Basic
200,0,1,R,MixedBits,Digital Input 3.9,8,Basic
200,0,1,R,MixedBits,Digital Input 3.10,9,Basic
200,0,1,R,MixedBits,Digital Input 3.11,10,Basic
200,0,1,R,MixedBits,Digital Input 3.12,11,Basic
200,0,1,R,MixedBits,Digital Input 3.13,12,Basic
200,0,1,R,MixedBits,Digital Input 3.14,13,Basic
201,1,1,RW,MixedBits,Relay Output 3.1,0,Basic
201,1,1,RW,MixedBits,Relay Output 3.2,1,Basic
201,1,1,RW,MixedBits,Relay Output 3.3,2,Basic
201,1,1,RW,MixedBits,Relay Output 3.4,3,Basic
201,1,1,RW,MixedBits,Relay Output 3.5,4,Basic
201,1,1,RW,MixedBits,Relay Output 3.6,5,Basic
201,1,1,RW,MixedBits,Relay Output 3.7,6,Basic
201,1,1,RW,MixedBits,Relay Output 3.8,7,Basic
201,1,1,RW,MixedBits,Relay Output 3.9,8,Basic
201,1,1,RW,MixedBits,Relay Output 3.10,9,Basic
201,1,1,RW,MixedBits,Relay Output 3.11,10,Basic
201,1,1,RW,MixedBits,Relay Output 3.12,11,Basic
201,1,1,RW,MixedBits,Relay Output 3.13,12,Basic
201,1,1,RW,MixedBits,Relay Output 3.14,13,Basic
202,2,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
203,3,2,RW,DWord,Counter of Digital Input 3.1,,Basic
205,5,2,RW,DWord,Counter of Digital Input 3.2,,Basic
207,7,2,RW,DWord,Counter of Digital Input 3.3,,Basic
209,9,2,RW,DWord,Counter of Digital Input 3.4,,Basic
211,11,2,RW,DWord,Counter of Digital Input 3.5,,Basic
213,13,2,RW,DWord,Counter of Digital Input 3.6,,Basic
215,15,2,RW,DWord,Counter of Digital Input 3.7,,Basic
217,17,2,RW,DWord,Counter of Digital Input 3.8,,Basic
219,19,2,RW,DWord,Counter of Digital Input 3.9,,Basic
221,21,2,RW,DWord,Counter of Digital Input 3.10,,Basic
223,23,2,RW,DWord,Counter of Digital Input 3.11,,Basic
225,25,2,RW,DWord,Counter of Digital Input 3.12,,Basic
227,27,2,RW,DWord,Counter of Digital Input 3.13,,Basic
229,29,2,RW,DWord,Counter of Digital Input 3.14,,Basic
231,31,1,W,Word,Reserved - Do Not Use,,Reserved
232,32,1,W,Word,Reserved - Do Not Use,,Reserved
233,33,1,W,Word,Reserved - Do Not Use,,Reserved
234,34,1,W,Word,Reserved - Do Not Use,,Reserved
235,35,1,RW,MixedBits,Synchronised DO/RO 3.1,0,Advanced
235,35,1,RW,MixedBits,Synchronised DO/RO 3.2,1,Advanced
235,35,1,RW,MixedBits,Synchronised DO/RO 3.3,2,Advanced
235,35,1,RW,MixedBits,Synchronised DO/RO 3.4,3,Advanced
235,35,1,RW,MixedBits,Synchronised DO/RO 3.5,4,Advanced
235,35,1,RW,MixedBits,Synchronised DO/RO 3.6,5,Advanced
235,35,1,RW,MixedBits,Synchronised DO/RO 3.7,6,Advanced
235,35,1,RW,MixedBits,Synchronised DO/RO 3.8,7,Advanced
235,35,1,RW,MixedBits,Synchronised DO/RO 3.9,8,Advanced
235,35,1,RW,MixedBits,Synchronised DO/RO 3.10,9,Advanced
235,35,1,RW,MixedBits,Synchronised DO/RO 3.11,10,Advanced
235,35,1,RW,MixedBits,Synchronised DO/RO 3.12,11,Advanced
235,35,1,RW,MixedBits,Synchronised DO/RO 3.13,12,Advanced
235,35,1,RW,MixedBits,Synchronised DO/RO 3.14,13,Advanced
236,36,1,RW,MixedBits,Synchronised DO/RO Lock 3.1,0,Advanced
236,36,1,RW,MixedBits,Synchronised DO/RO Lock 3.2,1,Advanced
236,36,1,RW,MixedBits,Synchronised DO/RO Lock 3.3,2,Advanced
236,36,1,RW,MixedBits,Synchronised DO/RO Lock 3.4,3,Advanced
236,36,1,RW,MixedBits,Synchronised DO/RO Lock 3.5,4,Advanced
236,36,1,RW,MixedBits,Synchronised DO/RO Lock 3.6,5,Advanced
236,36,1,RW,MixedBits,Synchronised DO/RO Lock 3.7,6,Advanced
236,36,1,RW,MixedBits,Synchronised DO/RO Lock 3.8,7,Advanced
236,36,1,RW,MixedBits,Synchronised DO/RO Lock 3.9,8,Advanced
236,36,1,RW,MixedBits,Synchronised DO/RO Lock 3.10,9,Advanced
236,36,1,RW,MixedBits,Synchronised DO/RO Lock 3.11,10,Advanced
236,36,1,RW,MixedBits,Synchronised DO/RO Lock 3.12,11,Advanced
236,36,1,RW,MixedBits,Synchronised DO/RO Lock 3.13,12,Advanced
236,36,1,RW,MixedBits,Synchronised DO/RO Lock 3.14,13,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 3.1,,Obsolete
700,500,1,W,Word,Reserved - Do Not Use,,Reserved
701,501,1,W,Word,Reserved - Do Not Use,,Reserved
702,502,1,W,Word,Reserved - Do Not Use,,Reserved
703,503,1,W,Word,Reserved - Do Not Use,,Reserved
704,504,1,W,Word,Reserved - Do Not Use,,Reserved
705,505,1,W,Word,Reserved - Do Not Use,,Reserved
706,506,1,W,Word,Reserved - Do Not Use,,Reserved
707,507,1,W,Word,Reserved - Do Not Use,,Reserved
708,508,1,W,Word,Reserved - Do Not Use,,Reserved
709,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1200,1000,1,R,Word,Firmware Version,,Expert
1201,1001,1,R,Word,Number of I/Os,,Advanced
1202,1002,1,R,Word,Number of peripherals,,Advanced
1203,1003,1,R,Word,Firmware ID,,Expert
1204,1004,1,R,Word,Hardware ID,,Expert
1205,1005,2,R,DWord,PCB Serial Number,,Expert
1207,1007,1,RW,Word,Interrupt Mask,,Expert
1208,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1209,1009,1,R,Word,VRef of MCU,,Expert
1210,1010,1,RW,Word,Debounce time (in 100us) for DI 3.1,,Advanced
1211,1011,1,RW,Word,Debounce time (in 100us) for DI 3.2,,Advanced
1212,1012,1,RW,Word,Debounce time (in 100us) for DI 3.3,,Advanced
1213,1013,1,RW,Word,Debounce time (in 100us) for DI 3.4,,Advanced
1214,1014,1,RW,Word,Debounce time (in 100us) for DI 3.5,,Advanced
1215,1015,1,RW,Word,Debounce time (in 100us) for DI 3.6,,Advanced
1216,1016,1,RW,Word,Debounce time (in 100us) for DI 3.7,,Advanced
1217,1017,1,RW,Word,Debounce time (in 100us) for DI 3.8,,Advanced
1218,1018,1,RW,Word,Debounce time (in 100us) for DI 3.9,,Advanced
1219,1019,1,RW,Word,Debounce time (in 100us) for DI 3.10,,Advanced
1220,1020,1,RW,Word,Debounce time (in 100us) for DI 3.11,,Advanced
1221,1021,1,RW,Word,Debounce time (in 100us) for DI 3.12,,Advanced
1222,1022,1,RW,Word,Debounce time (in 100us) for DI 3.13,,Advanced
1223,1023,1,RW,Word,Debounce time (in 100us) for DI 3.14,,Advanced
1224,1024,1,RW,MixedBits,Enable DirectSwitch on DI 3.1,0,Basic
1224,1024,1,RW,MixedBits,Enable DirectSwitch on DI 3.2,1,Basic
1224,1024,1,RW,MixedBits,Enable DirectSwitch on DI 3.3,2,Basic
1224,1024,1,RW,MixedBits,Enable DirectSwitch on DI 3.4,3,Basic
1224,1024,1,RW,MixedBits,Enable DirectSwitch on DI 3.5,4,Basic
1224,1024,1,RW,MixedBits,Enable DirectSwitch on DI 3.6,5,Basic
1224,1024,1,RW,MixedBits,Enable DirectSwitch on DI 3.7,6,Basic
1224,1024,1,RW,MixedBits,Enable DirectSwitch on DI 3.8,7,Basic
1224,1024,1,RW,MixedBits,Enable DirectSwitch on DI 3.9,8,Basic
1224,1024,1,RW,MixedBits,Enable DirectSwitch on DI 3.10,9,Basic
1224,1024,1,RW,MixedBits,Enable DirectSwitch on DI 3.11,10,Basic
1224,1024,1,RW,MixedBits,Enable DirectSwitch on DI 3.12,11,Basic
1224,1024,1,RW,MixedBits,Enable DirectSwitch on DI 3.13,12,Basic
1224,1024,1,RW,MixedBits,Enable DirectSwitch on DI 3.14,13,Basic
1225,1025,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.1,0,Basic
1225,1025,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.2,1,Basic
1225,1025,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.3,2,Basic
1225,1025,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.4,3,Basic
1225,1025,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.5,4,Basic
1225,1025,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.6,5,Basic
1225,1025,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.7,6,Basic
1225,1025,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.8,7,Basic
1225,1025,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.9,8,Basic
1225,1025,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.10,9,Basic
1225,1025,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.11,10,Basic
1225,1025,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.12,11,Basic
1225,1025,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.13,12,Basic
1225,1025,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.14,13,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.1,0,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.2,1,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.3,2,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.4,3,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.5,4,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.6,5,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.7,6,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.8,7,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.9,8,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.10,9,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.11,10,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.12,11,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.13,12,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.14,13,Basic
1227,1027,1,W,Word,Reserved - Do Not Use,,Reserved
1228,1028,1,W,Word,Reserved - Do Not Use,,Reserved
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 3 Register Count R/W Data Type Content Start Bit Nr. Category
2 200 0 1 R MixedBits Digital Input 3.1 0 Basic
3 200 0 1 R MixedBits Digital Input 3.2 1 Basic
4 200 0 1 R MixedBits Digital Input 3.3 2 Basic
5 200 0 1 R MixedBits Digital Input 3.4 3 Basic
6 200 0 1 R MixedBits Digital Input 3.5 4 Basic
7 200 0 1 R MixedBits Digital Input 3.6 5 Basic
8 200 0 1 R MixedBits Digital Input 3.7 6 Basic
9 200 0 1 R MixedBits Digital Input 3.8 7 Basic
10 200 0 1 R MixedBits Digital Input 3.9 8 Basic
11 200 0 1 R MixedBits Digital Input 3.10 9 Basic
12 200 0 1 R MixedBits Digital Input 3.11 10 Basic
13 200 0 1 R MixedBits Digital Input 3.12 11 Basic
14 200 0 1 R MixedBits Digital Input 3.13 12 Basic
15 200 0 1 R MixedBits Digital Input 3.14 13 Basic
16 201 1 1 RW MixedBits Relay Output 3.1 0 Basic
17 201 1 1 RW MixedBits Relay Output 3.2 1 Basic
18 201 1 1 RW MixedBits Relay Output 3.3 2 Basic
19 201 1 1 RW MixedBits Relay Output 3.4 3 Basic
20 201 1 1 RW MixedBits Relay Output 3.5 4 Basic
21 201 1 1 RW MixedBits Relay Output 3.6 5 Basic
22 201 1 1 RW MixedBits Relay Output 3.7 6 Basic
23 201 1 1 RW MixedBits Relay Output 3.8 7 Basic
24 201 1 1 RW MixedBits Relay Output 3.9 8 Basic
25 201 1 1 RW MixedBits Relay Output 3.10 9 Basic
26 201 1 1 RW MixedBits Relay Output 3.11 10 Basic
27 201 1 1 RW MixedBits Relay Output 3.12 11 Basic
28 201 1 1 RW MixedBits Relay Output 3.13 12 Basic
29 201 1 1 RW MixedBits Relay Output 3.14 13 Basic
30 202 2 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
31 203 3 2 RW DWord Counter of Digital Input 3.1 Basic
32 205 5 2 RW DWord Counter of Digital Input 3.2 Basic
33 207 7 2 RW DWord Counter of Digital Input 3.3 Basic
34 209 9 2 RW DWord Counter of Digital Input 3.4 Basic
35 211 11 2 RW DWord Counter of Digital Input 3.5 Basic
36 213 13 2 RW DWord Counter of Digital Input 3.6 Basic
37 215 15 2 RW DWord Counter of Digital Input 3.7 Basic
38 217 17 2 RW DWord Counter of Digital Input 3.8 Basic
39 219 19 2 RW DWord Counter of Digital Input 3.9 Basic
40 221 21 2 RW DWord Counter of Digital Input 3.10 Basic
41 223 23 2 RW DWord Counter of Digital Input 3.11 Basic
42 225 25 2 RW DWord Counter of Digital Input 3.12 Basic
43 227 27 2 RW DWord Counter of Digital Input 3.13 Basic
44 229 29 2 RW DWord Counter of Digital Input 3.14 Basic
45 231 31 1 W Word Reserved - Do Not Use Reserved
46 232 32 1 W Word Reserved - Do Not Use Reserved
47 233 33 1 W Word Reserved - Do Not Use Reserved
48 234 34 1 W Word Reserved - Do Not Use Reserved
49 235 35 1 RW MixedBits Synchronised DO/RO 3.1 0 Advanced
50 235 35 1 RW MixedBits Synchronised DO/RO 3.2 1 Advanced
51 235 35 1 RW MixedBits Synchronised DO/RO 3.3 2 Advanced
52 235 35 1 RW MixedBits Synchronised DO/RO 3.4 3 Advanced
53 235 35 1 RW MixedBits Synchronised DO/RO 3.5 4 Advanced
54 235 35 1 RW MixedBits Synchronised DO/RO 3.6 5 Advanced
55 235 35 1 RW MixedBits Synchronised DO/RO 3.7 6 Advanced
56 235 35 1 RW MixedBits Synchronised DO/RO 3.8 7 Advanced
57 235 35 1 RW MixedBits Synchronised DO/RO 3.9 8 Advanced
58 235 35 1 RW MixedBits Synchronised DO/RO 3.10 9 Advanced
59 235 35 1 RW MixedBits Synchronised DO/RO 3.11 10 Advanced
60 235 35 1 RW MixedBits Synchronised DO/RO 3.12 11 Advanced
61 235 35 1 RW MixedBits Synchronised DO/RO 3.13 12 Advanced
62 235 35 1 RW MixedBits Synchronised DO/RO 3.14 13 Advanced
63 236 36 1 RW MixedBits Synchronised DO/RO Lock 3.1 0 Advanced
64 236 36 1 RW MixedBits Synchronised DO/RO Lock 3.2 1 Advanced
65 236 36 1 RW MixedBits Synchronised DO/RO Lock 3.3 2 Advanced
66 236 36 1 RW MixedBits Synchronised DO/RO Lock 3.4 3 Advanced
67 236 36 1 RW MixedBits Synchronised DO/RO Lock 3.5 4 Advanced
68 236 36 1 RW MixedBits Synchronised DO/RO Lock 3.6 5 Advanced
69 236 36 1 RW MixedBits Synchronised DO/RO Lock 3.7 6 Advanced
70 236 36 1 RW MixedBits Synchronised DO/RO Lock 3.8 7 Advanced
71 236 36 1 RW MixedBits Synchronised DO/RO Lock 3.9 8 Advanced
72 236 36 1 RW MixedBits Synchronised DO/RO Lock 3.10 9 Advanced
73 236 36 1 RW MixedBits Synchronised DO/RO Lock 3.11 10 Advanced
74 236 36 1 RW MixedBits Synchronised DO/RO Lock 3.12 11 Advanced
75 236 36 1 RW MixedBits Synchronised DO/RO Lock 3.13 12 Advanced
76 236 36 1 RW MixedBits Synchronised DO/RO Lock 3.14 13 Advanced
77 100 2 RW DWord (Internal) RS485 Full Mode Configuration 3.1 Obsolete
78 700 500 1 W Word Reserved - Do Not Use Reserved
79 701 501 1 W Word Reserved - Do Not Use Reserved
80 702 502 1 W Word Reserved - Do Not Use Reserved
81 703 503 1 W Word Reserved - Do Not Use Reserved
82 704 504 1 W Word Reserved - Do Not Use Reserved
83 705 505 1 W Word Reserved - Do Not Use Reserved
84 706 506 1 W Word Reserved - Do Not Use Reserved
85 707 507 1 W Word Reserved - Do Not Use Reserved
86 708 508 1 W Word Reserved - Do Not Use Reserved
87 709 509 1 W Word Reserved - Do Not Use Reserved
88 510 1 RW Word (Internal) Stored Firmware Version Expert
89 511 1 RW Word (Internal) Stored Firmware Revision Expert
90 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
91 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
92 514 1 RW Word (Internal) Stored PCB Revision Expert
93 515 1 RW Word (Internal) Stored PCB Serial Number Expert
94 516 1 RW Word (Internal) Stored HW Revision Number Expert
95 1200 1000 1 R Word Firmware Version Expert
96 1201 1001 1 R Word Number of I/Os Advanced
97 1202 1002 1 R Word Number of peripherals Advanced
98 1203 1003 1 R Word Firmware ID Expert
99 1204 1004 1 R Word Hardware ID Expert
100 1205 1005 2 R DWord PCB Serial Number Expert
101 1207 1007 1 RW Word Interrupt Mask Expert
102 1208 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
103 1209 1009 1 R Word VRef of MCU Expert
104 1210 1010 1 RW Word Debounce time (in 100us) for DI 3.1 Advanced
105 1211 1011 1 RW Word Debounce time (in 100us) for DI 3.2 Advanced
106 1212 1012 1 RW Word Debounce time (in 100us) for DI 3.3 Advanced
107 1213 1013 1 RW Word Debounce time (in 100us) for DI 3.4 Advanced
108 1214 1014 1 RW Word Debounce time (in 100us) for DI 3.5 Advanced
109 1215 1015 1 RW Word Debounce time (in 100us) for DI 3.6 Advanced
110 1216 1016 1 RW Word Debounce time (in 100us) for DI 3.7 Advanced
111 1217 1017 1 RW Word Debounce time (in 100us) for DI 3.8 Advanced
112 1218 1018 1 RW Word Debounce time (in 100us) for DI 3.9 Advanced
113 1219 1019 1 RW Word Debounce time (in 100us) for DI 3.10 Advanced
114 1220 1020 1 RW Word Debounce time (in 100us) for DI 3.11 Advanced
115 1221 1021 1 RW Word Debounce time (in 100us) for DI 3.12 Advanced
116 1222 1022 1 RW Word Debounce time (in 100us) for DI 3.13 Advanced
117 1223 1023 1 RW Word Debounce time (in 100us) for DI 3.14 Advanced
118 1224 1024 1 RW MixedBits Enable DirectSwitch on DI 3.1 0 Basic
119 1224 1024 1 RW MixedBits Enable DirectSwitch on DI 3.2 1 Basic
120 1224 1024 1 RW MixedBits Enable DirectSwitch on DI 3.3 2 Basic
121 1224 1024 1 RW MixedBits Enable DirectSwitch on DI 3.4 3 Basic
122 1224 1024 1 RW MixedBits Enable DirectSwitch on DI 3.5 4 Basic
123 1224 1024 1 RW MixedBits Enable DirectSwitch on DI 3.6 5 Basic
124 1224 1024 1 RW MixedBits Enable DirectSwitch on DI 3.7 6 Basic
125 1224 1024 1 RW MixedBits Enable DirectSwitch on DI 3.8 7 Basic
126 1224 1024 1 RW MixedBits Enable DirectSwitch on DI 3.9 8 Basic
127 1224 1024 1 RW MixedBits Enable DirectSwitch on DI 3.10 9 Basic
128 1224 1024 1 RW MixedBits Enable DirectSwitch on DI 3.11 10 Basic
129 1224 1024 1 RW MixedBits Enable DirectSwitch on DI 3.12 11 Basic
130 1224 1024 1 RW MixedBits Enable DirectSwitch on DI 3.13 12 Basic
131 1224 1024 1 RW MixedBits Enable DirectSwitch on DI 3.14 13 Basic
132 1225 1025 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.1 0 Basic
133 1225 1025 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.2 1 Basic
134 1225 1025 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.3 2 Basic
135 1225 1025 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.4 3 Basic
136 1225 1025 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.5 4 Basic
137 1225 1025 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.6 5 Basic
138 1225 1025 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.7 6 Basic
139 1225 1025 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.8 7 Basic
140 1225 1025 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.9 8 Basic
141 1225 1025 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.10 9 Basic
142 1225 1025 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.11 10 Basic
143 1225 1025 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.12 11 Basic
144 1225 1025 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.13 12 Basic
145 1225 1025 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.14 13 Basic
146 1226 1026 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.1 0 Basic
147 1226 1026 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.2 1 Basic
148 1226 1026 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.3 2 Basic
149 1226 1026 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.4 3 Basic
150 1226 1026 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.5 4 Basic
151 1226 1026 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.6 5 Basic
152 1226 1026 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.7 6 Basic
153 1226 1026 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.8 7 Basic
154 1226 1026 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.9 8 Basic
155 1226 1026 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.10 9 Basic
156 1226 1026 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.11 10 Basic
157 1226 1026 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.12 11 Basic
158 1226 1026 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.13 12 Basic
159 1226 1026 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.14 13 Basic
160 1227 1027 1 W Word Reserved - Do Not Use Reserved
161 1228 1028 1 W Word Reserved - Do Not Use Reserved
162 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,32 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Digital Output 1.1,Basic
1,1,RW,Digital Output 1.2,Basic
2,2,RW,Digital Output 1.3,Basic
3,3,RW,Digital Output 1.4,Basic
4,4,R,Digital Input 1.1,Basic
5,5,R,Digital Input 1.2,Basic
6,6,R,Digital Input 1.3,Basic
7,7,R,Digital Input 1.4,Basic
8,8,RW,User Programmable LED 1.1,Basic
9,9,RW,User Programmable LED 1.2,Basic
10,10,RW,User Programmable LED 1.3,Basic
11,11,RW,User Programmable LED 1.4,Basic
1000,1000,RW,MWD reset indication,Advanced
1001,1001,RW,Enable/Disable 1Wire Bus,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1012,1012,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1013,1013,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1014,1014,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1015,1015,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1016,1016,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1017,1017,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1018,1018,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Digital Output 1.1 Basic
3 1 1 RW Digital Output 1.2 Basic
4 2 2 RW Digital Output 1.3 Basic
5 3 3 RW Digital Output 1.4 Basic
6 4 4 R Digital Input 1.1 Basic
7 5 5 R Digital Input 1.2 Basic
8 6 6 R Digital Input 1.3 Basic
9 7 7 R Digital Input 1.4 Basic
10 8 8 RW User Programmable LED 1.1 Basic
11 9 9 RW User Programmable LED 1.2 Basic
12 10 10 RW User Programmable LED 1.3 Basic
13 11 11 RW User Programmable LED 1.4 Basic
14 1000 1000 RW MWD reset indication Advanced
15 1001 1001 RW Enable/Disable 1Wire Bus Advanced
16 1002 1002 R Reset group MCU Advanced
17 1003 1003 RW Save current configuration and use on startup Advanced
18 1004 1004 RW (Internal) Firmware programming toggle Expert
19 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
20 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
21 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
22 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
23 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
24 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
25 1011 1011 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
26 1012 1012 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
27 1013 1013 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
28 1014 1014 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
29 1015 1015 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
30 1016 1016 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
31 1017 1017 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
32 1018 1018 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced

View File

@ -0,0 +1,33 @@
Via Unit 0,Via Unit 2,R/W,Content,Category
100,0,RW,Relay Output 2.1,Basic
101,1,RW,Relay Output 2.2,Basic
102,2,RW,Relay Output 2.3,Basic
103,3,RW,Relay Output 2.4,Basic
104,4,RW,Relay Output 2.5,Basic
105,5,R,Digital Input 2.1,Basic
106,6,R,Digital Input 2.2,Basic
107,7,R,Digital Input 2.3,Basic
108,8,R,Digital Input 2.4,Basic
109,9,R,Digital Input 2.5,Basic
110,10,R,Digital Input 2.6,Basic
1100,1000,RW,MWD reset indication,Advanced
1102,1002,R,Reset group MCU,Advanced
1103,1003,RW,Save current configuration and use on startup,Advanced
1104,1004,RW,(Internal) Firmware programming toggle,Expert
1105,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1106,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1107,1007,RW,Enable DirectSwitch on DI 2.1,Advanced
1108,1008,RW,Enable DirectSwitch on DI 2.2,Advanced
1109,1009,RW,Enable DirectSwitch on DI 2.3,Advanced
1110,1010,RW,Enable DirectSwitch on DI 2.4,Advanced
1111,1011,RW,Enable DirectSwitch on DI 2.5,Advanced
1112,1012,RW,Invert DirectSwitch Polarity on DI 2.1,Advanced
1113,1013,RW,Invert DirectSwitch Polarity on DI 2.2,Advanced
1114,1014,RW,Invert DirectSwitch Polarity on DI 2.3,Advanced
1115,1015,RW,Invert DirectSwitch Polarity on DI 2.4,Advanced
1116,1016,RW,Invert DirectSwitch Polarity on DI 2.5,Advanced
1117,1017,RW,Enable DirectSwitch Toggle Mode on DI 2.1,Advanced
1118,1018,RW,Enable DirectSwitch Toggle Mode on DI 2.2,Advanced
1119,1019,RW,Enable DirectSwitch Toggle Mode on DI 2.3,Advanced
1120,1020,RW,Enable DirectSwitch Toggle Mode on DI 2.4,Advanced
1121,1021,RW,Enable DirectSwitch Toggle Mode on DI 2.5,Advanced
1 Via Unit 0 Via Unit 2 R/W Content Category
2 100 0 RW Relay Output 2.1 Basic
3 101 1 RW Relay Output 2.2 Basic
4 102 2 RW Relay Output 2.3 Basic
5 103 3 RW Relay Output 2.4 Basic
6 104 4 RW Relay Output 2.5 Basic
7 105 5 R Digital Input 2.1 Basic
8 106 6 R Digital Input 2.2 Basic
9 107 7 R Digital Input 2.3 Basic
10 108 8 R Digital Input 2.4 Basic
11 109 9 R Digital Input 2.5 Basic
12 110 10 R Digital Input 2.6 Basic
13 1100 1000 RW MWD reset indication Advanced
14 1102 1002 R Reset group MCU Advanced
15 1103 1003 RW Save current configuration and use on startup Advanced
16 1104 1004 RW (Internal) Firmware programming toggle Expert
17 1105 1005 RW (Internal) Firmware reprogramming toggle Expert
18 1106 1006 RW (Internal) Firmware calibration programming toggle Expert
19 1107 1007 RW Enable DirectSwitch on DI 2.1 Advanced
20 1108 1008 RW Enable DirectSwitch on DI 2.2 Advanced
21 1109 1009 RW Enable DirectSwitch on DI 2.3 Advanced
22 1110 1010 RW Enable DirectSwitch on DI 2.4 Advanced
23 1111 1011 RW Enable DirectSwitch on DI 2.5 Advanced
24 1112 1012 RW Invert DirectSwitch Polarity on DI 2.1 Advanced
25 1113 1013 RW Invert DirectSwitch Polarity on DI 2.2 Advanced
26 1114 1014 RW Invert DirectSwitch Polarity on DI 2.3 Advanced
27 1115 1015 RW Invert DirectSwitch Polarity on DI 2.4 Advanced
28 1116 1016 RW Invert DirectSwitch Polarity on DI 2.5 Advanced
29 1117 1017 RW Enable DirectSwitch Toggle Mode on DI 2.1 Advanced
30 1118 1018 RW Enable DirectSwitch Toggle Mode on DI 2.2 Advanced
31 1119 1019 RW Enable DirectSwitch Toggle Mode on DI 2.3 Advanced
32 1120 1020 RW Enable DirectSwitch Toggle Mode on DI 2.4 Advanced
33 1121 1021 RW Enable DirectSwitch Toggle Mode on DI 2.5 Advanced

View File

@ -0,0 +1,33 @@
Via Unit 0,Via Unit 3,R/W,Content,Category
200,0,RW,Relay Output 3.1,Basic
201,1,RW,Relay Output 3.2,Basic
202,2,RW,Relay Output 3.3,Basic
203,3,RW,Relay Output 3.4,Basic
204,4,RW,Relay Output 3.5,Basic
205,5,R,Digital Input 3.1,Basic
206,6,R,Digital Input 3.2,Basic
207,7,R,Digital Input 3.3,Basic
208,8,R,Digital Input 3.4,Basic
209,9,R,Digital Input 3.5,Basic
210,10,R,Digital Input 3.6,Basic
1200,1000,RW,MWD reset indication,Advanced
1202,1002,R,Reset group MCU,Advanced
1203,1003,RW,Save current configuration and use on startup,Advanced
1204,1004,RW,(Internal) Firmware programming toggle,Expert
1205,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1206,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1207,1007,RW,Enable DirectSwitch on DI 3.1,Advanced
1208,1008,RW,Enable DirectSwitch on DI 3.2,Advanced
1209,1009,RW,Enable DirectSwitch on DI 3.3,Advanced
1210,1010,RW,Enable DirectSwitch on DI 3.4,Advanced
1211,1011,RW,Enable DirectSwitch on DI 3.5,Advanced
1212,1012,RW,Invert DirectSwitch Polarity on DI 3.1,Advanced
1213,1013,RW,Invert DirectSwitch Polarity on DI 3.2,Advanced
1214,1014,RW,Invert DirectSwitch Polarity on DI 3.3,Advanced
1215,1015,RW,Invert DirectSwitch Polarity on DI 3.4,Advanced
1216,1016,RW,Invert DirectSwitch Polarity on DI 3.5,Advanced
1217,1017,RW,Enable DirectSwitch Toggle Mode on DI 3.1,Advanced
1218,1018,RW,Enable DirectSwitch Toggle Mode on DI 3.2,Advanced
1219,1019,RW,Enable DirectSwitch Toggle Mode on DI 3.3,Advanced
1220,1020,RW,Enable DirectSwitch Toggle Mode on DI 3.4,Advanced
1221,1021,RW,Enable DirectSwitch Toggle Mode on DI 3.5,Advanced
1 Via Unit 0 Via Unit 3 R/W Content Category
2 200 0 RW Relay Output 3.1 Basic
3 201 1 RW Relay Output 3.2 Basic
4 202 2 RW Relay Output 3.3 Basic
5 203 3 RW Relay Output 3.4 Basic
6 204 4 RW Relay Output 3.5 Basic
7 205 5 R Digital Input 3.1 Basic
8 206 6 R Digital Input 3.2 Basic
9 207 7 R Digital Input 3.3 Basic
10 208 8 R Digital Input 3.4 Basic
11 209 9 R Digital Input 3.5 Basic
12 210 10 R Digital Input 3.6 Basic
13 1200 1000 RW MWD reset indication Advanced
14 1202 1002 R Reset group MCU Advanced
15 1203 1003 RW Save current configuration and use on startup Advanced
16 1204 1004 RW (Internal) Firmware programming toggle Expert
17 1205 1005 RW (Internal) Firmware reprogramming toggle Expert
18 1206 1006 RW (Internal) Firmware calibration programming toggle Expert
19 1207 1007 RW Enable DirectSwitch on DI 3.1 Advanced
20 1208 1008 RW Enable DirectSwitch on DI 3.2 Advanced
21 1209 1009 RW Enable DirectSwitch on DI 3.3 Advanced
22 1210 1010 RW Enable DirectSwitch on DI 3.4 Advanced
23 1211 1011 RW Enable DirectSwitch on DI 3.5 Advanced
24 1212 1012 RW Invert DirectSwitch Polarity on DI 3.1 Advanced
25 1213 1013 RW Invert DirectSwitch Polarity on DI 3.2 Advanced
26 1214 1014 RW Invert DirectSwitch Polarity on DI 3.3 Advanced
27 1215 1015 RW Invert DirectSwitch Polarity on DI 3.4 Advanced
28 1216 1016 RW Invert DirectSwitch Polarity on DI 3.5 Advanced
29 1217 1017 RW Enable DirectSwitch Toggle Mode on DI 3.1 Advanced
30 1218 1018 RW Enable DirectSwitch Toggle Mode on DI 3.2 Advanced
31 1219 1019 RW Enable DirectSwitch Toggle Mode on DI 3.3 Advanced
32 1220 1020 RW Enable DirectSwitch Toggle Mode on DI 3.4 Advanced
33 1221 1021 RW Enable DirectSwitch Toggle Mode on DI 3.5 Advanced

View File

@ -0,0 +1,97 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
1,1,1,RW,MixedBits,Digital Output 1.1,0,Basic
1,1,1,RW,MixedBits,Digital Output 1.2,1,Basic
1,1,1,RW,MixedBits,Digital Output 1.3,2,Basic
1,1,1,RW,MixedBits,Digital Output 1.4,3,Basic
2,2,1,RW,Word,Analog Output (raw value) 1.1,,Obsolete
3,3,1,R,Word,Analog Input (raw value) 1.1,,Obsolete
4,4,1,R,Word,Analog Input/Output (raw value) 1.1,,Obsolete
5,5,1,R,Word,VRefInt of MCU,,Expert
6,6,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
7,7,1,R,Word,Length of RS485 TX Queue 1.1,,Obsolete
8,8,2,RW,DWord,Counter of Digital Input 1.1,,Basic
10,10,2,RW,DWord,Counter of Digital Input 1.2,,Basic
12,12,2,RW,DWord,Counter of Digital Input 1.3,,Basic
14,14,2,RW,DWord,Counter of Digital Input 1.4,,Basic
16,16,1,RW,Word,PWM Duty Cycle of DO 1.1,,Basic
17,17,1,RW,Word,PWM Duty Cycle of DO 1.2,,Basic
18,18,1,RW,Word,PWM Duty Cycle of DO 1.3,,Basic
19,19,1,RW,Word,PWM Duty Cycle of DO 1.4,,Basic
20,20,1,RW,MixedBits,User LED 1.1,0,Basic
20,20,1,RW,MixedBits,User LED 1.2,1,Basic
20,20,1,RW,MixedBits,User LED 1.3,2,Basic
20,20,1,RW,MixedBits,User LED 1.4,3,Basic
21,21,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1017,1017,1,RW,Word,PWM Group prescaler,,Basic
1018,1018,1,RW,Word,PWM Group cycle length,,Basic
1019,1019,1,RW,Word,Analog Output Configuration(U/I/R-measure) 1.1,,Basic
1020,1020,1,RW,Word,Analog Output Voltage deviation 1.1,,Expert
1021,1021,1,RW,Word,Analog Output Voltage offset 1.1,,Expert
1022,1022,1,RW,Word,Analog Output Current deviation 1.1,,Expert
1023,1023,1,RW,Word,Analog Output Current offset 1.1,,Expert
1024,1024,1,RW,Word,Analog Input Configuration(U/I) 1.1,,Basic
1025,1025,1,RW,Word,Analog Input Voltage deviation 1.1,,Expert
1026,1026,1,RW,Word,Analog Input Voltage offset 1.1,,Expert
1027,1027,1,RW,Word,Analog Input Current deviation 1.1,,Expert
1028,1028,1,RW,Word,Analog Input Current offset 1.1,,Expert
1029,1029,1,RW,Word,Analog Input/Output Voltage deviation (input side) 1.1,,Expert
1030,1030,1,RW,Word,Analog Input/Output Voltage offset (input side) 1.1,,Expert
1031,1031,1,RW,MixedBits,RS485 Configuration 1.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
3000,3000,2,RW,Real,Analog Output value 1.1,,Basic
3002,3002,2,R,Real,Analog Input value 1.1,,Basic
3004,3004,2,R,Real,(Internal) Analog Output measured voltage value 1.1,,Expert
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 1 1 1 RW MixedBits Digital Output 1.1 0 Basic
7 1 1 1 RW MixedBits Digital Output 1.2 1 Basic
8 1 1 1 RW MixedBits Digital Output 1.3 2 Basic
9 1 1 1 RW MixedBits Digital Output 1.4 3 Basic
10 2 2 1 RW Word Analog Output (raw value) 1.1 Obsolete
11 3 3 1 R Word Analog Input (raw value) 1.1 Obsolete
12 4 4 1 R Word Analog Input/Output (raw value) 1.1 Obsolete
13 5 5 1 R Word VRefInt of MCU Expert
14 6 6 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
15 7 7 1 R Word Length of RS485 TX Queue 1.1 Obsolete
16 8 8 2 RW DWord Counter of Digital Input 1.1 Basic
17 10 10 2 RW DWord Counter of Digital Input 1.2 Basic
18 12 12 2 RW DWord Counter of Digital Input 1.3 Basic
19 14 14 2 RW DWord Counter of Digital Input 1.4 Basic
20 16 16 1 RW Word PWM Duty Cycle of DO 1.1 Basic
21 17 17 1 RW Word PWM Duty Cycle of DO 1.2 Basic
22 18 18 1 RW Word PWM Duty Cycle of DO 1.3 Basic
23 19 19 1 RW Word PWM Duty Cycle of DO 1.4 Basic
24 20 20 1 RW MixedBits User LED 1.1 0 Basic
25 20 20 1 RW MixedBits User LED 1.2 1 Basic
26 20 20 1 RW MixedBits User LED 1.3 2 Basic
27 20 20 1 RW MixedBits User LED 1.4 3 Basic
28 21 21 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
29 21 21 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
30 21 21 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
31 21 21 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
32 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
33 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
34 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
35 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
36 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
37 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
38 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
39 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
40 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
41 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
42 505 505 1 W Word Reserved - Do Not Use Reserved
43 506 506 1 W Word Reserved - Do Not Use Reserved
44 507 507 1 W Word Reserved - Do Not Use Reserved
45 508 508 1 W Word Reserved - Do Not Use Reserved
46 509 509 1 W Word Reserved - Do Not Use Reserved
47 510 1 RW Word (Internal) Stored Firmware Version Expert
48 511 1 RW Word (Internal) Stored Firmware Revision Expert
49 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
50 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
51 514 1 RW Word (Internal) Stored PCB Revision Expert
52 515 1 RW Word (Internal) Stored PCB Serial Number Expert
53 516 1 RW Word (Internal) Stored HW Revision Number Expert
54 1000 1000 1 R Word Firmware Version Expert
55 1001 1001 1 R Word Number of I/Os Advanced
56 1002 1002 1 R Word Number of peripherals Advanced
57 1003 1003 1 R Word Firmware ID Expert
58 1004 1004 1 R Word Hardware ID Expert
59 1005 1005 2 R DWord PCB Serial Number Expert
60 1007 1007 1 RW Word Interrupt Mask Expert
61 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
62 1009 1009 1 R Word VRef of MCU Expert
63 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
64 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
65 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
66 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
67 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
68 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
69 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
70 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
71 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
72 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
73 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
74 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
75 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
76 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
77 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
78 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
79 1017 1017 1 RW Word PWM Group prescaler Basic
80 1018 1018 1 RW Word PWM Group cycle length Basic
81 1019 1019 1 RW Word Analog Output Configuration(U/I/R-measure) 1.1 Basic
82 1020 1020 1 RW Word Analog Output Voltage deviation 1.1 Expert
83 1021 1021 1 RW Word Analog Output Voltage offset 1.1 Expert
84 1022 1022 1 RW Word Analog Output Current deviation 1.1 Expert
85 1023 1023 1 RW Word Analog Output Current offset 1.1 Expert
86 1024 1024 1 RW Word Analog Input Configuration(U/I) 1.1 Basic
87 1025 1025 1 RW Word Analog Input Voltage deviation 1.1 Expert
88 1026 1026 1 RW Word Analog Input Voltage offset 1.1 Expert
89 1027 1027 1 RW Word Analog Input Current deviation 1.1 Expert
90 1028 1028 1 RW Word Analog Input Current offset 1.1 Expert
91 1029 1029 1 RW Word Analog Input/Output Voltage deviation (input side) 1.1 Expert
92 1030 1030 1 RW Word Analog Input/Output Voltage offset (input side) 1.1 Expert
93 1031 1031 1 RW MixedBits RS485 Configuration 1.1 Obsolete
94 2000 220 W Word Reserved - Do Not Use Reserved
95 3000 3000 2 RW Real Analog Output value 1.1 Basic
96 3002 3002 2 R Real Analog Input value 1.1 Basic
97 3004 3004 2 R Real (Internal) Analog Output measured voltage value 1.1 Expert

View File

@ -0,0 +1,92 @@
Via Unit 0,Via Unit 2,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
100,0,1,R,MixedBits,Digital Input 2.1,0,Basic
100,0,1,R,MixedBits,Digital Input 2.2,1,Basic
100,0,1,R,MixedBits,Digital Input 2.3,2,Basic
100,0,1,R,MixedBits,Digital Input 2.4,3,Basic
100,0,1,R,MixedBits,Digital Input 2.5,4,Basic
100,0,1,R,MixedBits,Digital Input 2.6,5,Basic
101,1,1,RW,MixedBits,Relay Output 2.1,0,Basic
101,1,1,RW,MixedBits,Relay Output 2.2,1,Basic
101,1,1,RW,MixedBits,Relay Output 2.3,2,Basic
101,1,1,RW,MixedBits,Relay Output 2.4,3,Basic
101,1,1,RW,MixedBits,Relay Output 2.5,4,Basic
102,2,1,RW,Word,Analog Output Value 2.1 (0..4000 ~ 0..10V),,Basic
103,3,1,RW,Word,Analog Output Value 2.2 (0..4000 ~ 0..10V),,Basic
104,4,1,RW,Word,Analog Output Value 2.3 (0..4000 ~ 0..10V),,Basic
105,5,1,RW,Word,Analog Output Value 2.4 (0..4000 ~ 0..10V),,Basic
106,6,2,R,Real,Analog Input Value 2.1,,Basic
108,8,2,R,Real,Analog Input Value 2.2,,Basic
110,10,2,R,Real,Analog Input Value 2.3,,Basic
112,12,2,R,Real,Analog Input Value 2.4,,Basic
114,14,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
115,15,1,R,Word,Length of RS485 TX Queue 2.1,,Obsolete
116,16,2,RW,DWord,Counter of Digital Input 2.1,,Basic
118,18,2,RW,DWord,Counter of Digital Input 2.2,,Basic
120,20,2,RW,DWord,Counter of Digital Input 2.3,,Basic
122,22,2,RW,DWord,Counter of Digital Input 2.4,,Basic
124,24,2,RW,DWord,Counter of Digital Input 2.5,,Basic
126,26,2,RW,DWord,Counter of Digital Input 2.6,,Basic
128,28,1,RW,MixedBits,Synchronised DO/RO 2.1,0,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.2,1,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.3,2,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.4,3,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.5,4,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.1,0,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.2,1,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.3,2,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.4,3,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.5,4,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 2.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 2.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 2.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 2.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 2.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 2.1,,Basic
605,505,1,W,Word,Reserved - Do Not Use,,Reserved
606,506,1,W,Word,Reserved - Do Not Use,,Reserved
607,507,1,W,Word,Reserved - Do Not Use,,Reserved
608,508,1,W,Word,Reserved - Do Not Use,,Reserved
609,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1100,1000,1,R,Word,Firmware Version,,Expert
1101,1001,1,R,Word,Number of I/Os,,Advanced
1102,1002,1,R,Word,Number of peripherals,,Advanced
1103,1003,1,R,Word,Firmware ID,,Expert
1104,1004,1,R,Word,Hardware ID,,Expert
1105,1005,2,R,DWord,PCB Serial Number,,Expert
1107,1007,1,RW,Word,Interrupt Mask,,Expert
1108,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1109,1009,1,R,Word,VRef of MCU,,Expert
1110,1010,1,RW,Word,Debounce time (in 100us) for DI 2.1,,Advanced
1111,1011,1,RW,Word,Debounce time (in 100us) for DI 2.2,,Advanced
1112,1012,1,RW,Word,Debounce time (in 100us) for DI 2.3,,Advanced
1113,1013,1,RW,Word,Debounce time (in 100us) for DI 2.4,,Advanced
1114,1014,1,RW,Word,Debounce time (in 100us) for DI 2.5,,Advanced
1115,1015,1,RW,Word,Debounce time (in 100us) for DI 2.6,,Advanced
1116,1016,1,RW,MixedBits,Enable DirectSwitch on DI 2.1,0,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch on DI 2.2,1,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch on DI 2.3,2,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch on DI 2.4,3,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch on DI 2.5,4,Basic
1117,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.1,0,Basic
1117,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.2,1,Basic
1117,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.3,2,Basic
1117,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.4,3,Basic
1117,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.5,4,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.1,0,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.2,1,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.3,2,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.4,3,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.5,4,Basic
1119,1019,1,RW,Word,Analog Input Configuration(U/I/R) 2.1,,Basic
1120,1020,1,RW,Word,Analog Input Configuration(U/I/R) 2.2,,Basic
1121,1021,1,RW,Word,Analog Input Configuration(U/I/R) 2.3,,Basic
1122,1022,1,RW,Word,Analog Input Configuration(U/I/R) 2.4,,Basic
1123,1023,1,RW,MixedBits,RS485 Configuration 2.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 2 Register Count R/W Data Type Content Start Bit Nr. Category
2 100 0 1 R MixedBits Digital Input 2.1 0 Basic
3 100 0 1 R MixedBits Digital Input 2.2 1 Basic
4 100 0 1 R MixedBits Digital Input 2.3 2 Basic
5 100 0 1 R MixedBits Digital Input 2.4 3 Basic
6 100 0 1 R MixedBits Digital Input 2.5 4 Basic
7 100 0 1 R MixedBits Digital Input 2.6 5 Basic
8 101 1 1 RW MixedBits Relay Output 2.1 0 Basic
9 101 1 1 RW MixedBits Relay Output 2.2 1 Basic
10 101 1 1 RW MixedBits Relay Output 2.3 2 Basic
11 101 1 1 RW MixedBits Relay Output 2.4 3 Basic
12 101 1 1 RW MixedBits Relay Output 2.5 4 Basic
13 102 2 1 RW Word Analog Output Value 2.1 (0..4000 ~ 0..10V) Basic
14 103 3 1 RW Word Analog Output Value 2.2 (0..4000 ~ 0..10V) Basic
15 104 4 1 RW Word Analog Output Value 2.3 (0..4000 ~ 0..10V) Basic
16 105 5 1 RW Word Analog Output Value 2.4 (0..4000 ~ 0..10V) Basic
17 106 6 2 R Real Analog Input Value 2.1 Basic
18 108 8 2 R Real Analog Input Value 2.2 Basic
19 110 10 2 R Real Analog Input Value 2.3 Basic
20 112 12 2 R Real Analog Input Value 2.4 Basic
21 114 14 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
22 115 15 1 R Word Length of RS485 TX Queue 2.1 Obsolete
23 116 16 2 RW DWord Counter of Digital Input 2.1 Basic
24 118 18 2 RW DWord Counter of Digital Input 2.2 Basic
25 120 20 2 RW DWord Counter of Digital Input 2.3 Basic
26 122 22 2 RW DWord Counter of Digital Input 2.4 Basic
27 124 24 2 RW DWord Counter of Digital Input 2.5 Basic
28 126 26 2 RW DWord Counter of Digital Input 2.6 Basic
29 128 28 1 RW MixedBits Synchronised DO/RO 2.1 0 Advanced
30 128 28 1 RW MixedBits Synchronised DO/RO 2.2 1 Advanced
31 128 28 1 RW MixedBits Synchronised DO/RO 2.3 2 Advanced
32 128 28 1 RW MixedBits Synchronised DO/RO 2.4 3 Advanced
33 128 28 1 RW MixedBits Synchronised DO/RO 2.5 4 Advanced
34 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.1 0 Advanced
35 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.2 1 Advanced
36 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.3 2 Advanced
37 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.4 3 Advanced
38 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.5 4 Advanced
39 100 2 RW DWord (Internal) RS485 Full Mode Configuration 2.1 Obsolete
40 500 1 RW Word RS485 TERMIOS CFlags 2.1 Expert
41 501 1 RW Word RS485 TERMIOS LFlags 2.1 Expert
42 502 1 RW Word RS485 TERMIOS IFlags 2.1 Expert
43 503 1 RW Word RS485 TERMIOS LDisc 2.1 Expert
44 504 1 RW Word RS485 ModBus Timeout 2.1 Basic
45 605 505 1 W Word Reserved - Do Not Use Reserved
46 606 506 1 W Word Reserved - Do Not Use Reserved
47 607 507 1 W Word Reserved - Do Not Use Reserved
48 608 508 1 W Word Reserved - Do Not Use Reserved
49 609 509 1 W Word Reserved - Do Not Use Reserved
50 510 1 RW Word (Internal) Stored Firmware Version Expert
51 511 1 RW Word (Internal) Stored Firmware Revision Expert
52 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
53 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
54 514 1 RW Word (Internal) Stored PCB Revision Expert
55 515 1 RW Word (Internal) Stored PCB Serial Number Expert
56 516 1 RW Word (Internal) Stored HW Revision Number Expert
57 1100 1000 1 R Word Firmware Version Expert
58 1101 1001 1 R Word Number of I/Os Advanced
59 1102 1002 1 R Word Number of peripherals Advanced
60 1103 1003 1 R Word Firmware ID Expert
61 1104 1004 1 R Word Hardware ID Expert
62 1105 1005 2 R DWord PCB Serial Number Expert
63 1107 1007 1 RW Word Interrupt Mask Expert
64 1108 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
65 1109 1009 1 R Word VRef of MCU Expert
66 1110 1010 1 RW Word Debounce time (in 100us) for DI 2.1 Advanced
67 1111 1011 1 RW Word Debounce time (in 100us) for DI 2.2 Advanced
68 1112 1012 1 RW Word Debounce time (in 100us) for DI 2.3 Advanced
69 1113 1013 1 RW Word Debounce time (in 100us) for DI 2.4 Advanced
70 1114 1014 1 RW Word Debounce time (in 100us) for DI 2.5 Advanced
71 1115 1015 1 RW Word Debounce time (in 100us) for DI 2.6 Advanced
72 1116 1016 1 RW MixedBits Enable DirectSwitch on DI 2.1 0 Basic
73 1116 1016 1 RW MixedBits Enable DirectSwitch on DI 2.2 1 Basic
74 1116 1016 1 RW MixedBits Enable DirectSwitch on DI 2.3 2 Basic
75 1116 1016 1 RW MixedBits Enable DirectSwitch on DI 2.4 3 Basic
76 1116 1016 1 RW MixedBits Enable DirectSwitch on DI 2.5 4 Basic
77 1117 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.1 0 Basic
78 1117 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.2 1 Basic
79 1117 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.3 2 Basic
80 1117 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.4 3 Basic
81 1117 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.5 4 Basic
82 1118 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.1 0 Basic
83 1118 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.2 1 Basic
84 1118 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.3 2 Basic
85 1118 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.4 3 Basic
86 1118 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.5 4 Basic
87 1119 1019 1 RW Word Analog Input Configuration(U/I/R) 2.1 Basic
88 1120 1020 1 RW Word Analog Input Configuration(U/I/R) 2.2 Basic
89 1121 1021 1 RW Word Analog Input Configuration(U/I/R) 2.3 Basic
90 1122 1022 1 RW Word Analog Input Configuration(U/I/R) 2.4 Basic
91 1123 1023 1 RW MixedBits RS485 Configuration 2.1 Obsolete
92 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,92 @@
Via Unit 0,Via Unit 3,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
200,0,1,R,MixedBits,Digital Input 3.1,0,Basic
200,0,1,R,MixedBits,Digital Input 3.2,1,Basic
200,0,1,R,MixedBits,Digital Input 3.3,2,Basic
200,0,1,R,MixedBits,Digital Input 3.4,3,Basic
200,0,1,R,MixedBits,Digital Input 3.5,4,Basic
200,0,1,R,MixedBits,Digital Input 3.6,5,Basic
201,1,1,RW,MixedBits,Relay Output 3.1,0,Basic
201,1,1,RW,MixedBits,Relay Output 3.2,1,Basic
201,1,1,RW,MixedBits,Relay Output 3.3,2,Basic
201,1,1,RW,MixedBits,Relay Output 3.4,3,Basic
201,1,1,RW,MixedBits,Relay Output 3.5,4,Basic
202,2,1,RW,Word,Analog Output Value 3.1 (0..4000 ~ 0..10V),,Basic
203,3,1,RW,Word,Analog Output Value 3.2 (0..4000 ~ 0..10V),,Basic
204,4,1,RW,Word,Analog Output Value 3.3 (0..4000 ~ 0..10V),,Basic
205,5,1,RW,Word,Analog Output Value 3.4 (0..4000 ~ 0..10V),,Basic
206,6,2,R,Real,Analog Input Value 3.1,,Basic
208,8,2,R,Real,Analog Input Value 3.2,,Basic
210,10,2,R,Real,Analog Input Value 3.3,,Basic
212,12,2,R,Real,Analog Input Value 3.4,,Basic
214,14,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
215,15,1,R,Word,Length of RS485 TX Queue 3.1,,Obsolete
216,16,2,RW,DWord,Counter of Digital Input 3.1,,Basic
218,18,2,RW,DWord,Counter of Digital Input 3.2,,Basic
220,20,2,RW,DWord,Counter of Digital Input 3.3,,Basic
222,22,2,RW,DWord,Counter of Digital Input 3.4,,Basic
224,24,2,RW,DWord,Counter of Digital Input 3.5,,Basic
226,26,2,RW,DWord,Counter of Digital Input 3.6,,Basic
228,28,1,RW,MixedBits,Synchronised DO/RO 3.1,0,Advanced
228,28,1,RW,MixedBits,Synchronised DO/RO 3.2,1,Advanced
228,28,1,RW,MixedBits,Synchronised DO/RO 3.3,2,Advanced
228,28,1,RW,MixedBits,Synchronised DO/RO 3.4,3,Advanced
228,28,1,RW,MixedBits,Synchronised DO/RO 3.5,4,Advanced
229,29,1,RW,MixedBits,Synchronised DO/RO Lock 3.1,0,Advanced
229,29,1,RW,MixedBits,Synchronised DO/RO Lock 3.2,1,Advanced
229,29,1,RW,MixedBits,Synchronised DO/RO Lock 3.3,2,Advanced
229,29,1,RW,MixedBits,Synchronised DO/RO Lock 3.4,3,Advanced
229,29,1,RW,MixedBits,Synchronised DO/RO Lock 3.5,4,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 3.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 3.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 3.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 3.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 3.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 3.1,,Basic
705,505,1,W,Word,Reserved - Do Not Use,,Reserved
706,506,1,W,Word,Reserved - Do Not Use,,Reserved
707,507,1,W,Word,Reserved - Do Not Use,,Reserved
708,508,1,W,Word,Reserved - Do Not Use,,Reserved
709,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1200,1000,1,R,Word,Firmware Version,,Expert
1201,1001,1,R,Word,Number of I/Os,,Advanced
1202,1002,1,R,Word,Number of peripherals,,Advanced
1203,1003,1,R,Word,Firmware ID,,Expert
1204,1004,1,R,Word,Hardware ID,,Expert
1205,1005,2,R,DWord,PCB Serial Number,,Expert
1207,1007,1,RW,Word,Interrupt Mask,,Expert
1208,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1209,1009,1,R,Word,VRef of MCU,,Expert
1210,1010,1,RW,Word,Debounce time (in 100us) for DI 3.1,,Advanced
1211,1011,1,RW,Word,Debounce time (in 100us) for DI 3.2,,Advanced
1212,1012,1,RW,Word,Debounce time (in 100us) for DI 3.3,,Advanced
1213,1013,1,RW,Word,Debounce time (in 100us) for DI 3.4,,Advanced
1214,1014,1,RW,Word,Debounce time (in 100us) for DI 3.5,,Advanced
1215,1015,1,RW,Word,Debounce time (in 100us) for DI 3.6,,Advanced
1216,1016,1,RW,MixedBits,Enable DirectSwitch on DI 3.1,0,Basic
1216,1016,1,RW,MixedBits,Enable DirectSwitch on DI 3.2,1,Basic
1216,1016,1,RW,MixedBits,Enable DirectSwitch on DI 3.3,2,Basic
1216,1016,1,RW,MixedBits,Enable DirectSwitch on DI 3.4,3,Basic
1216,1016,1,RW,MixedBits,Enable DirectSwitch on DI 3.5,4,Basic
1217,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.1,0,Basic
1217,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.2,1,Basic
1217,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.3,2,Basic
1217,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.4,3,Basic
1217,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.5,4,Basic
1218,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.1,0,Basic
1218,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.2,1,Basic
1218,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.3,2,Basic
1218,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.4,3,Basic
1218,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.5,4,Basic
1219,1019,1,RW,Word,Analog Input Configuration(U/I/R) 3.1,,Basic
1220,1020,1,RW,Word,Analog Input Configuration(U/I/R) 3.2,,Basic
1221,1021,1,RW,Word,Analog Input Configuration(U/I/R) 3.3,,Basic
1222,1022,1,RW,Word,Analog Input Configuration(U/I/R) 3.4,,Basic
1223,1023,1,RW,MixedBits,RS485 Configuration 3.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 3 Register Count R/W Data Type Content Start Bit Nr. Category
2 200 0 1 R MixedBits Digital Input 3.1 0 Basic
3 200 0 1 R MixedBits Digital Input 3.2 1 Basic
4 200 0 1 R MixedBits Digital Input 3.3 2 Basic
5 200 0 1 R MixedBits Digital Input 3.4 3 Basic
6 200 0 1 R MixedBits Digital Input 3.5 4 Basic
7 200 0 1 R MixedBits Digital Input 3.6 5 Basic
8 201 1 1 RW MixedBits Relay Output 3.1 0 Basic
9 201 1 1 RW MixedBits Relay Output 3.2 1 Basic
10 201 1 1 RW MixedBits Relay Output 3.3 2 Basic
11 201 1 1 RW MixedBits Relay Output 3.4 3 Basic
12 201 1 1 RW MixedBits Relay Output 3.5 4 Basic
13 202 2 1 RW Word Analog Output Value 3.1 (0..4000 ~ 0..10V) Basic
14 203 3 1 RW Word Analog Output Value 3.2 (0..4000 ~ 0..10V) Basic
15 204 4 1 RW Word Analog Output Value 3.3 (0..4000 ~ 0..10V) Basic
16 205 5 1 RW Word Analog Output Value 3.4 (0..4000 ~ 0..10V) Basic
17 206 6 2 R Real Analog Input Value 3.1 Basic
18 208 8 2 R Real Analog Input Value 3.2 Basic
19 210 10 2 R Real Analog Input Value 3.3 Basic
20 212 12 2 R Real Analog Input Value 3.4 Basic
21 214 14 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
22 215 15 1 R Word Length of RS485 TX Queue 3.1 Obsolete
23 216 16 2 RW DWord Counter of Digital Input 3.1 Basic
24 218 18 2 RW DWord Counter of Digital Input 3.2 Basic
25 220 20 2 RW DWord Counter of Digital Input 3.3 Basic
26 222 22 2 RW DWord Counter of Digital Input 3.4 Basic
27 224 24 2 RW DWord Counter of Digital Input 3.5 Basic
28 226 26 2 RW DWord Counter of Digital Input 3.6 Basic
29 228 28 1 RW MixedBits Synchronised DO/RO 3.1 0 Advanced
30 228 28 1 RW MixedBits Synchronised DO/RO 3.2 1 Advanced
31 228 28 1 RW MixedBits Synchronised DO/RO 3.3 2 Advanced
32 228 28 1 RW MixedBits Synchronised DO/RO 3.4 3 Advanced
33 228 28 1 RW MixedBits Synchronised DO/RO 3.5 4 Advanced
34 229 29 1 RW MixedBits Synchronised DO/RO Lock 3.1 0 Advanced
35 229 29 1 RW MixedBits Synchronised DO/RO Lock 3.2 1 Advanced
36 229 29 1 RW MixedBits Synchronised DO/RO Lock 3.3 2 Advanced
37 229 29 1 RW MixedBits Synchronised DO/RO Lock 3.4 3 Advanced
38 229 29 1 RW MixedBits Synchronised DO/RO Lock 3.5 4 Advanced
39 100 2 RW DWord (Internal) RS485 Full Mode Configuration 3.1 Obsolete
40 500 1 RW Word RS485 TERMIOS CFlags 3.1 Expert
41 501 1 RW Word RS485 TERMIOS LFlags 3.1 Expert
42 502 1 RW Word RS485 TERMIOS IFlags 3.1 Expert
43 503 1 RW Word RS485 TERMIOS LDisc 3.1 Expert
44 504 1 RW Word RS485 ModBus Timeout 3.1 Basic
45 705 505 1 W Word Reserved - Do Not Use Reserved
46 706 506 1 W Word Reserved - Do Not Use Reserved
47 707 507 1 W Word Reserved - Do Not Use Reserved
48 708 508 1 W Word Reserved - Do Not Use Reserved
49 709 509 1 W Word Reserved - Do Not Use Reserved
50 510 1 RW Word (Internal) Stored Firmware Version Expert
51 511 1 RW Word (Internal) Stored Firmware Revision Expert
52 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
53 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
54 514 1 RW Word (Internal) Stored PCB Revision Expert
55 515 1 RW Word (Internal) Stored PCB Serial Number Expert
56 516 1 RW Word (Internal) Stored HW Revision Number Expert
57 1200 1000 1 R Word Firmware Version Expert
58 1201 1001 1 R Word Number of I/Os Advanced
59 1202 1002 1 R Word Number of peripherals Advanced
60 1203 1003 1 R Word Firmware ID Expert
61 1204 1004 1 R Word Hardware ID Expert
62 1205 1005 2 R DWord PCB Serial Number Expert
63 1207 1007 1 RW Word Interrupt Mask Expert
64 1208 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
65 1209 1009 1 R Word VRef of MCU Expert
66 1210 1010 1 RW Word Debounce time (in 100us) for DI 3.1 Advanced
67 1211 1011 1 RW Word Debounce time (in 100us) for DI 3.2 Advanced
68 1212 1012 1 RW Word Debounce time (in 100us) for DI 3.3 Advanced
69 1213 1013 1 RW Word Debounce time (in 100us) for DI 3.4 Advanced
70 1214 1014 1 RW Word Debounce time (in 100us) for DI 3.5 Advanced
71 1215 1015 1 RW Word Debounce time (in 100us) for DI 3.6 Advanced
72 1216 1016 1 RW MixedBits Enable DirectSwitch on DI 3.1 0 Basic
73 1216 1016 1 RW MixedBits Enable DirectSwitch on DI 3.2 1 Basic
74 1216 1016 1 RW MixedBits Enable DirectSwitch on DI 3.3 2 Basic
75 1216 1016 1 RW MixedBits Enable DirectSwitch on DI 3.4 3 Basic
76 1216 1016 1 RW MixedBits Enable DirectSwitch on DI 3.5 4 Basic
77 1217 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.1 0 Basic
78 1217 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.2 1 Basic
79 1217 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.3 2 Basic
80 1217 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.4 3 Basic
81 1217 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.5 4 Basic
82 1218 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.1 0 Basic
83 1218 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.2 1 Basic
84 1218 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.3 2 Basic
85 1218 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.4 3 Basic
86 1218 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.5 4 Basic
87 1219 1019 1 RW Word Analog Input Configuration(U/I/R) 3.1 Basic
88 1220 1020 1 RW Word Analog Input Configuration(U/I/R) 3.2 Basic
89 1221 1021 1 RW Word Analog Input Configuration(U/I/R) 3.3 Basic
90 1222 1022 1 RW Word Analog Input Configuration(U/I/R) 3.4 Basic
91 1223 1023 1 RW MixedBits RS485 Configuration 3.1 Obsolete
92 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,32 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Digital Output 1.1,Basic
1,1,RW,Digital Output 1.2,Basic
2,2,RW,Digital Output 1.3,Basic
3,3,RW,Digital Output 1.4,Basic
4,4,R,Digital Input 1.1,Basic
5,5,R,Digital Input 1.2,Basic
6,6,R,Digital Input 1.3,Basic
7,7,R,Digital Input 1.4,Basic
8,8,RW,User Programmable LED 1.1,Basic
9,9,RW,User Programmable LED 1.2,Basic
10,10,RW,User Programmable LED 1.3,Basic
11,11,RW,User Programmable LED 1.4,Basic
1000,1000,RW,MWD reset indication,Advanced
1001,1001,RW,Enable/Disable 1Wire Bus,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1012,1012,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1013,1013,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1014,1014,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1015,1015,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1016,1016,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1017,1017,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1018,1018,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Digital Output 1.1 Basic
3 1 1 RW Digital Output 1.2 Basic
4 2 2 RW Digital Output 1.3 Basic
5 3 3 RW Digital Output 1.4 Basic
6 4 4 R Digital Input 1.1 Basic
7 5 5 R Digital Input 1.2 Basic
8 6 6 R Digital Input 1.3 Basic
9 7 7 R Digital Input 1.4 Basic
10 8 8 RW User Programmable LED 1.1 Basic
11 9 9 RW User Programmable LED 1.2 Basic
12 10 10 RW User Programmable LED 1.3 Basic
13 11 11 RW User Programmable LED 1.4 Basic
14 1000 1000 RW MWD reset indication Advanced
15 1001 1001 RW Enable/Disable 1Wire Bus Advanced
16 1002 1002 R Reset group MCU Advanced
17 1003 1003 RW Save current configuration and use on startup Advanced
18 1004 1004 RW (Internal) Firmware programming toggle Expert
19 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
20 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
21 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
22 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
23 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
24 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
25 1011 1011 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
26 1012 1012 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
27 1013 1013 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
28 1014 1014 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
29 1015 1015 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
30 1016 1016 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
31 1017 1017 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
32 1018 1018 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced

View File

@ -0,0 +1,28 @@
Via Unit 0,Via Unit 2,R/W,Content,Category
100,0,RW,Relay Output 2.1,Basic
101,1,RW,Relay Output 2.2,Basic
102,2,RW,Relay Output 2.3,Basic
103,3,RW,Relay Output 2.4,Basic
104,4,RW,Relay Output 2.5,Basic
105,5,R,Digital Input 2.1,Basic
106,6,R,Digital Input 2.2,Basic
107,7,R,Digital Input 2.3,Basic
108,8,R,Digital Input 2.4,Basic
1100,1000,RW,MWD reset indication,Advanced
1102,1002,R,Reset group MCU,Advanced
1103,1003,RW,Save current configuration and use on startup,Advanced
1104,1004,RW,(Internal) Firmware programming toggle,Expert
1105,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1106,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1107,1007,RW,Enable DirectSwitch on DI 2.1,Advanced
1108,1008,RW,Enable DirectSwitch on DI 2.2,Advanced
1109,1009,RW,Enable DirectSwitch on DI 2.3,Advanced
1110,1010,RW,Enable DirectSwitch on DI 2.4,Advanced
1111,1011,RW,Invert DirectSwitch Polarity on DI 2.1,Advanced
1112,1012,RW,Invert DirectSwitch Polarity on DI 2.2,Advanced
1113,1013,RW,Invert DirectSwitch Polarity on DI 2.3,Advanced
1114,1014,RW,Invert DirectSwitch Polarity on DI 2.4,Advanced
1115,1015,RW,Enable DirectSwitch Toggle Mode on DI 2.1,Advanced
1116,1016,RW,Enable DirectSwitch Toggle Mode on DI 2.2,Advanced
1117,1017,RW,Enable DirectSwitch Toggle Mode on DI 2.3,Advanced
1118,1018,RW,Enable DirectSwitch Toggle Mode on DI 2.4,Advanced
1 Via Unit 0 Via Unit 2 R/W Content Category
2 100 0 RW Relay Output 2.1 Basic
3 101 1 RW Relay Output 2.2 Basic
4 102 2 RW Relay Output 2.3 Basic
5 103 3 RW Relay Output 2.4 Basic
6 104 4 RW Relay Output 2.5 Basic
7 105 5 R Digital Input 2.1 Basic
8 106 6 R Digital Input 2.2 Basic
9 107 7 R Digital Input 2.3 Basic
10 108 8 R Digital Input 2.4 Basic
11 1100 1000 RW MWD reset indication Advanced
12 1102 1002 R Reset group MCU Advanced
13 1103 1003 RW Save current configuration and use on startup Advanced
14 1104 1004 RW (Internal) Firmware programming toggle Expert
15 1105 1005 RW (Internal) Firmware reprogramming toggle Expert
16 1106 1006 RW (Internal) Firmware calibration programming toggle Expert
17 1107 1007 RW Enable DirectSwitch on DI 2.1 Advanced
18 1108 1008 RW Enable DirectSwitch on DI 2.2 Advanced
19 1109 1009 RW Enable DirectSwitch on DI 2.3 Advanced
20 1110 1010 RW Enable DirectSwitch on DI 2.4 Advanced
21 1111 1011 RW Invert DirectSwitch Polarity on DI 2.1 Advanced
22 1112 1012 RW Invert DirectSwitch Polarity on DI 2.2 Advanced
23 1113 1013 RW Invert DirectSwitch Polarity on DI 2.3 Advanced
24 1114 1014 RW Invert DirectSwitch Polarity on DI 2.4 Advanced
25 1115 1015 RW Enable DirectSwitch Toggle Mode on DI 2.1 Advanced
26 1116 1016 RW Enable DirectSwitch Toggle Mode on DI 2.2 Advanced
27 1117 1017 RW Enable DirectSwitch Toggle Mode on DI 2.3 Advanced
28 1118 1018 RW Enable DirectSwitch Toggle Mode on DI 2.4 Advanced

View File

@ -0,0 +1,79 @@
Via Unit 0,Via Unit 3,R/W,Content,Category
200,0,RW,Relay Output 3.1,Basic
201,1,RW,Relay Output 3.2,Basic
202,2,RW,Relay Output 3.3,Basic
203,3,RW,Relay Output 3.4,Basic
204,4,RW,Relay Output 3.5,Basic
205,5,RW,Relay Output 3.6,Basic
206,6,RW,Relay Output 3.7,Basic
207,7,RW,Relay Output 3.8,Basic
208,8,RW,Relay Output 3.9,Basic
209,9,RW,Relay Output 3.10,Basic
210,10,RW,Relay Output 3.11,Basic
211,11,RW,Relay Output 3.12,Basic
212,12,RW,Relay Output 3.13,Basic
213,13,RW,Relay Output 3.14,Basic
214,14,R,Digital Input 3.1,Basic
215,15,R,Digital Input 3.2,Basic
216,16,R,Digital Input 3.3,Basic
217,17,R,Digital Input 3.4,Basic
218,18,R,Digital Input 3.5,Basic
219,19,R,Digital Input 3.6,Basic
220,20,R,Digital Input 3.7,Basic
221,21,R,Digital Input 3.8,Basic
222,22,R,Digital Input 3.9,Basic
223,23,R,Digital Input 3.10,Basic
224,24,R,Digital Input 3.11,Basic
225,25,R,Digital Input 3.12,Basic
226,26,R,Digital Input 3.13,Basic
227,27,R,Digital Input 3.14,Basic
228,28,R,Digital Input 3.15,Basic
229,29,R,Digital Input 3.16,Basic
1200,1000,RW,MWD reset indication,Advanced
1202,1002,R,Reset group MCU,Advanced
1203,1003,RW,Save current configuration and use on startup,Advanced
1204,1004,RW,(Internal) Firmware programming toggle,Expert
1205,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1206,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1207,1007,RW,Enable DirectSwitch on DI 3.1,Advanced
1208,1008,RW,Enable DirectSwitch on DI 3.2,Advanced
1209,1009,RW,Enable DirectSwitch on DI 3.3,Advanced
1210,1010,RW,Enable DirectSwitch on DI 3.4,Advanced
1211,1011,RW,Enable DirectSwitch on DI 3.5,Advanced
1212,1012,RW,Enable DirectSwitch on DI 3.6,Advanced
1213,1013,RW,Enable DirectSwitch on DI 3.7,Advanced
1214,1014,RW,Enable DirectSwitch on DI 3.8,Advanced
1215,1015,RW,Enable DirectSwitch on DI 3.9,Advanced
1216,1016,RW,Enable DirectSwitch on DI 3.10,Advanced
1217,1017,RW,Enable DirectSwitch on DI 3.11,Advanced
1218,1018,RW,Enable DirectSwitch on DI 3.12,Advanced
1219,1019,RW,Enable DirectSwitch on DI 3.13,Advanced
1220,1020,RW,Enable DirectSwitch on DI 3.14,Advanced
1221,1021,RW,Invert DirectSwitch Polarity on DI 3.1,Advanced
1222,1022,RW,Invert DirectSwitch Polarity on DI 3.2,Advanced
1223,1023,RW,Invert DirectSwitch Polarity on DI 3.3,Advanced
1224,1024,RW,Invert DirectSwitch Polarity on DI 3.4,Advanced
1225,1025,RW,Invert DirectSwitch Polarity on DI 3.5,Advanced
1226,1026,RW,Invert DirectSwitch Polarity on DI 3.6,Advanced
1227,1027,RW,Invert DirectSwitch Polarity on DI 3.7,Advanced
1228,1028,RW,Invert DirectSwitch Polarity on DI 3.8,Advanced
1229,1029,RW,Invert DirectSwitch Polarity on DI 3.9,Advanced
1230,1030,RW,Invert DirectSwitch Polarity on DI 3.10,Advanced
1231,1031,RW,Invert DirectSwitch Polarity on DI 3.11,Advanced
1232,1032,RW,Invert DirectSwitch Polarity on DI 3.12,Advanced
1233,1033,RW,Invert DirectSwitch Polarity on DI 3.13,Advanced
1234,1034,RW,Invert DirectSwitch Polarity on DI 3.14,Advanced
1235,1035,RW,Enable DirectSwitch Toggle Mode on DI 3.1,Advanced
1236,1036,RW,Enable DirectSwitch Toggle Mode on DI 3.2,Advanced
1237,1037,RW,Enable DirectSwitch Toggle Mode on DI 3.3,Advanced
1238,1038,RW,Enable DirectSwitch Toggle Mode on DI 3.4,Advanced
1239,1039,RW,Enable DirectSwitch Toggle Mode on DI 3.5,Advanced
1240,1040,RW,Enable DirectSwitch Toggle Mode on DI 3.6,Advanced
1241,1041,RW,Enable DirectSwitch Toggle Mode on DI 3.7,Advanced
1242,1042,RW,Enable DirectSwitch Toggle Mode on DI 3.8,Advanced
1243,1043,RW,Enable DirectSwitch Toggle Mode on DI 3.9,Advanced
1244,1044,RW,Enable DirectSwitch Toggle Mode on DI 3.10,Advanced
1245,1045,RW,Enable DirectSwitch Toggle Mode on DI 3.11,Advanced
1246,1046,RW,Enable DirectSwitch Toggle Mode on DI 3.12,Advanced
1247,1047,RW,Enable DirectSwitch Toggle Mode on DI 3.13,Advanced
1248,1048,RW,Enable DirectSwitch Toggle Mode on DI 3.14,Advanced
1 Via Unit 0 Via Unit 3 R/W Content Category
2 200 0 RW Relay Output 3.1 Basic
3 201 1 RW Relay Output 3.2 Basic
4 202 2 RW Relay Output 3.3 Basic
5 203 3 RW Relay Output 3.4 Basic
6 204 4 RW Relay Output 3.5 Basic
7 205 5 RW Relay Output 3.6 Basic
8 206 6 RW Relay Output 3.7 Basic
9 207 7 RW Relay Output 3.8 Basic
10 208 8 RW Relay Output 3.9 Basic
11 209 9 RW Relay Output 3.10 Basic
12 210 10 RW Relay Output 3.11 Basic
13 211 11 RW Relay Output 3.12 Basic
14 212 12 RW Relay Output 3.13 Basic
15 213 13 RW Relay Output 3.14 Basic
16 214 14 R Digital Input 3.1 Basic
17 215 15 R Digital Input 3.2 Basic
18 216 16 R Digital Input 3.3 Basic
19 217 17 R Digital Input 3.4 Basic
20 218 18 R Digital Input 3.5 Basic
21 219 19 R Digital Input 3.6 Basic
22 220 20 R Digital Input 3.7 Basic
23 221 21 R Digital Input 3.8 Basic
24 222 22 R Digital Input 3.9 Basic
25 223 23 R Digital Input 3.10 Basic
26 224 24 R Digital Input 3.11 Basic
27 225 25 R Digital Input 3.12 Basic
28 226 26 R Digital Input 3.13 Basic
29 227 27 R Digital Input 3.14 Basic
30 228 28 R Digital Input 3.15 Basic
31 229 29 R Digital Input 3.16 Basic
32 1200 1000 RW MWD reset indication Advanced
33 1202 1002 R Reset group MCU Advanced
34 1203 1003 RW Save current configuration and use on startup Advanced
35 1204 1004 RW (Internal) Firmware programming toggle Expert
36 1205 1005 RW (Internal) Firmware reprogramming toggle Expert
37 1206 1006 RW (Internal) Firmware calibration programming toggle Expert
38 1207 1007 RW Enable DirectSwitch on DI 3.1 Advanced
39 1208 1008 RW Enable DirectSwitch on DI 3.2 Advanced
40 1209 1009 RW Enable DirectSwitch on DI 3.3 Advanced
41 1210 1010 RW Enable DirectSwitch on DI 3.4 Advanced
42 1211 1011 RW Enable DirectSwitch on DI 3.5 Advanced
43 1212 1012 RW Enable DirectSwitch on DI 3.6 Advanced
44 1213 1013 RW Enable DirectSwitch on DI 3.7 Advanced
45 1214 1014 RW Enable DirectSwitch on DI 3.8 Advanced
46 1215 1015 RW Enable DirectSwitch on DI 3.9 Advanced
47 1216 1016 RW Enable DirectSwitch on DI 3.10 Advanced
48 1217 1017 RW Enable DirectSwitch on DI 3.11 Advanced
49 1218 1018 RW Enable DirectSwitch on DI 3.12 Advanced
50 1219 1019 RW Enable DirectSwitch on DI 3.13 Advanced
51 1220 1020 RW Enable DirectSwitch on DI 3.14 Advanced
52 1221 1021 RW Invert DirectSwitch Polarity on DI 3.1 Advanced
53 1222 1022 RW Invert DirectSwitch Polarity on DI 3.2 Advanced
54 1223 1023 RW Invert DirectSwitch Polarity on DI 3.3 Advanced
55 1224 1024 RW Invert DirectSwitch Polarity on DI 3.4 Advanced
56 1225 1025 RW Invert DirectSwitch Polarity on DI 3.5 Advanced
57 1226 1026 RW Invert DirectSwitch Polarity on DI 3.6 Advanced
58 1227 1027 RW Invert DirectSwitch Polarity on DI 3.7 Advanced
59 1228 1028 RW Invert DirectSwitch Polarity on DI 3.8 Advanced
60 1229 1029 RW Invert DirectSwitch Polarity on DI 3.9 Advanced
61 1230 1030 RW Invert DirectSwitch Polarity on DI 3.10 Advanced
62 1231 1031 RW Invert DirectSwitch Polarity on DI 3.11 Advanced
63 1232 1032 RW Invert DirectSwitch Polarity on DI 3.12 Advanced
64 1233 1033 RW Invert DirectSwitch Polarity on DI 3.13 Advanced
65 1234 1034 RW Invert DirectSwitch Polarity on DI 3.14 Advanced
66 1235 1035 RW Enable DirectSwitch Toggle Mode on DI 3.1 Advanced
67 1236 1036 RW Enable DirectSwitch Toggle Mode on DI 3.2 Advanced
68 1237 1037 RW Enable DirectSwitch Toggle Mode on DI 3.3 Advanced
69 1238 1038 RW Enable DirectSwitch Toggle Mode on DI 3.4 Advanced
70 1239 1039 RW Enable DirectSwitch Toggle Mode on DI 3.5 Advanced
71 1240 1040 RW Enable DirectSwitch Toggle Mode on DI 3.6 Advanced
72 1241 1041 RW Enable DirectSwitch Toggle Mode on DI 3.7 Advanced
73 1242 1042 RW Enable DirectSwitch Toggle Mode on DI 3.8 Advanced
74 1243 1043 RW Enable DirectSwitch Toggle Mode on DI 3.9 Advanced
75 1244 1044 RW Enable DirectSwitch Toggle Mode on DI 3.10 Advanced
76 1245 1045 RW Enable DirectSwitch Toggle Mode on DI 3.11 Advanced
77 1246 1046 RW Enable DirectSwitch Toggle Mode on DI 3.12 Advanced
78 1247 1047 RW Enable DirectSwitch Toggle Mode on DI 3.13 Advanced
79 1248 1048 RW Enable DirectSwitch Toggle Mode on DI 3.14 Advanced

View File

@ -0,0 +1,97 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
1,1,1,RW,MixedBits,Digital Output 1.1,0,Basic
1,1,1,RW,MixedBits,Digital Output 1.2,1,Basic
1,1,1,RW,MixedBits,Digital Output 1.3,2,Basic
1,1,1,RW,MixedBits,Digital Output 1.4,3,Basic
2,2,1,RW,Word,Analog Output (raw value) 1.1,,Obsolete
3,3,1,R,Word,Analog Input (raw value) 1.1,,Obsolete
4,4,1,R,Word,Analog Input/Output (raw value) 1.1,,Obsolete
5,5,1,R,Word,VRefInt of MCU,,Expert
6,6,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
7,7,1,R,Word,Length of RS485 TX Queue 1.1,,Obsolete
8,8,2,RW,DWord,Counter of Digital Input 1.1,,Basic
10,10,2,RW,DWord,Counter of Digital Input 1.2,,Basic
12,12,2,RW,DWord,Counter of Digital Input 1.3,,Basic
14,14,2,RW,DWord,Counter of Digital Input 1.4,,Basic
16,16,1,RW,Word,PWM Duty Cycle of DO 1.1,,Basic
17,17,1,RW,Word,PWM Duty Cycle of DO 1.2,,Basic
18,18,1,RW,Word,PWM Duty Cycle of DO 1.3,,Basic
19,19,1,RW,Word,PWM Duty Cycle of DO 1.4,,Basic
20,20,1,RW,MixedBits,User LED 1.1,0,Basic
20,20,1,RW,MixedBits,User LED 1.2,1,Basic
20,20,1,RW,MixedBits,User LED 1.3,2,Basic
20,20,1,RW,MixedBits,User LED 1.4,3,Basic
21,21,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1017,1017,1,RW,Word,PWM Group prescaler,,Basic
1018,1018,1,RW,Word,PWM Group cycle length,,Basic
1019,1019,1,RW,Word,Analog Output Configuration(U/I/R-measure) 1.1,,Basic
1020,1020,1,RW,Word,Analog Output Voltage deviation 1.1,,Expert
1021,1021,1,RW,Word,Analog Output Voltage offset 1.1,,Expert
1022,1022,1,RW,Word,Analog Output Current deviation 1.1,,Expert
1023,1023,1,RW,Word,Analog Output Current offset 1.1,,Expert
1024,1024,1,RW,Word,Analog Input Configuration(U/I) 1.1,,Basic
1025,1025,1,RW,Word,Analog Input Voltage deviation 1.1,,Expert
1026,1026,1,RW,Word,Analog Input Voltage offset 1.1,,Expert
1027,1027,1,RW,Word,Analog Input Current deviation 1.1,,Expert
1028,1028,1,RW,Word,Analog Input Current offset 1.1,,Expert
1029,1029,1,RW,Word,Analog Input/Output Voltage deviation (input side) 1.1,,Expert
1030,1030,1,RW,Word,Analog Input/Output Voltage offset (input side) 1.1,,Expert
1031,1031,1,RW,MixedBits,RS485 Configuration 1.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
3000,3000,2,RW,Real,Analog Output value 1.1,,Basic
3002,3002,2,R,Real,Analog Input value 1.1,,Basic
3004,3004,2,R,Real,(Internal) Analog Output measured voltage value 1.1,,Expert
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 1 1 1 RW MixedBits Digital Output 1.1 0 Basic
7 1 1 1 RW MixedBits Digital Output 1.2 1 Basic
8 1 1 1 RW MixedBits Digital Output 1.3 2 Basic
9 1 1 1 RW MixedBits Digital Output 1.4 3 Basic
10 2 2 1 RW Word Analog Output (raw value) 1.1 Obsolete
11 3 3 1 R Word Analog Input (raw value) 1.1 Obsolete
12 4 4 1 R Word Analog Input/Output (raw value) 1.1 Obsolete
13 5 5 1 R Word VRefInt of MCU Expert
14 6 6 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
15 7 7 1 R Word Length of RS485 TX Queue 1.1 Obsolete
16 8 8 2 RW DWord Counter of Digital Input 1.1 Basic
17 10 10 2 RW DWord Counter of Digital Input 1.2 Basic
18 12 12 2 RW DWord Counter of Digital Input 1.3 Basic
19 14 14 2 RW DWord Counter of Digital Input 1.4 Basic
20 16 16 1 RW Word PWM Duty Cycle of DO 1.1 Basic
21 17 17 1 RW Word PWM Duty Cycle of DO 1.2 Basic
22 18 18 1 RW Word PWM Duty Cycle of DO 1.3 Basic
23 19 19 1 RW Word PWM Duty Cycle of DO 1.4 Basic
24 20 20 1 RW MixedBits User LED 1.1 0 Basic
25 20 20 1 RW MixedBits User LED 1.2 1 Basic
26 20 20 1 RW MixedBits User LED 1.3 2 Basic
27 20 20 1 RW MixedBits User LED 1.4 3 Basic
28 21 21 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
29 21 21 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
30 21 21 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
31 21 21 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
32 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
33 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
34 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
35 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
36 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
37 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
38 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
39 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
40 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
41 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
42 505 505 1 W Word Reserved - Do Not Use Reserved
43 506 506 1 W Word Reserved - Do Not Use Reserved
44 507 507 1 W Word Reserved - Do Not Use Reserved
45 508 508 1 W Word Reserved - Do Not Use Reserved
46 509 509 1 W Word Reserved - Do Not Use Reserved
47 510 1 RW Word (Internal) Stored Firmware Version Expert
48 511 1 RW Word (Internal) Stored Firmware Revision Expert
49 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
50 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
51 514 1 RW Word (Internal) Stored PCB Revision Expert
52 515 1 RW Word (Internal) Stored PCB Serial Number Expert
53 516 1 RW Word (Internal) Stored HW Revision Number Expert
54 1000 1000 1 R Word Firmware Version Expert
55 1001 1001 1 R Word Number of I/Os Advanced
56 1002 1002 1 R Word Number of peripherals Advanced
57 1003 1003 1 R Word Firmware ID Expert
58 1004 1004 1 R Word Hardware ID Expert
59 1005 1005 2 R DWord PCB Serial Number Expert
60 1007 1007 1 RW Word Interrupt Mask Expert
61 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
62 1009 1009 1 R Word VRef of MCU Expert
63 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
64 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
65 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
66 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
67 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
68 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
69 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
70 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
71 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
72 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
73 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
74 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
75 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
76 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
77 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
78 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
79 1017 1017 1 RW Word PWM Group prescaler Basic
80 1018 1018 1 RW Word PWM Group cycle length Basic
81 1019 1019 1 RW Word Analog Output Configuration(U/I/R-measure) 1.1 Basic
82 1020 1020 1 RW Word Analog Output Voltage deviation 1.1 Expert
83 1021 1021 1 RW Word Analog Output Voltage offset 1.1 Expert
84 1022 1022 1 RW Word Analog Output Current deviation 1.1 Expert
85 1023 1023 1 RW Word Analog Output Current offset 1.1 Expert
86 1024 1024 1 RW Word Analog Input Configuration(U/I) 1.1 Basic
87 1025 1025 1 RW Word Analog Input Voltage deviation 1.1 Expert
88 1026 1026 1 RW Word Analog Input Voltage offset 1.1 Expert
89 1027 1027 1 RW Word Analog Input Current deviation 1.1 Expert
90 1028 1028 1 RW Word Analog Input Current offset 1.1 Expert
91 1029 1029 1 RW Word Analog Input/Output Voltage deviation (input side) 1.1 Expert
92 1030 1030 1 RW Word Analog Input/Output Voltage offset (input side) 1.1 Expert
93 1031 1031 1 RW MixedBits RS485 Configuration 1.1 Obsolete
94 2000 220 W Word Reserved - Do Not Use Reserved
95 3000 3000 2 RW Real Analog Output value 1.1 Basic
96 3002 3002 2 R Real Analog Input value 1.1 Basic
97 3004 3004 2 R Real (Internal) Analog Output measured voltage value 1.1 Expert

View File

@ -0,0 +1,89 @@
Via Unit 0,Via Unit 2,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
100,0,1,R,MixedBits,Digital Input 2.1,0,Basic
100,0,1,R,MixedBits,Digital Input 2.2,1,Basic
100,0,1,R,MixedBits,Digital Input 2.3,2,Basic
100,0,1,R,MixedBits,Digital Input 2.4,3,Basic
101,1,1,RW,MixedBits,Relay Output 2.1,0,Basic
101,1,1,RW,MixedBits,Relay Output 2.2,1,Basic
101,1,1,RW,MixedBits,Relay Output 2.3,2,Basic
101,1,1,RW,MixedBits,Relay Output 2.4,3,Basic
101,1,1,RW,MixedBits,Relay Output 2.5,4,Basic
102,2,1,RW,Word,Analog Output Value 2.1 (0..4000 ~ 0..10V),,Basic
103,3,1,RW,Word,Analog Output Value 2.2 (0..4000 ~ 0..10V),,Basic
104,4,1,RW,Word,Analog Output Value 2.3 (0..4000 ~ 0..10V),,Basic
105,5,1,RW,Word,Analog Output Value 2.4 (0..4000 ~ 0..10V),,Basic
106,6,2,R,Real,Analog Input Value 2.1,,Basic
108,8,2,R,Real,Analog Input Value 2.2,,Basic
110,10,2,R,Real,Analog Input Value 2.3,,Basic
112,12,2,R,Real,Analog Input Value 2.4,,Basic
114,14,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
115,15,1,R,Word,Length of RS485 TX Queue 2.1,,Obsolete
116,16,2,RW,DWord,Counter of Digital Input 2.1,,Basic
118,18,2,RW,DWord,Counter of Digital Input 2.2,,Basic
120,20,2,RW,DWord,Counter of Digital Input 2.3,,Basic
122,22,2,RW,DWord,Counter of Digital Input 2.4,,Basic
124,24,1,W,Word,Reserved - Do Not Use,,Reserved
125,25,1,W,Word,Reserved - Do Not Use,,Reserved
126,26,1,W,Word,Reserved - Do Not Use,,Reserved
127,27,1,W,Word,Reserved - Do Not Use,,Reserved
128,28,1,RW,MixedBits,Synchronised DO/RO 2.1,0,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.2,1,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.3,2,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.4,3,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.5,4,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.1,0,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.2,1,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.3,2,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.4,3,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.5,4,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 2.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 2.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 2.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 2.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 2.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 2.1,,Basic
605,505,1,W,Word,Reserved - Do Not Use,,Reserved
606,506,1,W,Word,Reserved - Do Not Use,,Reserved
607,507,1,W,Word,Reserved - Do Not Use,,Reserved
608,508,1,W,Word,Reserved - Do Not Use,,Reserved
609,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1100,1000,1,R,Word,Firmware Version,,Expert
1101,1001,1,R,Word,Number of I/Os,,Advanced
1102,1002,1,R,Word,Number of peripherals,,Advanced
1103,1003,1,R,Word,Firmware ID,,Expert
1104,1004,1,R,Word,Hardware ID,,Expert
1105,1005,2,R,DWord,PCB Serial Number,,Expert
1107,1007,1,RW,Word,Interrupt Mask,,Expert
1108,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1109,1009,1,R,Word,VRef of MCU,,Expert
1110,1010,1,RW,Word,Debounce time (in 100us) for DI 2.1,,Advanced
1111,1011,1,RW,Word,Debounce time (in 100us) for DI 2.2,,Advanced
1112,1012,1,RW,Word,Debounce time (in 100us) for DI 2.3,,Advanced
1113,1013,1,RW,Word,Debounce time (in 100us) for DI 2.4,,Advanced
1114,1014,1,RW,MixedBits,Enable DirectSwitch on DI 2.1,0,Basic
1114,1014,1,RW,MixedBits,Enable DirectSwitch on DI 2.2,1,Basic
1114,1014,1,RW,MixedBits,Enable DirectSwitch on DI 2.3,2,Basic
1114,1014,1,RW,MixedBits,Enable DirectSwitch on DI 2.4,3,Basic
1115,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.1,0,Basic
1115,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.2,1,Basic
1115,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.3,2,Basic
1115,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.4,3,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.1,0,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.2,1,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.3,2,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.4,3,Basic
1117,1017,1,W,Word,Reserved - Do Not Use,,Reserved
1118,1018,1,W,Word,Reserved - Do Not Use,,Reserved
1119,1019,1,RW,Word,Analog Input Configuration(U/I/R) 2.1,,Basic
1120,1020,1,RW,Word,Analog Input Configuration(U/I/R) 2.2,,Basic
1121,1021,1,RW,Word,Analog Input Configuration(U/I/R) 2.3,,Basic
1122,1022,1,RW,Word,Analog Input Configuration(U/I/R) 2.4,,Basic
1123,1023,1,RW,MixedBits,RS485 Configuration 2.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 2 Register Count R/W Data Type Content Start Bit Nr. Category
2 100 0 1 R MixedBits Digital Input 2.1 0 Basic
3 100 0 1 R MixedBits Digital Input 2.2 1 Basic
4 100 0 1 R MixedBits Digital Input 2.3 2 Basic
5 100 0 1 R MixedBits Digital Input 2.4 3 Basic
6 101 1 1 RW MixedBits Relay Output 2.1 0 Basic
7 101 1 1 RW MixedBits Relay Output 2.2 1 Basic
8 101 1 1 RW MixedBits Relay Output 2.3 2 Basic
9 101 1 1 RW MixedBits Relay Output 2.4 3 Basic
10 101 1 1 RW MixedBits Relay Output 2.5 4 Basic
11 102 2 1 RW Word Analog Output Value 2.1 (0..4000 ~ 0..10V) Basic
12 103 3 1 RW Word Analog Output Value 2.2 (0..4000 ~ 0..10V) Basic
13 104 4 1 RW Word Analog Output Value 2.3 (0..4000 ~ 0..10V) Basic
14 105 5 1 RW Word Analog Output Value 2.4 (0..4000 ~ 0..10V) Basic
15 106 6 2 R Real Analog Input Value 2.1 Basic
16 108 8 2 R Real Analog Input Value 2.2 Basic
17 110 10 2 R Real Analog Input Value 2.3 Basic
18 112 12 2 R Real Analog Input Value 2.4 Basic
19 114 14 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
20 115 15 1 R Word Length of RS485 TX Queue 2.1 Obsolete
21 116 16 2 RW DWord Counter of Digital Input 2.1 Basic
22 118 18 2 RW DWord Counter of Digital Input 2.2 Basic
23 120 20 2 RW DWord Counter of Digital Input 2.3 Basic
24 122 22 2 RW DWord Counter of Digital Input 2.4 Basic
25 124 24 1 W Word Reserved - Do Not Use Reserved
26 125 25 1 W Word Reserved - Do Not Use Reserved
27 126 26 1 W Word Reserved - Do Not Use Reserved
28 127 27 1 W Word Reserved - Do Not Use Reserved
29 128 28 1 RW MixedBits Synchronised DO/RO 2.1 0 Advanced
30 128 28 1 RW MixedBits Synchronised DO/RO 2.2 1 Advanced
31 128 28 1 RW MixedBits Synchronised DO/RO 2.3 2 Advanced
32 128 28 1 RW MixedBits Synchronised DO/RO 2.4 3 Advanced
33 128 28 1 RW MixedBits Synchronised DO/RO 2.5 4 Advanced
34 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.1 0 Advanced
35 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.2 1 Advanced
36 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.3 2 Advanced
37 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.4 3 Advanced
38 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.5 4 Advanced
39 100 2 RW DWord (Internal) RS485 Full Mode Configuration 2.1 Obsolete
40 500 1 RW Word RS485 TERMIOS CFlags 2.1 Expert
41 501 1 RW Word RS485 TERMIOS LFlags 2.1 Expert
42 502 1 RW Word RS485 TERMIOS IFlags 2.1 Expert
43 503 1 RW Word RS485 TERMIOS LDisc 2.1 Expert
44 504 1 RW Word RS485 ModBus Timeout 2.1 Basic
45 605 505 1 W Word Reserved - Do Not Use Reserved
46 606 506 1 W Word Reserved - Do Not Use Reserved
47 607 507 1 W Word Reserved - Do Not Use Reserved
48 608 508 1 W Word Reserved - Do Not Use Reserved
49 609 509 1 W Word Reserved - Do Not Use Reserved
50 510 1 RW Word (Internal) Stored Firmware Version Expert
51 511 1 RW Word (Internal) Stored Firmware Revision Expert
52 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
53 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
54 514 1 RW Word (Internal) Stored PCB Revision Expert
55 515 1 RW Word (Internal) Stored PCB Serial Number Expert
56 516 1 RW Word (Internal) Stored HW Revision Number Expert
57 1100 1000 1 R Word Firmware Version Expert
58 1101 1001 1 R Word Number of I/Os Advanced
59 1102 1002 1 R Word Number of peripherals Advanced
60 1103 1003 1 R Word Firmware ID Expert
61 1104 1004 1 R Word Hardware ID Expert
62 1105 1005 2 R DWord PCB Serial Number Expert
63 1107 1007 1 RW Word Interrupt Mask Expert
64 1108 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
65 1109 1009 1 R Word VRef of MCU Expert
66 1110 1010 1 RW Word Debounce time (in 100us) for DI 2.1 Advanced
67 1111 1011 1 RW Word Debounce time (in 100us) for DI 2.2 Advanced
68 1112 1012 1 RW Word Debounce time (in 100us) for DI 2.3 Advanced
69 1113 1013 1 RW Word Debounce time (in 100us) for DI 2.4 Advanced
70 1114 1014 1 RW MixedBits Enable DirectSwitch on DI 2.1 0 Basic
71 1114 1014 1 RW MixedBits Enable DirectSwitch on DI 2.2 1 Basic
72 1114 1014 1 RW MixedBits Enable DirectSwitch on DI 2.3 2 Basic
73 1114 1014 1 RW MixedBits Enable DirectSwitch on DI 2.4 3 Basic
74 1115 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.1 0 Basic
75 1115 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.2 1 Basic
76 1115 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.3 2 Basic
77 1115 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.4 3 Basic
78 1116 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.1 0 Basic
79 1116 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.2 1 Basic
80 1116 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.3 2 Basic
81 1116 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.4 3 Basic
82 1117 1017 1 W Word Reserved - Do Not Use Reserved
83 1118 1018 1 W Word Reserved - Do Not Use Reserved
84 1119 1019 1 RW Word Analog Input Configuration(U/I/R) 2.1 Basic
85 1120 1020 1 RW Word Analog Input Configuration(U/I/R) 2.2 Basic
86 1121 1021 1 RW Word Analog Input Configuration(U/I/R) 2.3 Basic
87 1122 1022 1 RW Word Analog Input Configuration(U/I/R) 2.4 Basic
88 1123 1023 1 RW MixedBits RS485 Configuration 2.1 Obsolete
89 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,168 @@
Via Unit 0,Via Unit 3,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
200,0,1,R,MixedBits,Digital Input 3.1,0,Basic
200,0,1,R,MixedBits,Digital Input 3.2,1,Basic
200,0,1,R,MixedBits,Digital Input 3.3,2,Basic
200,0,1,R,MixedBits,Digital Input 3.4,3,Basic
200,0,1,R,MixedBits,Digital Input 3.5,4,Basic
200,0,1,R,MixedBits,Digital Input 3.6,5,Basic
200,0,1,R,MixedBits,Digital Input 3.7,6,Basic
200,0,1,R,MixedBits,Digital Input 3.8,7,Basic
200,0,1,R,MixedBits,Digital Input 3.9,8,Basic
200,0,1,R,MixedBits,Digital Input 3.10,9,Basic
200,0,1,R,MixedBits,Digital Input 3.11,10,Basic
200,0,1,R,MixedBits,Digital Input 3.12,11,Basic
200,0,1,R,MixedBits,Digital Input 3.13,12,Basic
200,0,1,R,MixedBits,Digital Input 3.14,13,Basic
200,0,1,R,MixedBits,Digital Input 3.15,14,Basic
200,0,1,R,MixedBits,Digital Input 3.16,15,Basic
201,1,1,RW,MixedBits,Relay Output 3.1,0,Basic
201,1,1,RW,MixedBits,Relay Output 3.2,1,Basic
201,1,1,RW,MixedBits,Relay Output 3.3,2,Basic
201,1,1,RW,MixedBits,Relay Output 3.4,3,Basic
201,1,1,RW,MixedBits,Relay Output 3.5,4,Basic
201,1,1,RW,MixedBits,Relay Output 3.6,5,Basic
201,1,1,RW,MixedBits,Relay Output 3.7,6,Basic
201,1,1,RW,MixedBits,Relay Output 3.8,7,Basic
201,1,1,RW,MixedBits,Relay Output 3.9,8,Basic
201,1,1,RW,MixedBits,Relay Output 3.10,9,Basic
201,1,1,RW,MixedBits,Relay Output 3.11,10,Basic
201,1,1,RW,MixedBits,Relay Output 3.12,11,Basic
201,1,1,RW,MixedBits,Relay Output 3.13,12,Basic
201,1,1,RW,MixedBits,Relay Output 3.14,13,Basic
202,2,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
203,3,2,RW,DWord,Counter of Digital Input 3.1,,Basic
205,5,2,RW,DWord,Counter of Digital Input 3.2,,Basic
207,7,2,RW,DWord,Counter of Digital Input 3.3,,Basic
209,9,2,RW,DWord,Counter of Digital Input 3.4,,Basic
211,11,2,RW,DWord,Counter of Digital Input 3.5,,Basic
213,13,2,RW,DWord,Counter of Digital Input 3.6,,Basic
215,15,2,RW,DWord,Counter of Digital Input 3.7,,Basic
217,17,2,RW,DWord,Counter of Digital Input 3.8,,Basic
219,19,2,RW,DWord,Counter of Digital Input 3.9,,Basic
221,21,2,RW,DWord,Counter of Digital Input 3.10,,Basic
223,23,2,RW,DWord,Counter of Digital Input 3.11,,Basic
225,25,2,RW,DWord,Counter of Digital Input 3.12,,Basic
227,27,2,RW,DWord,Counter of Digital Input 3.13,,Basic
229,29,2,RW,DWord,Counter of Digital Input 3.14,,Basic
231,31,2,RW,DWord,Counter of Digital Input 3.15,,Basic
233,33,2,RW,DWord,Counter of Digital Input 3.16,,Basic
235,35,1,W,Word,Reserved - Do Not Use,,Reserved
236,36,1,W,Word,Reserved - Do Not Use,,Reserved
237,37,1,W,Word,Reserved - Do Not Use,,Reserved
238,38,1,W,Word,Reserved - Do Not Use,,Reserved
239,39,1,RW,MixedBits,Synchronised DO/RO 3.1,0,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.2,1,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.3,2,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.4,3,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.5,4,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.6,5,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.7,6,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.8,7,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.9,8,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.10,9,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.11,10,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.12,11,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.13,12,Advanced
239,39,1,RW,MixedBits,Synchronised DO/RO 3.14,13,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.1,0,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.2,1,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.3,2,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.4,3,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.5,4,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.6,5,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.7,6,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.8,7,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.9,8,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.10,9,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.11,10,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.12,11,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.13,12,Advanced
240,40,1,RW,MixedBits,Synchronised DO/RO Lock 3.14,13,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 3.1,,Obsolete
700,500,1,W,Word,Reserved - Do Not Use,,Reserved
701,501,1,W,Word,Reserved - Do Not Use,,Reserved
702,502,1,W,Word,Reserved - Do Not Use,,Reserved
703,503,1,W,Word,Reserved - Do Not Use,,Reserved
704,504,1,W,Word,Reserved - Do Not Use,,Reserved
705,505,1,W,Word,Reserved - Do Not Use,,Reserved
706,506,1,W,Word,Reserved - Do Not Use,,Reserved
707,507,1,W,Word,Reserved - Do Not Use,,Reserved
708,508,1,W,Word,Reserved - Do Not Use,,Reserved
709,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1200,1000,1,R,Word,Firmware Version,,Expert
1201,1001,1,R,Word,Number of I/Os,,Advanced
1202,1002,1,R,Word,Number of peripherals,,Advanced
1203,1003,1,R,Word,Firmware ID,,Expert
1204,1004,1,R,Word,Hardware ID,,Expert
1205,1005,2,R,DWord,PCB Serial Number,,Expert
1207,1007,1,RW,Word,Interrupt Mask,,Expert
1208,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1209,1009,1,R,Word,VRef of MCU,,Expert
1210,1010,1,RW,Word,Debounce time (in 100us) for DI 3.1,,Advanced
1211,1011,1,RW,Word,Debounce time (in 100us) for DI 3.2,,Advanced
1212,1012,1,RW,Word,Debounce time (in 100us) for DI 3.3,,Advanced
1213,1013,1,RW,Word,Debounce time (in 100us) for DI 3.4,,Advanced
1214,1014,1,RW,Word,Debounce time (in 100us) for DI 3.5,,Advanced
1215,1015,1,RW,Word,Debounce time (in 100us) for DI 3.6,,Advanced
1216,1016,1,RW,Word,Debounce time (in 100us) for DI 3.7,,Advanced
1217,1017,1,RW,Word,Debounce time (in 100us) for DI 3.8,,Advanced
1218,1018,1,RW,Word,Debounce time (in 100us) for DI 3.9,,Advanced
1219,1019,1,RW,Word,Debounce time (in 100us) for DI 3.10,,Advanced
1220,1020,1,RW,Word,Debounce time (in 100us) for DI 3.11,,Advanced
1221,1021,1,RW,Word,Debounce time (in 100us) for DI 3.12,,Advanced
1222,1022,1,RW,Word,Debounce time (in 100us) for DI 3.13,,Advanced
1223,1023,1,RW,Word,Debounce time (in 100us) for DI 3.14,,Advanced
1224,1024,1,RW,Word,Debounce time (in 100us) for DI 3.15,,Advanced
1225,1025,1,RW,Word,Debounce time (in 100us) for DI 3.16,,Advanced
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.1,0,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.2,1,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.3,2,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.4,3,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.5,4,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.6,5,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.7,6,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.8,7,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.9,8,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.10,9,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.11,10,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.12,11,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.13,12,Basic
1226,1026,1,RW,MixedBits,Enable DirectSwitch on DI 3.14,13,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.1,0,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.2,1,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.3,2,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.4,3,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.5,4,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.6,5,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.7,6,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.8,7,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.9,8,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.10,9,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.11,10,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.12,11,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.13,12,Basic
1227,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.14,13,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.1,0,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.2,1,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.3,2,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.4,3,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.5,4,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.6,5,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.7,6,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.8,7,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.9,8,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.10,9,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.11,10,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.12,11,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.13,12,Basic
1228,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.14,13,Basic
1229,1029,1,W,Word,Reserved - Do Not Use,,Reserved
1230,1030,1,W,Word,Reserved - Do Not Use,,Reserved
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 3 Register Count R/W Data Type Content Start Bit Nr. Category
2 200 0 1 R MixedBits Digital Input 3.1 0 Basic
3 200 0 1 R MixedBits Digital Input 3.2 1 Basic
4 200 0 1 R MixedBits Digital Input 3.3 2 Basic
5 200 0 1 R MixedBits Digital Input 3.4 3 Basic
6 200 0 1 R MixedBits Digital Input 3.5 4 Basic
7 200 0 1 R MixedBits Digital Input 3.6 5 Basic
8 200 0 1 R MixedBits Digital Input 3.7 6 Basic
9 200 0 1 R MixedBits Digital Input 3.8 7 Basic
10 200 0 1 R MixedBits Digital Input 3.9 8 Basic
11 200 0 1 R MixedBits Digital Input 3.10 9 Basic
12 200 0 1 R MixedBits Digital Input 3.11 10 Basic
13 200 0 1 R MixedBits Digital Input 3.12 11 Basic
14 200 0 1 R MixedBits Digital Input 3.13 12 Basic
15 200 0 1 R MixedBits Digital Input 3.14 13 Basic
16 200 0 1 R MixedBits Digital Input 3.15 14 Basic
17 200 0 1 R MixedBits Digital Input 3.16 15 Basic
18 201 1 1 RW MixedBits Relay Output 3.1 0 Basic
19 201 1 1 RW MixedBits Relay Output 3.2 1 Basic
20 201 1 1 RW MixedBits Relay Output 3.3 2 Basic
21 201 1 1 RW MixedBits Relay Output 3.4 3 Basic
22 201 1 1 RW MixedBits Relay Output 3.5 4 Basic
23 201 1 1 RW MixedBits Relay Output 3.6 5 Basic
24 201 1 1 RW MixedBits Relay Output 3.7 6 Basic
25 201 1 1 RW MixedBits Relay Output 3.8 7 Basic
26 201 1 1 RW MixedBits Relay Output 3.9 8 Basic
27 201 1 1 RW MixedBits Relay Output 3.10 9 Basic
28 201 1 1 RW MixedBits Relay Output 3.11 10 Basic
29 201 1 1 RW MixedBits Relay Output 3.12 11 Basic
30 201 1 1 RW MixedBits Relay Output 3.13 12 Basic
31 201 1 1 RW MixedBits Relay Output 3.14 13 Basic
32 202 2 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
33 203 3 2 RW DWord Counter of Digital Input 3.1 Basic
34 205 5 2 RW DWord Counter of Digital Input 3.2 Basic
35 207 7 2 RW DWord Counter of Digital Input 3.3 Basic
36 209 9 2 RW DWord Counter of Digital Input 3.4 Basic
37 211 11 2 RW DWord Counter of Digital Input 3.5 Basic
38 213 13 2 RW DWord Counter of Digital Input 3.6 Basic
39 215 15 2 RW DWord Counter of Digital Input 3.7 Basic
40 217 17 2 RW DWord Counter of Digital Input 3.8 Basic
41 219 19 2 RW DWord Counter of Digital Input 3.9 Basic
42 221 21 2 RW DWord Counter of Digital Input 3.10 Basic
43 223 23 2 RW DWord Counter of Digital Input 3.11 Basic
44 225 25 2 RW DWord Counter of Digital Input 3.12 Basic
45 227 27 2 RW DWord Counter of Digital Input 3.13 Basic
46 229 29 2 RW DWord Counter of Digital Input 3.14 Basic
47 231 31 2 RW DWord Counter of Digital Input 3.15 Basic
48 233 33 2 RW DWord Counter of Digital Input 3.16 Basic
49 235 35 1 W Word Reserved - Do Not Use Reserved
50 236 36 1 W Word Reserved - Do Not Use Reserved
51 237 37 1 W Word Reserved - Do Not Use Reserved
52 238 38 1 W Word Reserved - Do Not Use Reserved
53 239 39 1 RW MixedBits Synchronised DO/RO 3.1 0 Advanced
54 239 39 1 RW MixedBits Synchronised DO/RO 3.2 1 Advanced
55 239 39 1 RW MixedBits Synchronised DO/RO 3.3 2 Advanced
56 239 39 1 RW MixedBits Synchronised DO/RO 3.4 3 Advanced
57 239 39 1 RW MixedBits Synchronised DO/RO 3.5 4 Advanced
58 239 39 1 RW MixedBits Synchronised DO/RO 3.6 5 Advanced
59 239 39 1 RW MixedBits Synchronised DO/RO 3.7 6 Advanced
60 239 39 1 RW MixedBits Synchronised DO/RO 3.8 7 Advanced
61 239 39 1 RW MixedBits Synchronised DO/RO 3.9 8 Advanced
62 239 39 1 RW MixedBits Synchronised DO/RO 3.10 9 Advanced
63 239 39 1 RW MixedBits Synchronised DO/RO 3.11 10 Advanced
64 239 39 1 RW MixedBits Synchronised DO/RO 3.12 11 Advanced
65 239 39 1 RW MixedBits Synchronised DO/RO 3.13 12 Advanced
66 239 39 1 RW MixedBits Synchronised DO/RO 3.14 13 Advanced
67 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.1 0 Advanced
68 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.2 1 Advanced
69 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.3 2 Advanced
70 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.4 3 Advanced
71 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.5 4 Advanced
72 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.6 5 Advanced
73 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.7 6 Advanced
74 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.8 7 Advanced
75 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.9 8 Advanced
76 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.10 9 Advanced
77 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.11 10 Advanced
78 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.12 11 Advanced
79 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.13 12 Advanced
80 240 40 1 RW MixedBits Synchronised DO/RO Lock 3.14 13 Advanced
81 100 2 RW DWord (Internal) RS485 Full Mode Configuration 3.1 Obsolete
82 700 500 1 W Word Reserved - Do Not Use Reserved
83 701 501 1 W Word Reserved - Do Not Use Reserved
84 702 502 1 W Word Reserved - Do Not Use Reserved
85 703 503 1 W Word Reserved - Do Not Use Reserved
86 704 504 1 W Word Reserved - Do Not Use Reserved
87 705 505 1 W Word Reserved - Do Not Use Reserved
88 706 506 1 W Word Reserved - Do Not Use Reserved
89 707 507 1 W Word Reserved - Do Not Use Reserved
90 708 508 1 W Word Reserved - Do Not Use Reserved
91 709 509 1 W Word Reserved - Do Not Use Reserved
92 510 1 RW Word (Internal) Stored Firmware Version Expert
93 511 1 RW Word (Internal) Stored Firmware Revision Expert
94 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
95 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
96 514 1 RW Word (Internal) Stored PCB Revision Expert
97 515 1 RW Word (Internal) Stored PCB Serial Number Expert
98 516 1 RW Word (Internal) Stored HW Revision Number Expert
99 1200 1000 1 R Word Firmware Version Expert
100 1201 1001 1 R Word Number of I/Os Advanced
101 1202 1002 1 R Word Number of peripherals Advanced
102 1203 1003 1 R Word Firmware ID Expert
103 1204 1004 1 R Word Hardware ID Expert
104 1205 1005 2 R DWord PCB Serial Number Expert
105 1207 1007 1 RW Word Interrupt Mask Expert
106 1208 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
107 1209 1009 1 R Word VRef of MCU Expert
108 1210 1010 1 RW Word Debounce time (in 100us) for DI 3.1 Advanced
109 1211 1011 1 RW Word Debounce time (in 100us) for DI 3.2 Advanced
110 1212 1012 1 RW Word Debounce time (in 100us) for DI 3.3 Advanced
111 1213 1013 1 RW Word Debounce time (in 100us) for DI 3.4 Advanced
112 1214 1014 1 RW Word Debounce time (in 100us) for DI 3.5 Advanced
113 1215 1015 1 RW Word Debounce time (in 100us) for DI 3.6 Advanced
114 1216 1016 1 RW Word Debounce time (in 100us) for DI 3.7 Advanced
115 1217 1017 1 RW Word Debounce time (in 100us) for DI 3.8 Advanced
116 1218 1018 1 RW Word Debounce time (in 100us) for DI 3.9 Advanced
117 1219 1019 1 RW Word Debounce time (in 100us) for DI 3.10 Advanced
118 1220 1020 1 RW Word Debounce time (in 100us) for DI 3.11 Advanced
119 1221 1021 1 RW Word Debounce time (in 100us) for DI 3.12 Advanced
120 1222 1022 1 RW Word Debounce time (in 100us) for DI 3.13 Advanced
121 1223 1023 1 RW Word Debounce time (in 100us) for DI 3.14 Advanced
122 1224 1024 1 RW Word Debounce time (in 100us) for DI 3.15 Advanced
123 1225 1025 1 RW Word Debounce time (in 100us) for DI 3.16 Advanced
124 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.1 0 Basic
125 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.2 1 Basic
126 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.3 2 Basic
127 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.4 3 Basic
128 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.5 4 Basic
129 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.6 5 Basic
130 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.7 6 Basic
131 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.8 7 Basic
132 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.9 8 Basic
133 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.10 9 Basic
134 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.11 10 Basic
135 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.12 11 Basic
136 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.13 12 Basic
137 1226 1026 1 RW MixedBits Enable DirectSwitch on DI 3.14 13 Basic
138 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.1 0 Basic
139 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.2 1 Basic
140 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.3 2 Basic
141 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.4 3 Basic
142 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.5 4 Basic
143 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.6 5 Basic
144 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.7 6 Basic
145 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.8 7 Basic
146 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.9 8 Basic
147 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.10 9 Basic
148 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.11 10 Basic
149 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.12 11 Basic
150 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.13 12 Basic
151 1227 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.14 13 Basic
152 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.1 0 Basic
153 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.2 1 Basic
154 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.3 2 Basic
155 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.4 3 Basic
156 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.5 4 Basic
157 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.6 5 Basic
158 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.7 6 Basic
159 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.8 7 Basic
160 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.9 8 Basic
161 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.10 9 Basic
162 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.11 10 Basic
163 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.12 11 Basic
164 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.13 12 Basic
165 1228 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.14 13 Basic
166 1229 1029 1 W Word Reserved - Do Not Use Reserved
167 1230 1030 1 W Word Reserved - Do Not Use Reserved
168 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,32 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Digital Output 1.1,Basic
1,1,RW,Digital Output 1.2,Basic
2,2,RW,Digital Output 1.3,Basic
3,3,RW,Digital Output 1.4,Basic
4,4,R,Digital Input 1.1,Basic
5,5,R,Digital Input 1.2,Basic
6,6,R,Digital Input 1.3,Basic
7,7,R,Digital Input 1.4,Basic
8,8,RW,User Programmable LED 1.1,Basic
9,9,RW,User Programmable LED 1.2,Basic
10,10,RW,User Programmable LED 1.3,Basic
11,11,RW,User Programmable LED 1.4,Basic
1000,1000,RW,MWD reset indication,Advanced
1001,1001,RW,Enable/Disable 1Wire Bus,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1012,1012,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1013,1013,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1014,1014,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1015,1015,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1016,1016,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1017,1017,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1018,1018,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Digital Output 1.1 Basic
3 1 1 RW Digital Output 1.2 Basic
4 2 2 RW Digital Output 1.3 Basic
5 3 3 RW Digital Output 1.4 Basic
6 4 4 R Digital Input 1.1 Basic
7 5 5 R Digital Input 1.2 Basic
8 6 6 R Digital Input 1.3 Basic
9 7 7 R Digital Input 1.4 Basic
10 8 8 RW User Programmable LED 1.1 Basic
11 9 9 RW User Programmable LED 1.2 Basic
12 10 10 RW User Programmable LED 1.3 Basic
13 11 11 RW User Programmable LED 1.4 Basic
14 1000 1000 RW MWD reset indication Advanced
15 1001 1001 RW Enable/Disable 1Wire Bus Advanced
16 1002 1002 R Reset group MCU Advanced
17 1003 1003 RW Save current configuration and use on startup Advanced
18 1004 1004 RW (Internal) Firmware programming toggle Expert
19 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
20 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
21 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
22 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
23 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
24 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
25 1011 1011 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
26 1012 1012 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
27 1013 1013 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
28 1014 1014 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
29 1015 1015 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
30 1016 1016 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
31 1017 1017 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
32 1018 1018 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced

View File

@ -0,0 +1,28 @@
Via Unit 0,Via Unit 2,R/W,Content,Category
100,0,RW,Relay Output 2.1,Basic
101,1,RW,Relay Output 2.2,Basic
102,2,RW,Relay Output 2.3,Basic
103,3,RW,Relay Output 2.4,Basic
104,4,RW,Relay Output 2.5,Basic
105,5,R,Digital Input 2.1,Basic
106,6,R,Digital Input 2.2,Basic
107,7,R,Digital Input 2.3,Basic
108,8,R,Digital Input 2.4,Basic
1100,1000,RW,MWD reset indication,Advanced
1102,1002,R,Reset group MCU,Advanced
1103,1003,RW,Save current configuration and use on startup,Advanced
1104,1004,RW,(Internal) Firmware programming toggle,Expert
1105,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1106,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1107,1007,RW,Enable DirectSwitch on DI 2.1,Advanced
1108,1008,RW,Enable DirectSwitch on DI 2.2,Advanced
1109,1009,RW,Enable DirectSwitch on DI 2.3,Advanced
1110,1010,RW,Enable DirectSwitch on DI 2.4,Advanced
1111,1011,RW,Invert DirectSwitch Polarity on DI 2.1,Advanced
1112,1012,RW,Invert DirectSwitch Polarity on DI 2.2,Advanced
1113,1013,RW,Invert DirectSwitch Polarity on DI 2.3,Advanced
1114,1014,RW,Invert DirectSwitch Polarity on DI 2.4,Advanced
1115,1015,RW,Enable DirectSwitch Toggle Mode on DI 2.1,Advanced
1116,1016,RW,Enable DirectSwitch Toggle Mode on DI 2.2,Advanced
1117,1017,RW,Enable DirectSwitch Toggle Mode on DI 2.3,Advanced
1118,1018,RW,Enable DirectSwitch Toggle Mode on DI 2.4,Advanced
1 Via Unit 0 Via Unit 2 R/W Content Category
2 100 0 RW Relay Output 2.1 Basic
3 101 1 RW Relay Output 2.2 Basic
4 102 2 RW Relay Output 2.3 Basic
5 103 3 RW Relay Output 2.4 Basic
6 104 4 RW Relay Output 2.5 Basic
7 105 5 R Digital Input 2.1 Basic
8 106 6 R Digital Input 2.2 Basic
9 107 7 R Digital Input 2.3 Basic
10 108 8 R Digital Input 2.4 Basic
11 1100 1000 RW MWD reset indication Advanced
12 1102 1002 R Reset group MCU Advanced
13 1103 1003 RW Save current configuration and use on startup Advanced
14 1104 1004 RW (Internal) Firmware programming toggle Expert
15 1105 1005 RW (Internal) Firmware reprogramming toggle Expert
16 1106 1006 RW (Internal) Firmware calibration programming toggle Expert
17 1107 1007 RW Enable DirectSwitch on DI 2.1 Advanced
18 1108 1008 RW Enable DirectSwitch on DI 2.2 Advanced
19 1109 1009 RW Enable DirectSwitch on DI 2.3 Advanced
20 1110 1010 RW Enable DirectSwitch on DI 2.4 Advanced
21 1111 1011 RW Invert DirectSwitch Polarity on DI 2.1 Advanced
22 1112 1012 RW Invert DirectSwitch Polarity on DI 2.2 Advanced
23 1113 1013 RW Invert DirectSwitch Polarity on DI 2.3 Advanced
24 1114 1014 RW Invert DirectSwitch Polarity on DI 2.4 Advanced
25 1115 1015 RW Enable DirectSwitch Toggle Mode on DI 2.1 Advanced
26 1116 1016 RW Enable DirectSwitch Toggle Mode on DI 2.2 Advanced
27 1117 1017 RW Enable DirectSwitch Toggle Mode on DI 2.3 Advanced
28 1118 1018 RW Enable DirectSwitch Toggle Mode on DI 2.4 Advanced

View File

@ -0,0 +1,28 @@
Via Unit 0,Via Unit 3,R/W,Content,Category
200,0,RW,Relay Output 3.1,Basic
201,1,RW,Relay Output 3.2,Basic
202,2,RW,Relay Output 3.3,Basic
203,3,RW,Relay Output 3.4,Basic
204,4,RW,Relay Output 3.5,Basic
205,5,R,Digital Input 3.1,Basic
206,6,R,Digital Input 3.2,Basic
207,7,R,Digital Input 3.3,Basic
208,8,R,Digital Input 3.4,Basic
1200,1000,RW,MWD reset indication,Advanced
1202,1002,R,Reset group MCU,Advanced
1203,1003,RW,Save current configuration and use on startup,Advanced
1204,1004,RW,(Internal) Firmware programming toggle,Expert
1205,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1206,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1207,1007,RW,Enable DirectSwitch on DI 3.1,Advanced
1208,1008,RW,Enable DirectSwitch on DI 3.2,Advanced
1209,1009,RW,Enable DirectSwitch on DI 3.3,Advanced
1210,1010,RW,Enable DirectSwitch on DI 3.4,Advanced
1211,1011,RW,Invert DirectSwitch Polarity on DI 3.1,Advanced
1212,1012,RW,Invert DirectSwitch Polarity on DI 3.2,Advanced
1213,1013,RW,Invert DirectSwitch Polarity on DI 3.3,Advanced
1214,1014,RW,Invert DirectSwitch Polarity on DI 3.4,Advanced
1215,1015,RW,Enable DirectSwitch Toggle Mode on DI 3.1,Advanced
1216,1016,RW,Enable DirectSwitch Toggle Mode on DI 3.2,Advanced
1217,1017,RW,Enable DirectSwitch Toggle Mode on DI 3.3,Advanced
1218,1018,RW,Enable DirectSwitch Toggle Mode on DI 3.4,Advanced
1 Via Unit 0 Via Unit 3 R/W Content Category
2 200 0 RW Relay Output 3.1 Basic
3 201 1 RW Relay Output 3.2 Basic
4 202 2 RW Relay Output 3.3 Basic
5 203 3 RW Relay Output 3.4 Basic
6 204 4 RW Relay Output 3.5 Basic
7 205 5 R Digital Input 3.1 Basic
8 206 6 R Digital Input 3.2 Basic
9 207 7 R Digital Input 3.3 Basic
10 208 8 R Digital Input 3.4 Basic
11 1200 1000 RW MWD reset indication Advanced
12 1202 1002 R Reset group MCU Advanced
13 1203 1003 RW Save current configuration and use on startup Advanced
14 1204 1004 RW (Internal) Firmware programming toggle Expert
15 1205 1005 RW (Internal) Firmware reprogramming toggle Expert
16 1206 1006 RW (Internal) Firmware calibration programming toggle Expert
17 1207 1007 RW Enable DirectSwitch on DI 3.1 Advanced
18 1208 1008 RW Enable DirectSwitch on DI 3.2 Advanced
19 1209 1009 RW Enable DirectSwitch on DI 3.3 Advanced
20 1210 1010 RW Enable DirectSwitch on DI 3.4 Advanced
21 1211 1011 RW Invert DirectSwitch Polarity on DI 3.1 Advanced
22 1212 1012 RW Invert DirectSwitch Polarity on DI 3.2 Advanced
23 1213 1013 RW Invert DirectSwitch Polarity on DI 3.3 Advanced
24 1214 1014 RW Invert DirectSwitch Polarity on DI 3.4 Advanced
25 1215 1015 RW Enable DirectSwitch Toggle Mode on DI 3.1 Advanced
26 1216 1016 RW Enable DirectSwitch Toggle Mode on DI 3.2 Advanced
27 1217 1017 RW Enable DirectSwitch Toggle Mode on DI 3.3 Advanced
28 1218 1018 RW Enable DirectSwitch Toggle Mode on DI 3.4 Advanced

View File

@ -0,0 +1,97 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
1,1,1,RW,MixedBits,Digital Output 1.1,0,Basic
1,1,1,RW,MixedBits,Digital Output 1.2,1,Basic
1,1,1,RW,MixedBits,Digital Output 1.3,2,Basic
1,1,1,RW,MixedBits,Digital Output 1.4,3,Basic
2,2,1,RW,Word,Analog Output (raw value) 1.1,,Obsolete
3,3,1,R,Word,Analog Input (raw value) 1.1,,Obsolete
4,4,1,R,Word,Analog Input/Output (raw value) 1.1,,Obsolete
5,5,1,R,Word,VRefInt of MCU,,Expert
6,6,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
7,7,1,R,Word,Length of RS485 TX Queue 1.1,,Obsolete
8,8,2,RW,DWord,Counter of Digital Input 1.1,,Basic
10,10,2,RW,DWord,Counter of Digital Input 1.2,,Basic
12,12,2,RW,DWord,Counter of Digital Input 1.3,,Basic
14,14,2,RW,DWord,Counter of Digital Input 1.4,,Basic
16,16,1,RW,Word,PWM Duty Cycle of DO 1.1,,Basic
17,17,1,RW,Word,PWM Duty Cycle of DO 1.2,,Basic
18,18,1,RW,Word,PWM Duty Cycle of DO 1.3,,Basic
19,19,1,RW,Word,PWM Duty Cycle of DO 1.4,,Basic
20,20,1,RW,MixedBits,User LED 1.1,0,Basic
20,20,1,RW,MixedBits,User LED 1.2,1,Basic
20,20,1,RW,MixedBits,User LED 1.3,2,Basic
20,20,1,RW,MixedBits,User LED 1.4,3,Basic
21,21,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1017,1017,1,RW,Word,PWM Group prescaler,,Basic
1018,1018,1,RW,Word,PWM Group cycle length,,Basic
1019,1019,1,RW,Word,Analog Output Configuration(U/I/R-measure) 1.1,,Basic
1020,1020,1,RW,Word,Analog Output Voltage deviation 1.1,,Expert
1021,1021,1,RW,Word,Analog Output Voltage offset 1.1,,Expert
1022,1022,1,RW,Word,Analog Output Current deviation 1.1,,Expert
1023,1023,1,RW,Word,Analog Output Current offset 1.1,,Expert
1024,1024,1,RW,Word,Analog Input Configuration(U/I) 1.1,,Basic
1025,1025,1,RW,Word,Analog Input Voltage deviation 1.1,,Expert
1026,1026,1,RW,Word,Analog Input Voltage offset 1.1,,Expert
1027,1027,1,RW,Word,Analog Input Current deviation 1.1,,Expert
1028,1028,1,RW,Word,Analog Input Current offset 1.1,,Expert
1029,1029,1,RW,Word,Analog Input/Output Voltage deviation (input side) 1.1,,Expert
1030,1030,1,RW,Word,Analog Input/Output Voltage offset (input side) 1.1,,Expert
1031,1031,1,RW,MixedBits,RS485 Configuration 1.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
3000,3000,2,RW,Real,Analog Output value 1.1,,Basic
3002,3002,2,R,Real,Analog Input value 1.1,,Basic
3004,3004,2,R,Real,(Internal) Analog Output measured voltage value 1.1,,Expert
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 1 1 1 RW MixedBits Digital Output 1.1 0 Basic
7 1 1 1 RW MixedBits Digital Output 1.2 1 Basic
8 1 1 1 RW MixedBits Digital Output 1.3 2 Basic
9 1 1 1 RW MixedBits Digital Output 1.4 3 Basic
10 2 2 1 RW Word Analog Output (raw value) 1.1 Obsolete
11 3 3 1 R Word Analog Input (raw value) 1.1 Obsolete
12 4 4 1 R Word Analog Input/Output (raw value) 1.1 Obsolete
13 5 5 1 R Word VRefInt of MCU Expert
14 6 6 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
15 7 7 1 R Word Length of RS485 TX Queue 1.1 Obsolete
16 8 8 2 RW DWord Counter of Digital Input 1.1 Basic
17 10 10 2 RW DWord Counter of Digital Input 1.2 Basic
18 12 12 2 RW DWord Counter of Digital Input 1.3 Basic
19 14 14 2 RW DWord Counter of Digital Input 1.4 Basic
20 16 16 1 RW Word PWM Duty Cycle of DO 1.1 Basic
21 17 17 1 RW Word PWM Duty Cycle of DO 1.2 Basic
22 18 18 1 RW Word PWM Duty Cycle of DO 1.3 Basic
23 19 19 1 RW Word PWM Duty Cycle of DO 1.4 Basic
24 20 20 1 RW MixedBits User LED 1.1 0 Basic
25 20 20 1 RW MixedBits User LED 1.2 1 Basic
26 20 20 1 RW MixedBits User LED 1.3 2 Basic
27 20 20 1 RW MixedBits User LED 1.4 3 Basic
28 21 21 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
29 21 21 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
30 21 21 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
31 21 21 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
32 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
33 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
34 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
35 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
36 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
37 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
38 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
39 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
40 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
41 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
42 505 505 1 W Word Reserved - Do Not Use Reserved
43 506 506 1 W Word Reserved - Do Not Use Reserved
44 507 507 1 W Word Reserved - Do Not Use Reserved
45 508 508 1 W Word Reserved - Do Not Use Reserved
46 509 509 1 W Word Reserved - Do Not Use Reserved
47 510 1 RW Word (Internal) Stored Firmware Version Expert
48 511 1 RW Word (Internal) Stored Firmware Revision Expert
49 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
50 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
51 514 1 RW Word (Internal) Stored PCB Revision Expert
52 515 1 RW Word (Internal) Stored PCB Serial Number Expert
53 516 1 RW Word (Internal) Stored HW Revision Number Expert
54 1000 1000 1 R Word Firmware Version Expert
55 1001 1001 1 R Word Number of I/Os Advanced
56 1002 1002 1 R Word Number of peripherals Advanced
57 1003 1003 1 R Word Firmware ID Expert
58 1004 1004 1 R Word Hardware ID Expert
59 1005 1005 2 R DWord PCB Serial Number Expert
60 1007 1007 1 RW Word Interrupt Mask Expert
61 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
62 1009 1009 1 R Word VRef of MCU Expert
63 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
64 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
65 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
66 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
67 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
68 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
69 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
70 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
71 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
72 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
73 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
74 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
75 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
76 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
77 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
78 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
79 1017 1017 1 RW Word PWM Group prescaler Basic
80 1018 1018 1 RW Word PWM Group cycle length Basic
81 1019 1019 1 RW Word Analog Output Configuration(U/I/R-measure) 1.1 Basic
82 1020 1020 1 RW Word Analog Output Voltage deviation 1.1 Expert
83 1021 1021 1 RW Word Analog Output Voltage offset 1.1 Expert
84 1022 1022 1 RW Word Analog Output Current deviation 1.1 Expert
85 1023 1023 1 RW Word Analog Output Current offset 1.1 Expert
86 1024 1024 1 RW Word Analog Input Configuration(U/I) 1.1 Basic
87 1025 1025 1 RW Word Analog Input Voltage deviation 1.1 Expert
88 1026 1026 1 RW Word Analog Input Voltage offset 1.1 Expert
89 1027 1027 1 RW Word Analog Input Current deviation 1.1 Expert
90 1028 1028 1 RW Word Analog Input Current offset 1.1 Expert
91 1029 1029 1 RW Word Analog Input/Output Voltage deviation (input side) 1.1 Expert
92 1030 1030 1 RW Word Analog Input/Output Voltage offset (input side) 1.1 Expert
93 1031 1031 1 RW MixedBits RS485 Configuration 1.1 Obsolete
94 2000 220 W Word Reserved - Do Not Use Reserved
95 3000 3000 2 RW Real Analog Output value 1.1 Basic
96 3002 3002 2 R Real Analog Input value 1.1 Basic
97 3004 3004 2 R Real (Internal) Analog Output measured voltage value 1.1 Expert

View File

@ -0,0 +1,89 @@
Via Unit 0,Via Unit 2,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
100,0,1,R,MixedBits,Digital Input 2.1,0,Basic
100,0,1,R,MixedBits,Digital Input 2.2,1,Basic
100,0,1,R,MixedBits,Digital Input 2.3,2,Basic
100,0,1,R,MixedBits,Digital Input 2.4,3,Basic
101,1,1,RW,MixedBits,Relay Output 2.1,0,Basic
101,1,1,RW,MixedBits,Relay Output 2.2,1,Basic
101,1,1,RW,MixedBits,Relay Output 2.3,2,Basic
101,1,1,RW,MixedBits,Relay Output 2.4,3,Basic
101,1,1,RW,MixedBits,Relay Output 2.5,4,Basic
102,2,1,RW,Word,Analog Output Value 2.1 (0..4000 ~ 0..10V),,Basic
103,3,1,RW,Word,Analog Output Value 2.2 (0..4000 ~ 0..10V),,Basic
104,4,1,RW,Word,Analog Output Value 2.3 (0..4000 ~ 0..10V),,Basic
105,5,1,RW,Word,Analog Output Value 2.4 (0..4000 ~ 0..10V),,Basic
106,6,2,R,Real,Analog Input Value 2.1,,Basic
108,8,2,R,Real,Analog Input Value 2.2,,Basic
110,10,2,R,Real,Analog Input Value 2.3,,Basic
112,12,2,R,Real,Analog Input Value 2.4,,Basic
114,14,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
115,15,1,R,Word,Length of RS485 TX Queue 2.1,,Obsolete
116,16,2,RW,DWord,Counter of Digital Input 2.1,,Basic
118,18,2,RW,DWord,Counter of Digital Input 2.2,,Basic
120,20,2,RW,DWord,Counter of Digital Input 2.3,,Basic
122,22,2,RW,DWord,Counter of Digital Input 2.4,,Basic
124,24,1,W,Word,Reserved - Do Not Use,,Reserved
125,25,1,W,Word,Reserved - Do Not Use,,Reserved
126,26,1,W,Word,Reserved - Do Not Use,,Reserved
127,27,1,W,Word,Reserved - Do Not Use,,Reserved
128,28,1,RW,MixedBits,Synchronised DO/RO 2.1,0,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.2,1,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.3,2,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.4,3,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.5,4,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.1,0,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.2,1,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.3,2,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.4,3,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.5,4,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 2.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 2.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 2.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 2.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 2.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 2.1,,Basic
605,505,1,W,Word,Reserved - Do Not Use,,Reserved
606,506,1,W,Word,Reserved - Do Not Use,,Reserved
607,507,1,W,Word,Reserved - Do Not Use,,Reserved
608,508,1,W,Word,Reserved - Do Not Use,,Reserved
609,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1100,1000,1,R,Word,Firmware Version,,Expert
1101,1001,1,R,Word,Number of I/Os,,Advanced
1102,1002,1,R,Word,Number of peripherals,,Advanced
1103,1003,1,R,Word,Firmware ID,,Expert
1104,1004,1,R,Word,Hardware ID,,Expert
1105,1005,2,R,DWord,PCB Serial Number,,Expert
1107,1007,1,RW,Word,Interrupt Mask,,Expert
1108,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1109,1009,1,R,Word,VRef of MCU,,Expert
1110,1010,1,RW,Word,Debounce time (in 100us) for DI 2.1,,Advanced
1111,1011,1,RW,Word,Debounce time (in 100us) for DI 2.2,,Advanced
1112,1012,1,RW,Word,Debounce time (in 100us) for DI 2.3,,Advanced
1113,1013,1,RW,Word,Debounce time (in 100us) for DI 2.4,,Advanced
1114,1014,1,RW,MixedBits,Enable DirectSwitch on DI 2.1,0,Basic
1114,1014,1,RW,MixedBits,Enable DirectSwitch on DI 2.2,1,Basic
1114,1014,1,RW,MixedBits,Enable DirectSwitch on DI 2.3,2,Basic
1114,1014,1,RW,MixedBits,Enable DirectSwitch on DI 2.4,3,Basic
1115,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.1,0,Basic
1115,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.2,1,Basic
1115,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.3,2,Basic
1115,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.4,3,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.1,0,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.2,1,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.3,2,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.4,3,Basic
1117,1017,1,W,Word,Reserved - Do Not Use,,Reserved
1118,1018,1,W,Word,Reserved - Do Not Use,,Reserved
1119,1019,1,RW,Word,Analog Input Configuration(U/I/R) 2.1,,Basic
1120,1020,1,RW,Word,Analog Input Configuration(U/I/R) 2.2,,Basic
1121,1021,1,RW,Word,Analog Input Configuration(U/I/R) 2.3,,Basic
1122,1022,1,RW,Word,Analog Input Configuration(U/I/R) 2.4,,Basic
1123,1023,1,RW,MixedBits,RS485 Configuration 2.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 2 Register Count R/W Data Type Content Start Bit Nr. Category
2 100 0 1 R MixedBits Digital Input 2.1 0 Basic
3 100 0 1 R MixedBits Digital Input 2.2 1 Basic
4 100 0 1 R MixedBits Digital Input 2.3 2 Basic
5 100 0 1 R MixedBits Digital Input 2.4 3 Basic
6 101 1 1 RW MixedBits Relay Output 2.1 0 Basic
7 101 1 1 RW MixedBits Relay Output 2.2 1 Basic
8 101 1 1 RW MixedBits Relay Output 2.3 2 Basic
9 101 1 1 RW MixedBits Relay Output 2.4 3 Basic
10 101 1 1 RW MixedBits Relay Output 2.5 4 Basic
11 102 2 1 RW Word Analog Output Value 2.1 (0..4000 ~ 0..10V) Basic
12 103 3 1 RW Word Analog Output Value 2.2 (0..4000 ~ 0..10V) Basic
13 104 4 1 RW Word Analog Output Value 2.3 (0..4000 ~ 0..10V) Basic
14 105 5 1 RW Word Analog Output Value 2.4 (0..4000 ~ 0..10V) Basic
15 106 6 2 R Real Analog Input Value 2.1 Basic
16 108 8 2 R Real Analog Input Value 2.2 Basic
17 110 10 2 R Real Analog Input Value 2.3 Basic
18 112 12 2 R Real Analog Input Value 2.4 Basic
19 114 14 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
20 115 15 1 R Word Length of RS485 TX Queue 2.1 Obsolete
21 116 16 2 RW DWord Counter of Digital Input 2.1 Basic
22 118 18 2 RW DWord Counter of Digital Input 2.2 Basic
23 120 20 2 RW DWord Counter of Digital Input 2.3 Basic
24 122 22 2 RW DWord Counter of Digital Input 2.4 Basic
25 124 24 1 W Word Reserved - Do Not Use Reserved
26 125 25 1 W Word Reserved - Do Not Use Reserved
27 126 26 1 W Word Reserved - Do Not Use Reserved
28 127 27 1 W Word Reserved - Do Not Use Reserved
29 128 28 1 RW MixedBits Synchronised DO/RO 2.1 0 Advanced
30 128 28 1 RW MixedBits Synchronised DO/RO 2.2 1 Advanced
31 128 28 1 RW MixedBits Synchronised DO/RO 2.3 2 Advanced
32 128 28 1 RW MixedBits Synchronised DO/RO 2.4 3 Advanced
33 128 28 1 RW MixedBits Synchronised DO/RO 2.5 4 Advanced
34 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.1 0 Advanced
35 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.2 1 Advanced
36 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.3 2 Advanced
37 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.4 3 Advanced
38 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.5 4 Advanced
39 100 2 RW DWord (Internal) RS485 Full Mode Configuration 2.1 Obsolete
40 500 1 RW Word RS485 TERMIOS CFlags 2.1 Expert
41 501 1 RW Word RS485 TERMIOS LFlags 2.1 Expert
42 502 1 RW Word RS485 TERMIOS IFlags 2.1 Expert
43 503 1 RW Word RS485 TERMIOS LDisc 2.1 Expert
44 504 1 RW Word RS485 ModBus Timeout 2.1 Basic
45 605 505 1 W Word Reserved - Do Not Use Reserved
46 606 506 1 W Word Reserved - Do Not Use Reserved
47 607 507 1 W Word Reserved - Do Not Use Reserved
48 608 508 1 W Word Reserved - Do Not Use Reserved
49 609 509 1 W Word Reserved - Do Not Use Reserved
50 510 1 RW Word (Internal) Stored Firmware Version Expert
51 511 1 RW Word (Internal) Stored Firmware Revision Expert
52 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
53 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
54 514 1 RW Word (Internal) Stored PCB Revision Expert
55 515 1 RW Word (Internal) Stored PCB Serial Number Expert
56 516 1 RW Word (Internal) Stored HW Revision Number Expert
57 1100 1000 1 R Word Firmware Version Expert
58 1101 1001 1 R Word Number of I/Os Advanced
59 1102 1002 1 R Word Number of peripherals Advanced
60 1103 1003 1 R Word Firmware ID Expert
61 1104 1004 1 R Word Hardware ID Expert
62 1105 1005 2 R DWord PCB Serial Number Expert
63 1107 1007 1 RW Word Interrupt Mask Expert
64 1108 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
65 1109 1009 1 R Word VRef of MCU Expert
66 1110 1010 1 RW Word Debounce time (in 100us) for DI 2.1 Advanced
67 1111 1011 1 RW Word Debounce time (in 100us) for DI 2.2 Advanced
68 1112 1012 1 RW Word Debounce time (in 100us) for DI 2.3 Advanced
69 1113 1013 1 RW Word Debounce time (in 100us) for DI 2.4 Advanced
70 1114 1014 1 RW MixedBits Enable DirectSwitch on DI 2.1 0 Basic
71 1114 1014 1 RW MixedBits Enable DirectSwitch on DI 2.2 1 Basic
72 1114 1014 1 RW MixedBits Enable DirectSwitch on DI 2.3 2 Basic
73 1114 1014 1 RW MixedBits Enable DirectSwitch on DI 2.4 3 Basic
74 1115 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.1 0 Basic
75 1115 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.2 1 Basic
76 1115 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.3 2 Basic
77 1115 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.4 3 Basic
78 1116 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.1 0 Basic
79 1116 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.2 1 Basic
80 1116 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.3 2 Basic
81 1116 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.4 3 Basic
82 1117 1017 1 W Word Reserved - Do Not Use Reserved
83 1118 1018 1 W Word Reserved - Do Not Use Reserved
84 1119 1019 1 RW Word Analog Input Configuration(U/I/R) 2.1 Basic
85 1120 1020 1 RW Word Analog Input Configuration(U/I/R) 2.2 Basic
86 1121 1021 1 RW Word Analog Input Configuration(U/I/R) 2.3 Basic
87 1122 1022 1 RW Word Analog Input Configuration(U/I/R) 2.4 Basic
88 1123 1023 1 RW MixedBits RS485 Configuration 2.1 Obsolete
89 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,89 @@
Via Unit 0,Via Unit 3,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
200,0,1,R,MixedBits,Digital Input 3.1,0,Basic
200,0,1,R,MixedBits,Digital Input 3.2,1,Basic
200,0,1,R,MixedBits,Digital Input 3.3,2,Basic
200,0,1,R,MixedBits,Digital Input 3.4,3,Basic
201,1,1,RW,MixedBits,Relay Output 3.1,0,Basic
201,1,1,RW,MixedBits,Relay Output 3.2,1,Basic
201,1,1,RW,MixedBits,Relay Output 3.3,2,Basic
201,1,1,RW,MixedBits,Relay Output 3.4,3,Basic
201,1,1,RW,MixedBits,Relay Output 3.5,4,Basic
202,2,1,RW,Word,Analog Output Value 3.1 (0..4000 ~ 0..10V),,Basic
203,3,1,RW,Word,Analog Output Value 3.2 (0..4000 ~ 0..10V),,Basic
204,4,1,RW,Word,Analog Output Value 3.3 (0..4000 ~ 0..10V),,Basic
205,5,1,RW,Word,Analog Output Value 3.4 (0..4000 ~ 0..10V),,Basic
206,6,2,R,Real,Analog Input Value 3.1,,Basic
208,8,2,R,Real,Analog Input Value 3.2,,Basic
210,10,2,R,Real,Analog Input Value 3.3,,Basic
212,12,2,R,Real,Analog Input Value 3.4,,Basic
214,14,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
215,15,1,R,Word,Length of RS485 TX Queue 3.1,,Obsolete
216,16,2,RW,DWord,Counter of Digital Input 3.1,,Basic
218,18,2,RW,DWord,Counter of Digital Input 3.2,,Basic
220,20,2,RW,DWord,Counter of Digital Input 3.3,,Basic
222,22,2,RW,DWord,Counter of Digital Input 3.4,,Basic
224,24,1,W,Word,Reserved - Do Not Use,,Reserved
225,25,1,W,Word,Reserved - Do Not Use,,Reserved
226,26,1,W,Word,Reserved - Do Not Use,,Reserved
227,27,1,W,Word,Reserved - Do Not Use,,Reserved
228,28,1,RW,MixedBits,Synchronised DO/RO 3.1,0,Advanced
228,28,1,RW,MixedBits,Synchronised DO/RO 3.2,1,Advanced
228,28,1,RW,MixedBits,Synchronised DO/RO 3.3,2,Advanced
228,28,1,RW,MixedBits,Synchronised DO/RO 3.4,3,Advanced
228,28,1,RW,MixedBits,Synchronised DO/RO 3.5,4,Advanced
229,29,1,RW,MixedBits,Synchronised DO/RO Lock 3.1,0,Advanced
229,29,1,RW,MixedBits,Synchronised DO/RO Lock 3.2,1,Advanced
229,29,1,RW,MixedBits,Synchronised DO/RO Lock 3.3,2,Advanced
229,29,1,RW,MixedBits,Synchronised DO/RO Lock 3.4,3,Advanced
229,29,1,RW,MixedBits,Synchronised DO/RO Lock 3.5,4,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 3.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 3.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 3.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 3.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 3.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 3.1,,Basic
705,505,1,W,Word,Reserved - Do Not Use,,Reserved
706,506,1,W,Word,Reserved - Do Not Use,,Reserved
707,507,1,W,Word,Reserved - Do Not Use,,Reserved
708,508,1,W,Word,Reserved - Do Not Use,,Reserved
709,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1200,1000,1,R,Word,Firmware Version,,Expert
1201,1001,1,R,Word,Number of I/Os,,Advanced
1202,1002,1,R,Word,Number of peripherals,,Advanced
1203,1003,1,R,Word,Firmware ID,,Expert
1204,1004,1,R,Word,Hardware ID,,Expert
1205,1005,2,R,DWord,PCB Serial Number,,Expert
1207,1007,1,RW,Word,Interrupt Mask,,Expert
1208,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1209,1009,1,R,Word,VRef of MCU,,Expert
1210,1010,1,RW,Word,Debounce time (in 100us) for DI 3.1,,Advanced
1211,1011,1,RW,Word,Debounce time (in 100us) for DI 3.2,,Advanced
1212,1012,1,RW,Word,Debounce time (in 100us) for DI 3.3,,Advanced
1213,1013,1,RW,Word,Debounce time (in 100us) for DI 3.4,,Advanced
1214,1014,1,RW,MixedBits,Enable DirectSwitch on DI 3.1,0,Basic
1214,1014,1,RW,MixedBits,Enable DirectSwitch on DI 3.2,1,Basic
1214,1014,1,RW,MixedBits,Enable DirectSwitch on DI 3.3,2,Basic
1214,1014,1,RW,MixedBits,Enable DirectSwitch on DI 3.4,3,Basic
1215,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.1,0,Basic
1215,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.2,1,Basic
1215,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.3,2,Basic
1215,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 3.4,3,Basic
1216,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.1,0,Basic
1216,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.2,1,Basic
1216,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.3,2,Basic
1216,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 3.4,3,Basic
1217,1017,1,W,Word,Reserved - Do Not Use,,Reserved
1218,1018,1,W,Word,Reserved - Do Not Use,,Reserved
1219,1019,1,RW,Word,Analog Input Configuration(U/I/R) 3.1,,Basic
1220,1020,1,RW,Word,Analog Input Configuration(U/I/R) 3.2,,Basic
1221,1021,1,RW,Word,Analog Input Configuration(U/I/R) 3.3,,Basic
1222,1022,1,RW,Word,Analog Input Configuration(U/I/R) 3.4,,Basic
1223,1023,1,RW,MixedBits,RS485 Configuration 3.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 3 Register Count R/W Data Type Content Start Bit Nr. Category
2 200 0 1 R MixedBits Digital Input 3.1 0 Basic
3 200 0 1 R MixedBits Digital Input 3.2 1 Basic
4 200 0 1 R MixedBits Digital Input 3.3 2 Basic
5 200 0 1 R MixedBits Digital Input 3.4 3 Basic
6 201 1 1 RW MixedBits Relay Output 3.1 0 Basic
7 201 1 1 RW MixedBits Relay Output 3.2 1 Basic
8 201 1 1 RW MixedBits Relay Output 3.3 2 Basic
9 201 1 1 RW MixedBits Relay Output 3.4 3 Basic
10 201 1 1 RW MixedBits Relay Output 3.5 4 Basic
11 202 2 1 RW Word Analog Output Value 3.1 (0..4000 ~ 0..10V) Basic
12 203 3 1 RW Word Analog Output Value 3.2 (0..4000 ~ 0..10V) Basic
13 204 4 1 RW Word Analog Output Value 3.3 (0..4000 ~ 0..10V) Basic
14 205 5 1 RW Word Analog Output Value 3.4 (0..4000 ~ 0..10V) Basic
15 206 6 2 R Real Analog Input Value 3.1 Basic
16 208 8 2 R Real Analog Input Value 3.2 Basic
17 210 10 2 R Real Analog Input Value 3.3 Basic
18 212 12 2 R Real Analog Input Value 3.4 Basic
19 214 14 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
20 215 15 1 R Word Length of RS485 TX Queue 3.1 Obsolete
21 216 16 2 RW DWord Counter of Digital Input 3.1 Basic
22 218 18 2 RW DWord Counter of Digital Input 3.2 Basic
23 220 20 2 RW DWord Counter of Digital Input 3.3 Basic
24 222 22 2 RW DWord Counter of Digital Input 3.4 Basic
25 224 24 1 W Word Reserved - Do Not Use Reserved
26 225 25 1 W Word Reserved - Do Not Use Reserved
27 226 26 1 W Word Reserved - Do Not Use Reserved
28 227 27 1 W Word Reserved - Do Not Use Reserved
29 228 28 1 RW MixedBits Synchronised DO/RO 3.1 0 Advanced
30 228 28 1 RW MixedBits Synchronised DO/RO 3.2 1 Advanced
31 228 28 1 RW MixedBits Synchronised DO/RO 3.3 2 Advanced
32 228 28 1 RW MixedBits Synchronised DO/RO 3.4 3 Advanced
33 228 28 1 RW MixedBits Synchronised DO/RO 3.5 4 Advanced
34 229 29 1 RW MixedBits Synchronised DO/RO Lock 3.1 0 Advanced
35 229 29 1 RW MixedBits Synchronised DO/RO Lock 3.2 1 Advanced
36 229 29 1 RW MixedBits Synchronised DO/RO Lock 3.3 2 Advanced
37 229 29 1 RW MixedBits Synchronised DO/RO Lock 3.4 3 Advanced
38 229 29 1 RW MixedBits Synchronised DO/RO Lock 3.5 4 Advanced
39 100 2 RW DWord (Internal) RS485 Full Mode Configuration 3.1 Obsolete
40 500 1 RW Word RS485 TERMIOS CFlags 3.1 Expert
41 501 1 RW Word RS485 TERMIOS LFlags 3.1 Expert
42 502 1 RW Word RS485 TERMIOS IFlags 3.1 Expert
43 503 1 RW Word RS485 TERMIOS LDisc 3.1 Expert
44 504 1 RW Word RS485 ModBus Timeout 3.1 Basic
45 705 505 1 W Word Reserved - Do Not Use Reserved
46 706 506 1 W Word Reserved - Do Not Use Reserved
47 707 507 1 W Word Reserved - Do Not Use Reserved
48 708 508 1 W Word Reserved - Do Not Use Reserved
49 709 509 1 W Word Reserved - Do Not Use Reserved
50 510 1 RW Word (Internal) Stored Firmware Version Expert
51 511 1 RW Word (Internal) Stored Firmware Revision Expert
52 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
53 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
54 514 1 RW Word (Internal) Stored PCB Revision Expert
55 515 1 RW Word (Internal) Stored PCB Serial Number Expert
56 516 1 RW Word (Internal) Stored HW Revision Number Expert
57 1200 1000 1 R Word Firmware Version Expert
58 1201 1001 1 R Word Number of I/Os Advanced
59 1202 1002 1 R Word Number of peripherals Advanced
60 1203 1003 1 R Word Firmware ID Expert
61 1204 1004 1 R Word Hardware ID Expert
62 1205 1005 2 R DWord PCB Serial Number Expert
63 1207 1007 1 RW Word Interrupt Mask Expert
64 1208 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
65 1209 1009 1 R Word VRef of MCU Expert
66 1210 1010 1 RW Word Debounce time (in 100us) for DI 3.1 Advanced
67 1211 1011 1 RW Word Debounce time (in 100us) for DI 3.2 Advanced
68 1212 1012 1 RW Word Debounce time (in 100us) for DI 3.3 Advanced
69 1213 1013 1 RW Word Debounce time (in 100us) for DI 3.4 Advanced
70 1214 1014 1 RW MixedBits Enable DirectSwitch on DI 3.1 0 Basic
71 1214 1014 1 RW MixedBits Enable DirectSwitch on DI 3.2 1 Basic
72 1214 1014 1 RW MixedBits Enable DirectSwitch on DI 3.3 2 Basic
73 1214 1014 1 RW MixedBits Enable DirectSwitch on DI 3.4 3 Basic
74 1215 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.1 0 Basic
75 1215 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.2 1 Basic
76 1215 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.3 2 Basic
77 1215 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 3.4 3 Basic
78 1216 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.1 0 Basic
79 1216 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.2 1 Basic
80 1216 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.3 2 Basic
81 1216 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 3.4 3 Basic
82 1217 1017 1 W Word Reserved - Do Not Use Reserved
83 1218 1018 1 W Word Reserved - Do Not Use Reserved
84 1219 1019 1 RW Word Analog Input Configuration(U/I/R) 3.1 Basic
85 1220 1020 1 RW Word Analog Input Configuration(U/I/R) 3.2 Basic
86 1221 1021 1 RW Word Analog Input Configuration(U/I/R) 3.3 Basic
87 1222 1022 1 RW Word Analog Input Configuration(U/I/R) 3.4 Basic
88 1223 1023 1 RW MixedBits RS485 Configuration 3.1 Obsolete
89 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,32 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Digital Output 1.1,Basic
1,1,RW,Digital Output 1.2,Basic
2,2,RW,Digital Output 1.3,Basic
3,3,RW,Digital Output 1.4,Basic
4,4,R,Digital Input 1.1,Basic
5,5,R,Digital Input 1.2,Basic
6,6,R,Digital Input 1.3,Basic
7,7,R,Digital Input 1.4,Basic
8,8,RW,User Programmable LED 1.1,Basic
9,9,RW,User Programmable LED 1.2,Basic
10,10,RW,User Programmable LED 1.3,Basic
11,11,RW,User Programmable LED 1.4,Basic
1000,1000,RW,MWD reset indication,Advanced
1001,1001,RW,Enable/Disable 1Wire Bus,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1012,1012,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1013,1013,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1014,1014,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1015,1015,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1016,1016,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1017,1017,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1018,1018,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Digital Output 1.1 Basic
3 1 1 RW Digital Output 1.2 Basic
4 2 2 RW Digital Output 1.3 Basic
5 3 3 RW Digital Output 1.4 Basic
6 4 4 R Digital Input 1.1 Basic
7 5 5 R Digital Input 1.2 Basic
8 6 6 R Digital Input 1.3 Basic
9 7 7 R Digital Input 1.4 Basic
10 8 8 RW User Programmable LED 1.1 Basic
11 9 9 RW User Programmable LED 1.2 Basic
12 10 10 RW User Programmable LED 1.3 Basic
13 11 11 RW User Programmable LED 1.4 Basic
14 1000 1000 RW MWD reset indication Advanced
15 1001 1001 RW Enable/Disable 1Wire Bus Advanced
16 1002 1002 R Reset group MCU Advanced
17 1003 1003 RW Save current configuration and use on startup Advanced
18 1004 1004 RW (Internal) Firmware programming toggle Expert
19 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
20 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
21 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
22 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
23 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
24 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
25 1011 1011 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
26 1012 1012 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
27 1013 1013 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
28 1014 1014 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
29 1015 1015 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
30 1016 1016 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
31 1017 1017 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
32 1018 1018 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced

View File

@ -0,0 +1,47 @@
Via Unit 0,Via Unit 2,R/W,Content,Category
100,0,RW,Relay Output 2.1,Basic
101,1,RW,Relay Output 2.2,Basic
102,2,RW,Relay Output 2.3,Basic
103,3,RW,Relay Output 2.4,Basic
104,4,RW,Relay Output 2.5,Basic
105,5,RW,Relay Output 2.6,Basic
106,6,RW,Relay Output 2.7,Basic
107,7,RW,Relay Output 2.8,Basic
108,8,R,Digital Input 2.1,Basic
109,9,R,Digital Input 2.2,Basic
110,10,R,Digital Input 2.3,Basic
111,11,R,Digital Input 2.4,Basic
112,12,R,Digital Input 2.5,Basic
113,13,R,Digital Input 2.6,Basic
114,14,R,Digital Input 2.7,Basic
115,15,R,Digital Input 2.8,Basic
1100,1000,RW,MWD reset indication,Advanced
1102,1002,R,Reset group MCU,Advanced
1103,1003,RW,Save current configuration and use on startup,Advanced
1104,1004,RW,(Internal) Firmware programming toggle,Expert
1105,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1106,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1107,1007,RW,Enable DirectSwitch on DI 2.1,Advanced
1108,1008,RW,Enable DirectSwitch on DI 2.2,Advanced
1109,1009,RW,Enable DirectSwitch on DI 2.3,Advanced
1110,1010,RW,Enable DirectSwitch on DI 2.4,Advanced
1111,1011,RW,Enable DirectSwitch on DI 2.5,Advanced
1112,1012,RW,Enable DirectSwitch on DI 2.6,Advanced
1113,1013,RW,Enable DirectSwitch on DI 2.7,Advanced
1114,1014,RW,Enable DirectSwitch on DI 2.8,Advanced
1115,1015,RW,Invert DirectSwitch Polarity on DI 2.1,Advanced
1116,1016,RW,Invert DirectSwitch Polarity on DI 2.2,Advanced
1117,1017,RW,Invert DirectSwitch Polarity on DI 2.3,Advanced
1118,1018,RW,Invert DirectSwitch Polarity on DI 2.4,Advanced
1119,1019,RW,Invert DirectSwitch Polarity on DI 2.5,Advanced
1120,1020,RW,Invert DirectSwitch Polarity on DI 2.6,Advanced
1121,1021,RW,Invert DirectSwitch Polarity on DI 2.7,Advanced
1122,1022,RW,Invert DirectSwitch Polarity on DI 2.8,Advanced
1123,1023,RW,Enable DirectSwitch Toggle Mode on DI 2.1,Advanced
1124,1024,RW,Enable DirectSwitch Toggle Mode on DI 2.2,Advanced
1125,1025,RW,Enable DirectSwitch Toggle Mode on DI 2.3,Advanced
1126,1026,RW,Enable DirectSwitch Toggle Mode on DI 2.4,Advanced
1127,1027,RW,Enable DirectSwitch Toggle Mode on DI 2.5,Advanced
1128,1028,RW,Enable DirectSwitch Toggle Mode on DI 2.6,Advanced
1129,1029,RW,Enable DirectSwitch Toggle Mode on DI 2.7,Advanced
1130,1030,RW,Enable DirectSwitch Toggle Mode on DI 2.8,Advanced
1 Via Unit 0 Via Unit 2 R/W Content Category
2 100 0 RW Relay Output 2.1 Basic
3 101 1 RW Relay Output 2.2 Basic
4 102 2 RW Relay Output 2.3 Basic
5 103 3 RW Relay Output 2.4 Basic
6 104 4 RW Relay Output 2.5 Basic
7 105 5 RW Relay Output 2.6 Basic
8 106 6 RW Relay Output 2.7 Basic
9 107 7 RW Relay Output 2.8 Basic
10 108 8 R Digital Input 2.1 Basic
11 109 9 R Digital Input 2.2 Basic
12 110 10 R Digital Input 2.3 Basic
13 111 11 R Digital Input 2.4 Basic
14 112 12 R Digital Input 2.5 Basic
15 113 13 R Digital Input 2.6 Basic
16 114 14 R Digital Input 2.7 Basic
17 115 15 R Digital Input 2.8 Basic
18 1100 1000 RW MWD reset indication Advanced
19 1102 1002 R Reset group MCU Advanced
20 1103 1003 RW Save current configuration and use on startup Advanced
21 1104 1004 RW (Internal) Firmware programming toggle Expert
22 1105 1005 RW (Internal) Firmware reprogramming toggle Expert
23 1106 1006 RW (Internal) Firmware calibration programming toggle Expert
24 1107 1007 RW Enable DirectSwitch on DI 2.1 Advanced
25 1108 1008 RW Enable DirectSwitch on DI 2.2 Advanced
26 1109 1009 RW Enable DirectSwitch on DI 2.3 Advanced
27 1110 1010 RW Enable DirectSwitch on DI 2.4 Advanced
28 1111 1011 RW Enable DirectSwitch on DI 2.5 Advanced
29 1112 1012 RW Enable DirectSwitch on DI 2.6 Advanced
30 1113 1013 RW Enable DirectSwitch on DI 2.7 Advanced
31 1114 1014 RW Enable DirectSwitch on DI 2.8 Advanced
32 1115 1015 RW Invert DirectSwitch Polarity on DI 2.1 Advanced
33 1116 1016 RW Invert DirectSwitch Polarity on DI 2.2 Advanced
34 1117 1017 RW Invert DirectSwitch Polarity on DI 2.3 Advanced
35 1118 1018 RW Invert DirectSwitch Polarity on DI 2.4 Advanced
36 1119 1019 RW Invert DirectSwitch Polarity on DI 2.5 Advanced
37 1120 1020 RW Invert DirectSwitch Polarity on DI 2.6 Advanced
38 1121 1021 RW Invert DirectSwitch Polarity on DI 2.7 Advanced
39 1122 1022 RW Invert DirectSwitch Polarity on DI 2.8 Advanced
40 1123 1023 RW Enable DirectSwitch Toggle Mode on DI 2.1 Advanced
41 1124 1024 RW Enable DirectSwitch Toggle Mode on DI 2.2 Advanced
42 1125 1025 RW Enable DirectSwitch Toggle Mode on DI 2.3 Advanced
43 1126 1026 RW Enable DirectSwitch Toggle Mode on DI 2.4 Advanced
44 1127 1027 RW Enable DirectSwitch Toggle Mode on DI 2.5 Advanced
45 1128 1028 RW Enable DirectSwitch Toggle Mode on DI 2.6 Advanced
46 1129 1029 RW Enable DirectSwitch Toggle Mode on DI 2.7 Advanced
47 1130 1030 RW Enable DirectSwitch Toggle Mode on DI 2.8 Advanced

View File

@ -0,0 +1,97 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
1,1,1,RW,MixedBits,Digital Output 1.1,0,Basic
1,1,1,RW,MixedBits,Digital Output 1.2,1,Basic
1,1,1,RW,MixedBits,Digital Output 1.3,2,Basic
1,1,1,RW,MixedBits,Digital Output 1.4,3,Basic
2,2,1,RW,Word,Analog Output (raw value) 1.1,,Obsolete
3,3,1,R,Word,Analog Input (raw value) 1.1,,Obsolete
4,4,1,R,Word,Analog Input/Output (raw value) 1.1,,Obsolete
5,5,1,R,Word,VRefInt of MCU,,Expert
6,6,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
7,7,1,R,Word,Length of RS485 TX Queue 1.1,,Obsolete
8,8,2,RW,DWord,Counter of Digital Input 1.1,,Basic
10,10,2,RW,DWord,Counter of Digital Input 1.2,,Basic
12,12,2,RW,DWord,Counter of Digital Input 1.3,,Basic
14,14,2,RW,DWord,Counter of Digital Input 1.4,,Basic
16,16,1,RW,Word,PWM Duty Cycle of DO 1.1,,Basic
17,17,1,RW,Word,PWM Duty Cycle of DO 1.2,,Basic
18,18,1,RW,Word,PWM Duty Cycle of DO 1.3,,Basic
19,19,1,RW,Word,PWM Duty Cycle of DO 1.4,,Basic
20,20,1,RW,MixedBits,User LED 1.1,0,Basic
20,20,1,RW,MixedBits,User LED 1.2,1,Basic
20,20,1,RW,MixedBits,User LED 1.3,2,Basic
20,20,1,RW,MixedBits,User LED 1.4,3,Basic
21,21,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1017,1017,1,RW,Word,PWM Group prescaler,,Basic
1018,1018,1,RW,Word,PWM Group cycle length,,Basic
1019,1019,1,RW,Word,Analog Output Configuration(U/I/R-measure) 1.1,,Basic
1020,1020,1,RW,Word,Analog Output Voltage deviation 1.1,,Expert
1021,1021,1,RW,Word,Analog Output Voltage offset 1.1,,Expert
1022,1022,1,RW,Word,Analog Output Current deviation 1.1,,Expert
1023,1023,1,RW,Word,Analog Output Current offset 1.1,,Expert
1024,1024,1,RW,Word,Analog Input Configuration(U/I) 1.1,,Basic
1025,1025,1,RW,Word,Analog Input Voltage deviation 1.1,,Expert
1026,1026,1,RW,Word,Analog Input Voltage offset 1.1,,Expert
1027,1027,1,RW,Word,Analog Input Current deviation 1.1,,Expert
1028,1028,1,RW,Word,Analog Input Current offset 1.1,,Expert
1029,1029,1,RW,Word,Analog Input/Output Voltage deviation (input side) 1.1,,Expert
1030,1030,1,RW,Word,Analog Input/Output Voltage offset (input side) 1.1,,Expert
1031,1031,1,RW,MixedBits,RS485 Configuration 1.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
3000,3000,2,RW,Real,Analog Output value 1.1,,Basic
3002,3002,2,R,Real,Analog Input value 1.1,,Basic
3004,3004,2,R,Real,(Internal) Analog Output measured voltage value 1.1,,Expert
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 1 1 1 RW MixedBits Digital Output 1.1 0 Basic
7 1 1 1 RW MixedBits Digital Output 1.2 1 Basic
8 1 1 1 RW MixedBits Digital Output 1.3 2 Basic
9 1 1 1 RW MixedBits Digital Output 1.4 3 Basic
10 2 2 1 RW Word Analog Output (raw value) 1.1 Obsolete
11 3 3 1 R Word Analog Input (raw value) 1.1 Obsolete
12 4 4 1 R Word Analog Input/Output (raw value) 1.1 Obsolete
13 5 5 1 R Word VRefInt of MCU Expert
14 6 6 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
15 7 7 1 R Word Length of RS485 TX Queue 1.1 Obsolete
16 8 8 2 RW DWord Counter of Digital Input 1.1 Basic
17 10 10 2 RW DWord Counter of Digital Input 1.2 Basic
18 12 12 2 RW DWord Counter of Digital Input 1.3 Basic
19 14 14 2 RW DWord Counter of Digital Input 1.4 Basic
20 16 16 1 RW Word PWM Duty Cycle of DO 1.1 Basic
21 17 17 1 RW Word PWM Duty Cycle of DO 1.2 Basic
22 18 18 1 RW Word PWM Duty Cycle of DO 1.3 Basic
23 19 19 1 RW Word PWM Duty Cycle of DO 1.4 Basic
24 20 20 1 RW MixedBits User LED 1.1 0 Basic
25 20 20 1 RW MixedBits User LED 1.2 1 Basic
26 20 20 1 RW MixedBits User LED 1.3 2 Basic
27 20 20 1 RW MixedBits User LED 1.4 3 Basic
28 21 21 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
29 21 21 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
30 21 21 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
31 21 21 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
32 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
33 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
34 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
35 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
36 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
37 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
38 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
39 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
40 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
41 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
42 505 505 1 W Word Reserved - Do Not Use Reserved
43 506 506 1 W Word Reserved - Do Not Use Reserved
44 507 507 1 W Word Reserved - Do Not Use Reserved
45 508 508 1 W Word Reserved - Do Not Use Reserved
46 509 509 1 W Word Reserved - Do Not Use Reserved
47 510 1 RW Word (Internal) Stored Firmware Version Expert
48 511 1 RW Word (Internal) Stored Firmware Revision Expert
49 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
50 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
51 514 1 RW Word (Internal) Stored PCB Revision Expert
52 515 1 RW Word (Internal) Stored PCB Serial Number Expert
53 516 1 RW Word (Internal) Stored HW Revision Number Expert
54 1000 1000 1 R Word Firmware Version Expert
55 1001 1001 1 R Word Number of I/Os Advanced
56 1002 1002 1 R Word Number of peripherals Advanced
57 1003 1003 1 R Word Firmware ID Expert
58 1004 1004 1 R Word Hardware ID Expert
59 1005 1005 2 R DWord PCB Serial Number Expert
60 1007 1007 1 RW Word Interrupt Mask Expert
61 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
62 1009 1009 1 R Word VRef of MCU Expert
63 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
64 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
65 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
66 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
67 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
68 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
69 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
70 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
71 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
72 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
73 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
74 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
75 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
76 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
77 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
78 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
79 1017 1017 1 RW Word PWM Group prescaler Basic
80 1018 1018 1 RW Word PWM Group cycle length Basic
81 1019 1019 1 RW Word Analog Output Configuration(U/I/R-measure) 1.1 Basic
82 1020 1020 1 RW Word Analog Output Voltage deviation 1.1 Expert
83 1021 1021 1 RW Word Analog Output Voltage offset 1.1 Expert
84 1022 1022 1 RW Word Analog Output Current deviation 1.1 Expert
85 1023 1023 1 RW Word Analog Output Current offset 1.1 Expert
86 1024 1024 1 RW Word Analog Input Configuration(U/I) 1.1 Basic
87 1025 1025 1 RW Word Analog Input Voltage deviation 1.1 Expert
88 1026 1026 1 RW Word Analog Input Voltage offset 1.1 Expert
89 1027 1027 1 RW Word Analog Input Current deviation 1.1 Expert
90 1028 1028 1 RW Word Analog Input Current offset 1.1 Expert
91 1029 1029 1 RW Word Analog Input/Output Voltage deviation (input side) 1.1 Expert
92 1030 1030 1 RW Word Analog Input/Output Voltage offset (input side) 1.1 Expert
93 1031 1031 1 RW MixedBits RS485 Configuration 1.1 Obsolete
94 2000 220 W Word Reserved - Do Not Use Reserved
95 3000 3000 2 RW Real Analog Output value 1.1 Basic
96 3002 3002 2 R Real Analog Input value 1.1 Basic
97 3004 3004 2 R Real (Internal) Analog Output measured voltage value 1.1 Expert

View File

@ -0,0 +1,108 @@
Via Unit 0,Via Unit 2,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
100,0,1,R,MixedBits,Digital Input 2.1,0,Basic
100,0,1,R,MixedBits,Digital Input 2.2,1,Basic
100,0,1,R,MixedBits,Digital Input 2.3,2,Basic
100,0,1,R,MixedBits,Digital Input 2.4,3,Basic
100,0,1,R,MixedBits,Digital Input 2.5,4,Basic
100,0,1,R,MixedBits,Digital Input 2.6,5,Basic
100,0,1,R,MixedBits,Digital Input 2.7,6,Basic
100,0,1,R,MixedBits,Digital Input 2.8,7,Basic
101,1,1,RW,MixedBits,Relay Output 2.1,0,Basic
101,1,1,RW,MixedBits,Relay Output 2.2,1,Basic
101,1,1,RW,MixedBits,Relay Output 2.3,2,Basic
101,1,1,RW,MixedBits,Relay Output 2.4,3,Basic
101,1,1,RW,MixedBits,Relay Output 2.5,4,Basic
101,1,1,RW,MixedBits,Relay Output 2.6,5,Basic
101,1,1,RW,MixedBits,Relay Output 2.7,6,Basic
101,1,1,RW,MixedBits,Relay Output 2.8,7,Basic
102,2,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
103,3,2,RW,DWord,Counter of Digital Input 2.1,,Basic
105,5,2,RW,DWord,Counter of Digital Input 2.2,,Basic
107,7,2,RW,DWord,Counter of Digital Input 2.3,,Basic
109,9,2,RW,DWord,Counter of Digital Input 2.4,,Basic
111,11,2,RW,DWord,Counter of Digital Input 2.5,,Basic
113,13,2,RW,DWord,Counter of Digital Input 2.6,,Basic
115,15,2,RW,DWord,Counter of Digital Input 2.7,,Basic
117,17,2,RW,DWord,Counter of Digital Input 2.8,,Basic
119,19,1,W,Word,Reserved - Do Not Use,,Reserved
120,20,1,W,Word,Reserved - Do Not Use,,Reserved
121,21,1,W,Word,Reserved - Do Not Use,,Reserved
122,22,1,W,Word,Reserved - Do Not Use,,Reserved
123,23,1,RW,MixedBits,Synchronised DO/RO 2.1,0,Advanced
123,23,1,RW,MixedBits,Synchronised DO/RO 2.2,1,Advanced
123,23,1,RW,MixedBits,Synchronised DO/RO 2.3,2,Advanced
123,23,1,RW,MixedBits,Synchronised DO/RO 2.4,3,Advanced
123,23,1,RW,MixedBits,Synchronised DO/RO 2.5,4,Advanced
123,23,1,RW,MixedBits,Synchronised DO/RO 2.6,5,Advanced
123,23,1,RW,MixedBits,Synchronised DO/RO 2.7,6,Advanced
123,23,1,RW,MixedBits,Synchronised DO/RO 2.8,7,Advanced
124,24,1,RW,MixedBits,Synchronised DO/RO Lock 2.1,0,Advanced
124,24,1,RW,MixedBits,Synchronised DO/RO Lock 2.2,1,Advanced
124,24,1,RW,MixedBits,Synchronised DO/RO Lock 2.3,2,Advanced
124,24,1,RW,MixedBits,Synchronised DO/RO Lock 2.4,3,Advanced
124,24,1,RW,MixedBits,Synchronised DO/RO Lock 2.5,4,Advanced
124,24,1,RW,MixedBits,Synchronised DO/RO Lock 2.6,5,Advanced
124,24,1,RW,MixedBits,Synchronised DO/RO Lock 2.7,6,Advanced
124,24,1,RW,MixedBits,Synchronised DO/RO Lock 2.8,7,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 2.1,,Obsolete
600,500,1,W,Word,Reserved - Do Not Use,,Reserved
601,501,1,W,Word,Reserved - Do Not Use,,Reserved
602,502,1,W,Word,Reserved - Do Not Use,,Reserved
603,503,1,W,Word,Reserved - Do Not Use,,Reserved
604,504,1,W,Word,Reserved - Do Not Use,,Reserved
605,505,1,W,Word,Reserved - Do Not Use,,Reserved
606,506,1,W,Word,Reserved - Do Not Use,,Reserved
607,507,1,W,Word,Reserved - Do Not Use,,Reserved
608,508,1,W,Word,Reserved - Do Not Use,,Reserved
609,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1100,1000,1,R,Word,Firmware Version,,Expert
1101,1001,1,R,Word,Number of I/Os,,Advanced
1102,1002,1,R,Word,Number of peripherals,,Advanced
1103,1003,1,R,Word,Firmware ID,,Expert
1104,1004,1,R,Word,Hardware ID,,Expert
1105,1005,2,R,DWord,PCB Serial Number,,Expert
1107,1007,1,RW,Word,Interrupt Mask,,Expert
1108,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1109,1009,1,R,Word,VRef of MCU,,Expert
1110,1010,1,RW,Word,Debounce time (in 100us) for DI 2.1,,Advanced
1111,1011,1,RW,Word,Debounce time (in 100us) for DI 2.2,,Advanced
1112,1012,1,RW,Word,Debounce time (in 100us) for DI 2.3,,Advanced
1113,1013,1,RW,Word,Debounce time (in 100us) for DI 2.4,,Advanced
1114,1014,1,RW,Word,Debounce time (in 100us) for DI 2.5,,Advanced
1115,1015,1,RW,Word,Debounce time (in 100us) for DI 2.6,,Advanced
1116,1016,1,RW,Word,Debounce time (in 100us) for DI 2.7,,Advanced
1117,1017,1,RW,Word,Debounce time (in 100us) for DI 2.8,,Advanced
1118,1018,1,RW,MixedBits,Enable DirectSwitch on DI 2.1,0,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch on DI 2.2,1,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch on DI 2.3,2,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch on DI 2.4,3,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch on DI 2.5,4,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch on DI 2.6,5,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch on DI 2.7,6,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch on DI 2.8,7,Basic
1119,1019,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.1,0,Basic
1119,1019,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.2,1,Basic
1119,1019,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.3,2,Basic
1119,1019,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.4,3,Basic
1119,1019,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.5,4,Basic
1119,1019,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.6,5,Basic
1119,1019,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.7,6,Basic
1119,1019,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.8,7,Basic
1120,1020,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.1,0,Basic
1120,1020,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.2,1,Basic
1120,1020,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.3,2,Basic
1120,1020,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.4,3,Basic
1120,1020,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.5,4,Basic
1120,1020,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.6,5,Basic
1120,1020,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.7,6,Basic
1120,1020,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.8,7,Basic
1121,1021,1,W,Word,Reserved - Do Not Use,,Reserved
1122,1022,1,W,Word,Reserved - Do Not Use,,Reserved
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 2 Register Count R/W Data Type Content Start Bit Nr. Category
2 100 0 1 R MixedBits Digital Input 2.1 0 Basic
3 100 0 1 R MixedBits Digital Input 2.2 1 Basic
4 100 0 1 R MixedBits Digital Input 2.3 2 Basic
5 100 0 1 R MixedBits Digital Input 2.4 3 Basic
6 100 0 1 R MixedBits Digital Input 2.5 4 Basic
7 100 0 1 R MixedBits Digital Input 2.6 5 Basic
8 100 0 1 R MixedBits Digital Input 2.7 6 Basic
9 100 0 1 R MixedBits Digital Input 2.8 7 Basic
10 101 1 1 RW MixedBits Relay Output 2.1 0 Basic
11 101 1 1 RW MixedBits Relay Output 2.2 1 Basic
12 101 1 1 RW MixedBits Relay Output 2.3 2 Basic
13 101 1 1 RW MixedBits Relay Output 2.4 3 Basic
14 101 1 1 RW MixedBits Relay Output 2.5 4 Basic
15 101 1 1 RW MixedBits Relay Output 2.6 5 Basic
16 101 1 1 RW MixedBits Relay Output 2.7 6 Basic
17 101 1 1 RW MixedBits Relay Output 2.8 7 Basic
18 102 2 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
19 103 3 2 RW DWord Counter of Digital Input 2.1 Basic
20 105 5 2 RW DWord Counter of Digital Input 2.2 Basic
21 107 7 2 RW DWord Counter of Digital Input 2.3 Basic
22 109 9 2 RW DWord Counter of Digital Input 2.4 Basic
23 111 11 2 RW DWord Counter of Digital Input 2.5 Basic
24 113 13 2 RW DWord Counter of Digital Input 2.6 Basic
25 115 15 2 RW DWord Counter of Digital Input 2.7 Basic
26 117 17 2 RW DWord Counter of Digital Input 2.8 Basic
27 119 19 1 W Word Reserved - Do Not Use Reserved
28 120 20 1 W Word Reserved - Do Not Use Reserved
29 121 21 1 W Word Reserved - Do Not Use Reserved
30 122 22 1 W Word Reserved - Do Not Use Reserved
31 123 23 1 RW MixedBits Synchronised DO/RO 2.1 0 Advanced
32 123 23 1 RW MixedBits Synchronised DO/RO 2.2 1 Advanced
33 123 23 1 RW MixedBits Synchronised DO/RO 2.3 2 Advanced
34 123 23 1 RW MixedBits Synchronised DO/RO 2.4 3 Advanced
35 123 23 1 RW MixedBits Synchronised DO/RO 2.5 4 Advanced
36 123 23 1 RW MixedBits Synchronised DO/RO 2.6 5 Advanced
37 123 23 1 RW MixedBits Synchronised DO/RO 2.7 6 Advanced
38 123 23 1 RW MixedBits Synchronised DO/RO 2.8 7 Advanced
39 124 24 1 RW MixedBits Synchronised DO/RO Lock 2.1 0 Advanced
40 124 24 1 RW MixedBits Synchronised DO/RO Lock 2.2 1 Advanced
41 124 24 1 RW MixedBits Synchronised DO/RO Lock 2.3 2 Advanced
42 124 24 1 RW MixedBits Synchronised DO/RO Lock 2.4 3 Advanced
43 124 24 1 RW MixedBits Synchronised DO/RO Lock 2.5 4 Advanced
44 124 24 1 RW MixedBits Synchronised DO/RO Lock 2.6 5 Advanced
45 124 24 1 RW MixedBits Synchronised DO/RO Lock 2.7 6 Advanced
46 124 24 1 RW MixedBits Synchronised DO/RO Lock 2.8 7 Advanced
47 100 2 RW DWord (Internal) RS485 Full Mode Configuration 2.1 Obsolete
48 600 500 1 W Word Reserved - Do Not Use Reserved
49 601 501 1 W Word Reserved - Do Not Use Reserved
50 602 502 1 W Word Reserved - Do Not Use Reserved
51 603 503 1 W Word Reserved - Do Not Use Reserved
52 604 504 1 W Word Reserved - Do Not Use Reserved
53 605 505 1 W Word Reserved - Do Not Use Reserved
54 606 506 1 W Word Reserved - Do Not Use Reserved
55 607 507 1 W Word Reserved - Do Not Use Reserved
56 608 508 1 W Word Reserved - Do Not Use Reserved
57 609 509 1 W Word Reserved - Do Not Use Reserved
58 510 1 RW Word (Internal) Stored Firmware Version Expert
59 511 1 RW Word (Internal) Stored Firmware Revision Expert
60 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
61 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
62 514 1 RW Word (Internal) Stored PCB Revision Expert
63 515 1 RW Word (Internal) Stored PCB Serial Number Expert
64 516 1 RW Word (Internal) Stored HW Revision Number Expert
65 1100 1000 1 R Word Firmware Version Expert
66 1101 1001 1 R Word Number of I/Os Advanced
67 1102 1002 1 R Word Number of peripherals Advanced
68 1103 1003 1 R Word Firmware ID Expert
69 1104 1004 1 R Word Hardware ID Expert
70 1105 1005 2 R DWord PCB Serial Number Expert
71 1107 1007 1 RW Word Interrupt Mask Expert
72 1108 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
73 1109 1009 1 R Word VRef of MCU Expert
74 1110 1010 1 RW Word Debounce time (in 100us) for DI 2.1 Advanced
75 1111 1011 1 RW Word Debounce time (in 100us) for DI 2.2 Advanced
76 1112 1012 1 RW Word Debounce time (in 100us) for DI 2.3 Advanced
77 1113 1013 1 RW Word Debounce time (in 100us) for DI 2.4 Advanced
78 1114 1014 1 RW Word Debounce time (in 100us) for DI 2.5 Advanced
79 1115 1015 1 RW Word Debounce time (in 100us) for DI 2.6 Advanced
80 1116 1016 1 RW Word Debounce time (in 100us) for DI 2.7 Advanced
81 1117 1017 1 RW Word Debounce time (in 100us) for DI 2.8 Advanced
82 1118 1018 1 RW MixedBits Enable DirectSwitch on DI 2.1 0 Basic
83 1118 1018 1 RW MixedBits Enable DirectSwitch on DI 2.2 1 Basic
84 1118 1018 1 RW MixedBits Enable DirectSwitch on DI 2.3 2 Basic
85 1118 1018 1 RW MixedBits Enable DirectSwitch on DI 2.4 3 Basic
86 1118 1018 1 RW MixedBits Enable DirectSwitch on DI 2.5 4 Basic
87 1118 1018 1 RW MixedBits Enable DirectSwitch on DI 2.6 5 Basic
88 1118 1018 1 RW MixedBits Enable DirectSwitch on DI 2.7 6 Basic
89 1118 1018 1 RW MixedBits Enable DirectSwitch on DI 2.8 7 Basic
90 1119 1019 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.1 0 Basic
91 1119 1019 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.2 1 Basic
92 1119 1019 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.3 2 Basic
93 1119 1019 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.4 3 Basic
94 1119 1019 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.5 4 Basic
95 1119 1019 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.6 5 Basic
96 1119 1019 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.7 6 Basic
97 1119 1019 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.8 7 Basic
98 1120 1020 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.1 0 Basic
99 1120 1020 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.2 1 Basic
100 1120 1020 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.3 2 Basic
101 1120 1020 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.4 3 Basic
102 1120 1020 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.5 4 Basic
103 1120 1020 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.6 5 Basic
104 1120 1020 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.7 6 Basic
105 1120 1020 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.8 7 Basic
106 1121 1021 1 W Word Reserved - Do Not Use Reserved
107 1122 1022 1 W Word Reserved - Do Not Use Reserved
108 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,32 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Digital Output 1.1,Basic
1,1,RW,Digital Output 1.2,Basic
2,2,RW,Digital Output 1.3,Basic
3,3,RW,Digital Output 1.4,Basic
4,4,R,Digital Input 1.1,Basic
5,5,R,Digital Input 1.2,Basic
6,6,R,Digital Input 1.3,Basic
7,7,R,Digital Input 1.4,Basic
8,8,RW,User Programmable LED 1.1,Basic
9,9,RW,User Programmable LED 1.2,Basic
10,10,RW,User Programmable LED 1.3,Basic
11,11,RW,User Programmable LED 1.4,Basic
1000,1000,RW,MWD reset indication,Advanced
1001,1001,RW,Enable/Disable 1Wire Bus,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1012,1012,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1013,1013,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1014,1014,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1015,1015,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1016,1016,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1017,1017,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1018,1018,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Digital Output 1.1 Basic
3 1 1 RW Digital Output 1.2 Basic
4 2 2 RW Digital Output 1.3 Basic
5 3 3 RW Digital Output 1.4 Basic
6 4 4 R Digital Input 1.1 Basic
7 5 5 R Digital Input 1.2 Basic
8 6 6 R Digital Input 1.3 Basic
9 7 7 R Digital Input 1.4 Basic
10 8 8 RW User Programmable LED 1.1 Basic
11 9 9 RW User Programmable LED 1.2 Basic
12 10 10 RW User Programmable LED 1.3 Basic
13 11 11 RW User Programmable LED 1.4 Basic
14 1000 1000 RW MWD reset indication Advanced
15 1001 1001 RW Enable/Disable 1Wire Bus Advanced
16 1002 1002 R Reset group MCU Advanced
17 1003 1003 RW Save current configuration and use on startup Advanced
18 1004 1004 RW (Internal) Firmware programming toggle Expert
19 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
20 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
21 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
22 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
23 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
24 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
25 1011 1011 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
26 1012 1012 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
27 1013 1013 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
28 1014 1014 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
29 1015 1015 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
30 1016 1016 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
31 1017 1017 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
32 1018 1018 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced

View File

@ -0,0 +1,79 @@
Via Unit 0,Via Unit 2,R/W,Content,Category
100,0,RW,Relay Output 2.1,Basic
101,1,RW,Relay Output 2.2,Basic
102,2,RW,Relay Output 2.3,Basic
103,3,RW,Relay Output 2.4,Basic
104,4,RW,Relay Output 2.5,Basic
105,5,RW,Relay Output 2.6,Basic
106,6,RW,Relay Output 2.7,Basic
107,7,RW,Relay Output 2.8,Basic
108,8,RW,Relay Output 2.9,Basic
109,9,RW,Relay Output 2.10,Basic
110,10,RW,Relay Output 2.11,Basic
111,11,RW,Relay Output 2.12,Basic
112,12,RW,Relay Output 2.13,Basic
113,13,RW,Relay Output 2.14,Basic
114,14,R,Digital Input 2.1,Basic
115,15,R,Digital Input 2.2,Basic
116,16,R,Digital Input 2.3,Basic
117,17,R,Digital Input 2.4,Basic
118,18,R,Digital Input 2.5,Basic
119,19,R,Digital Input 2.6,Basic
120,20,R,Digital Input 2.7,Basic
121,21,R,Digital Input 2.8,Basic
122,22,R,Digital Input 2.9,Basic
123,23,R,Digital Input 2.10,Basic
124,24,R,Digital Input 2.11,Basic
125,25,R,Digital Input 2.12,Basic
126,26,R,Digital Input 2.13,Basic
127,27,R,Digital Input 2.14,Basic
128,28,R,Digital Input 2.15,Basic
129,29,R,Digital Input 2.16,Basic
1100,1000,RW,MWD reset indication,Advanced
1102,1002,R,Reset group MCU,Advanced
1103,1003,RW,Save current configuration and use on startup,Advanced
1104,1004,RW,(Internal) Firmware programming toggle,Expert
1105,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1106,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1107,1007,RW,Enable DirectSwitch on DI 2.1,Advanced
1108,1008,RW,Enable DirectSwitch on DI 2.2,Advanced
1109,1009,RW,Enable DirectSwitch on DI 2.3,Advanced
1110,1010,RW,Enable DirectSwitch on DI 2.4,Advanced
1111,1011,RW,Enable DirectSwitch on DI 2.5,Advanced
1112,1012,RW,Enable DirectSwitch on DI 2.6,Advanced
1113,1013,RW,Enable DirectSwitch on DI 2.7,Advanced
1114,1014,RW,Enable DirectSwitch on DI 2.8,Advanced
1115,1015,RW,Enable DirectSwitch on DI 2.9,Advanced
1116,1016,RW,Enable DirectSwitch on DI 2.10,Advanced
1117,1017,RW,Enable DirectSwitch on DI 2.11,Advanced
1118,1018,RW,Enable DirectSwitch on DI 2.12,Advanced
1119,1019,RW,Enable DirectSwitch on DI 2.13,Advanced
1120,1020,RW,Enable DirectSwitch on DI 2.14,Advanced
1121,1021,RW,Invert DirectSwitch Polarity on DI 2.1,Advanced
1122,1022,RW,Invert DirectSwitch Polarity on DI 2.2,Advanced
1123,1023,RW,Invert DirectSwitch Polarity on DI 2.3,Advanced
1124,1024,RW,Invert DirectSwitch Polarity on DI 2.4,Advanced
1125,1025,RW,Invert DirectSwitch Polarity on DI 2.5,Advanced
1126,1026,RW,Invert DirectSwitch Polarity on DI 2.6,Advanced
1127,1027,RW,Invert DirectSwitch Polarity on DI 2.7,Advanced
1128,1028,RW,Invert DirectSwitch Polarity on DI 2.8,Advanced
1129,1029,RW,Invert DirectSwitch Polarity on DI 2.9,Advanced
1130,1030,RW,Invert DirectSwitch Polarity on DI 2.10,Advanced
1131,1031,RW,Invert DirectSwitch Polarity on DI 2.11,Advanced
1132,1032,RW,Invert DirectSwitch Polarity on DI 2.12,Advanced
1133,1033,RW,Invert DirectSwitch Polarity on DI 2.13,Advanced
1134,1034,RW,Invert DirectSwitch Polarity on DI 2.14,Advanced
1135,1035,RW,Enable DirectSwitch Toggle Mode on DI 2.1,Advanced
1136,1036,RW,Enable DirectSwitch Toggle Mode on DI 2.2,Advanced
1137,1037,RW,Enable DirectSwitch Toggle Mode on DI 2.3,Advanced
1138,1038,RW,Enable DirectSwitch Toggle Mode on DI 2.4,Advanced
1139,1039,RW,Enable DirectSwitch Toggle Mode on DI 2.5,Advanced
1140,1040,RW,Enable DirectSwitch Toggle Mode on DI 2.6,Advanced
1141,1041,RW,Enable DirectSwitch Toggle Mode on DI 2.7,Advanced
1142,1042,RW,Enable DirectSwitch Toggle Mode on DI 2.8,Advanced
1143,1043,RW,Enable DirectSwitch Toggle Mode on DI 2.9,Advanced
1144,1044,RW,Enable DirectSwitch Toggle Mode on DI 2.10,Advanced
1145,1045,RW,Enable DirectSwitch Toggle Mode on DI 2.11,Advanced
1146,1046,RW,Enable DirectSwitch Toggle Mode on DI 2.12,Advanced
1147,1047,RW,Enable DirectSwitch Toggle Mode on DI 2.13,Advanced
1148,1048,RW,Enable DirectSwitch Toggle Mode on DI 2.14,Advanced
1 Via Unit 0 Via Unit 2 R/W Content Category
2 100 0 RW Relay Output 2.1 Basic
3 101 1 RW Relay Output 2.2 Basic
4 102 2 RW Relay Output 2.3 Basic
5 103 3 RW Relay Output 2.4 Basic
6 104 4 RW Relay Output 2.5 Basic
7 105 5 RW Relay Output 2.6 Basic
8 106 6 RW Relay Output 2.7 Basic
9 107 7 RW Relay Output 2.8 Basic
10 108 8 RW Relay Output 2.9 Basic
11 109 9 RW Relay Output 2.10 Basic
12 110 10 RW Relay Output 2.11 Basic
13 111 11 RW Relay Output 2.12 Basic
14 112 12 RW Relay Output 2.13 Basic
15 113 13 RW Relay Output 2.14 Basic
16 114 14 R Digital Input 2.1 Basic
17 115 15 R Digital Input 2.2 Basic
18 116 16 R Digital Input 2.3 Basic
19 117 17 R Digital Input 2.4 Basic
20 118 18 R Digital Input 2.5 Basic
21 119 19 R Digital Input 2.6 Basic
22 120 20 R Digital Input 2.7 Basic
23 121 21 R Digital Input 2.8 Basic
24 122 22 R Digital Input 2.9 Basic
25 123 23 R Digital Input 2.10 Basic
26 124 24 R Digital Input 2.11 Basic
27 125 25 R Digital Input 2.12 Basic
28 126 26 R Digital Input 2.13 Basic
29 127 27 R Digital Input 2.14 Basic
30 128 28 R Digital Input 2.15 Basic
31 129 29 R Digital Input 2.16 Basic
32 1100 1000 RW MWD reset indication Advanced
33 1102 1002 R Reset group MCU Advanced
34 1103 1003 RW Save current configuration and use on startup Advanced
35 1104 1004 RW (Internal) Firmware programming toggle Expert
36 1105 1005 RW (Internal) Firmware reprogramming toggle Expert
37 1106 1006 RW (Internal) Firmware calibration programming toggle Expert
38 1107 1007 RW Enable DirectSwitch on DI 2.1 Advanced
39 1108 1008 RW Enable DirectSwitch on DI 2.2 Advanced
40 1109 1009 RW Enable DirectSwitch on DI 2.3 Advanced
41 1110 1010 RW Enable DirectSwitch on DI 2.4 Advanced
42 1111 1011 RW Enable DirectSwitch on DI 2.5 Advanced
43 1112 1012 RW Enable DirectSwitch on DI 2.6 Advanced
44 1113 1013 RW Enable DirectSwitch on DI 2.7 Advanced
45 1114 1014 RW Enable DirectSwitch on DI 2.8 Advanced
46 1115 1015 RW Enable DirectSwitch on DI 2.9 Advanced
47 1116 1016 RW Enable DirectSwitch on DI 2.10 Advanced
48 1117 1017 RW Enable DirectSwitch on DI 2.11 Advanced
49 1118 1018 RW Enable DirectSwitch on DI 2.12 Advanced
50 1119 1019 RW Enable DirectSwitch on DI 2.13 Advanced
51 1120 1020 RW Enable DirectSwitch on DI 2.14 Advanced
52 1121 1021 RW Invert DirectSwitch Polarity on DI 2.1 Advanced
53 1122 1022 RW Invert DirectSwitch Polarity on DI 2.2 Advanced
54 1123 1023 RW Invert DirectSwitch Polarity on DI 2.3 Advanced
55 1124 1024 RW Invert DirectSwitch Polarity on DI 2.4 Advanced
56 1125 1025 RW Invert DirectSwitch Polarity on DI 2.5 Advanced
57 1126 1026 RW Invert DirectSwitch Polarity on DI 2.6 Advanced
58 1127 1027 RW Invert DirectSwitch Polarity on DI 2.7 Advanced
59 1128 1028 RW Invert DirectSwitch Polarity on DI 2.8 Advanced
60 1129 1029 RW Invert DirectSwitch Polarity on DI 2.9 Advanced
61 1130 1030 RW Invert DirectSwitch Polarity on DI 2.10 Advanced
62 1131 1031 RW Invert DirectSwitch Polarity on DI 2.11 Advanced
63 1132 1032 RW Invert DirectSwitch Polarity on DI 2.12 Advanced
64 1133 1033 RW Invert DirectSwitch Polarity on DI 2.13 Advanced
65 1134 1034 RW Invert DirectSwitch Polarity on DI 2.14 Advanced
66 1135 1035 RW Enable DirectSwitch Toggle Mode on DI 2.1 Advanced
67 1136 1036 RW Enable DirectSwitch Toggle Mode on DI 2.2 Advanced
68 1137 1037 RW Enable DirectSwitch Toggle Mode on DI 2.3 Advanced
69 1138 1038 RW Enable DirectSwitch Toggle Mode on DI 2.4 Advanced
70 1139 1039 RW Enable DirectSwitch Toggle Mode on DI 2.5 Advanced
71 1140 1040 RW Enable DirectSwitch Toggle Mode on DI 2.6 Advanced
72 1141 1041 RW Enable DirectSwitch Toggle Mode on DI 2.7 Advanced
73 1142 1042 RW Enable DirectSwitch Toggle Mode on DI 2.8 Advanced
74 1143 1043 RW Enable DirectSwitch Toggle Mode on DI 2.9 Advanced
75 1144 1044 RW Enable DirectSwitch Toggle Mode on DI 2.10 Advanced
76 1145 1045 RW Enable DirectSwitch Toggle Mode on DI 2.11 Advanced
77 1146 1046 RW Enable DirectSwitch Toggle Mode on DI 2.12 Advanced
78 1147 1047 RW Enable DirectSwitch Toggle Mode on DI 2.13 Advanced
79 1148 1048 RW Enable DirectSwitch Toggle Mode on DI 2.14 Advanced

View File

@ -0,0 +1,97 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
1,1,1,RW,MixedBits,Digital Output 1.1,0,Basic
1,1,1,RW,MixedBits,Digital Output 1.2,1,Basic
1,1,1,RW,MixedBits,Digital Output 1.3,2,Basic
1,1,1,RW,MixedBits,Digital Output 1.4,3,Basic
2,2,1,RW,Word,Analog Output (raw value) 1.1,,Obsolete
3,3,1,R,Word,Analog Input (raw value) 1.1,,Obsolete
4,4,1,R,Word,Analog Input/Output (raw value) 1.1,,Obsolete
5,5,1,R,Word,VRefInt of MCU,,Expert
6,6,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
7,7,1,R,Word,Length of RS485 TX Queue 1.1,,Obsolete
8,8,2,RW,DWord,Counter of Digital Input 1.1,,Basic
10,10,2,RW,DWord,Counter of Digital Input 1.2,,Basic
12,12,2,RW,DWord,Counter of Digital Input 1.3,,Basic
14,14,2,RW,DWord,Counter of Digital Input 1.4,,Basic
16,16,1,RW,Word,PWM Duty Cycle of DO 1.1,,Basic
17,17,1,RW,Word,PWM Duty Cycle of DO 1.2,,Basic
18,18,1,RW,Word,PWM Duty Cycle of DO 1.3,,Basic
19,19,1,RW,Word,PWM Duty Cycle of DO 1.4,,Basic
20,20,1,RW,MixedBits,User LED 1.1,0,Basic
20,20,1,RW,MixedBits,User LED 1.2,1,Basic
20,20,1,RW,MixedBits,User LED 1.3,2,Basic
20,20,1,RW,MixedBits,User LED 1.4,3,Basic
21,21,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1017,1017,1,RW,Word,PWM Group prescaler,,Basic
1018,1018,1,RW,Word,PWM Group cycle length,,Basic
1019,1019,1,RW,Word,Analog Output Configuration(U/I/R-measure) 1.1,,Basic
1020,1020,1,RW,Word,Analog Output Voltage deviation 1.1,,Expert
1021,1021,1,RW,Word,Analog Output Voltage offset 1.1,,Expert
1022,1022,1,RW,Word,Analog Output Current deviation 1.1,,Expert
1023,1023,1,RW,Word,Analog Output Current offset 1.1,,Expert
1024,1024,1,RW,Word,Analog Input Configuration(U/I) 1.1,,Basic
1025,1025,1,RW,Word,Analog Input Voltage deviation 1.1,,Expert
1026,1026,1,RW,Word,Analog Input Voltage offset 1.1,,Expert
1027,1027,1,RW,Word,Analog Input Current deviation 1.1,,Expert
1028,1028,1,RW,Word,Analog Input Current offset 1.1,,Expert
1029,1029,1,RW,Word,Analog Input/Output Voltage deviation (input side) 1.1,,Expert
1030,1030,1,RW,Word,Analog Input/Output Voltage offset (input side) 1.1,,Expert
1031,1031,1,RW,MixedBits,RS485 Configuration 1.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
3000,3000,2,RW,Real,Analog Output value 1.1,,Basic
3002,3002,2,R,Real,Analog Input value 1.1,,Basic
3004,3004,2,R,Real,(Internal) Analog Output measured voltage value 1.1,,Expert
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 1 1 1 RW MixedBits Digital Output 1.1 0 Basic
7 1 1 1 RW MixedBits Digital Output 1.2 1 Basic
8 1 1 1 RW MixedBits Digital Output 1.3 2 Basic
9 1 1 1 RW MixedBits Digital Output 1.4 3 Basic
10 2 2 1 RW Word Analog Output (raw value) 1.1 Obsolete
11 3 3 1 R Word Analog Input (raw value) 1.1 Obsolete
12 4 4 1 R Word Analog Input/Output (raw value) 1.1 Obsolete
13 5 5 1 R Word VRefInt of MCU Expert
14 6 6 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
15 7 7 1 R Word Length of RS485 TX Queue 1.1 Obsolete
16 8 8 2 RW DWord Counter of Digital Input 1.1 Basic
17 10 10 2 RW DWord Counter of Digital Input 1.2 Basic
18 12 12 2 RW DWord Counter of Digital Input 1.3 Basic
19 14 14 2 RW DWord Counter of Digital Input 1.4 Basic
20 16 16 1 RW Word PWM Duty Cycle of DO 1.1 Basic
21 17 17 1 RW Word PWM Duty Cycle of DO 1.2 Basic
22 18 18 1 RW Word PWM Duty Cycle of DO 1.3 Basic
23 19 19 1 RW Word PWM Duty Cycle of DO 1.4 Basic
24 20 20 1 RW MixedBits User LED 1.1 0 Basic
25 20 20 1 RW MixedBits User LED 1.2 1 Basic
26 20 20 1 RW MixedBits User LED 1.3 2 Basic
27 20 20 1 RW MixedBits User LED 1.4 3 Basic
28 21 21 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
29 21 21 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
30 21 21 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
31 21 21 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
32 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
33 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
34 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
35 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
36 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
37 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
38 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
39 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
40 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
41 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
42 505 505 1 W Word Reserved - Do Not Use Reserved
43 506 506 1 W Word Reserved - Do Not Use Reserved
44 507 507 1 W Word Reserved - Do Not Use Reserved
45 508 508 1 W Word Reserved - Do Not Use Reserved
46 509 509 1 W Word Reserved - Do Not Use Reserved
47 510 1 RW Word (Internal) Stored Firmware Version Expert
48 511 1 RW Word (Internal) Stored Firmware Revision Expert
49 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
50 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
51 514 1 RW Word (Internal) Stored PCB Revision Expert
52 515 1 RW Word (Internal) Stored PCB Serial Number Expert
53 516 1 RW Word (Internal) Stored HW Revision Number Expert
54 1000 1000 1 R Word Firmware Version Expert
55 1001 1001 1 R Word Number of I/Os Advanced
56 1002 1002 1 R Word Number of peripherals Advanced
57 1003 1003 1 R Word Firmware ID Expert
58 1004 1004 1 R Word Hardware ID Expert
59 1005 1005 2 R DWord PCB Serial Number Expert
60 1007 1007 1 RW Word Interrupt Mask Expert
61 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
62 1009 1009 1 R Word VRef of MCU Expert
63 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
64 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
65 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
66 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
67 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
68 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
69 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
70 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
71 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
72 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
73 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
74 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
75 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
76 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
77 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
78 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
79 1017 1017 1 RW Word PWM Group prescaler Basic
80 1018 1018 1 RW Word PWM Group cycle length Basic
81 1019 1019 1 RW Word Analog Output Configuration(U/I/R-measure) 1.1 Basic
82 1020 1020 1 RW Word Analog Output Voltage deviation 1.1 Expert
83 1021 1021 1 RW Word Analog Output Voltage offset 1.1 Expert
84 1022 1022 1 RW Word Analog Output Current deviation 1.1 Expert
85 1023 1023 1 RW Word Analog Output Current offset 1.1 Expert
86 1024 1024 1 RW Word Analog Input Configuration(U/I) 1.1 Basic
87 1025 1025 1 RW Word Analog Input Voltage deviation 1.1 Expert
88 1026 1026 1 RW Word Analog Input Voltage offset 1.1 Expert
89 1027 1027 1 RW Word Analog Input Current deviation 1.1 Expert
90 1028 1028 1 RW Word Analog Input Current offset 1.1 Expert
91 1029 1029 1 RW Word Analog Input/Output Voltage deviation (input side) 1.1 Expert
92 1030 1030 1 RW Word Analog Input/Output Voltage offset (input side) 1.1 Expert
93 1031 1031 1 RW MixedBits RS485 Configuration 1.1 Obsolete
94 2000 220 W Word Reserved - Do Not Use Reserved
95 3000 3000 2 RW Real Analog Output value 1.1 Basic
96 3002 3002 2 R Real Analog Input value 1.1 Basic
97 3004 3004 2 R Real (Internal) Analog Output measured voltage value 1.1 Expert

View File

@ -0,0 +1,168 @@
Via Unit 0,Via Unit 2,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
100,0,1,R,MixedBits,Digital Input 2.1,0,Basic
100,0,1,R,MixedBits,Digital Input 2.2,1,Basic
100,0,1,R,MixedBits,Digital Input 2.3,2,Basic
100,0,1,R,MixedBits,Digital Input 2.4,3,Basic
100,0,1,R,MixedBits,Digital Input 2.5,4,Basic
100,0,1,R,MixedBits,Digital Input 2.6,5,Basic
100,0,1,R,MixedBits,Digital Input 2.7,6,Basic
100,0,1,R,MixedBits,Digital Input 2.8,7,Basic
100,0,1,R,MixedBits,Digital Input 2.9,8,Basic
100,0,1,R,MixedBits,Digital Input 2.10,9,Basic
100,0,1,R,MixedBits,Digital Input 2.11,10,Basic
100,0,1,R,MixedBits,Digital Input 2.12,11,Basic
100,0,1,R,MixedBits,Digital Input 2.13,12,Basic
100,0,1,R,MixedBits,Digital Input 2.14,13,Basic
100,0,1,R,MixedBits,Digital Input 2.15,14,Basic
100,0,1,R,MixedBits,Digital Input 2.16,15,Basic
101,1,1,RW,MixedBits,Relay Output 2.1,0,Basic
101,1,1,RW,MixedBits,Relay Output 2.2,1,Basic
101,1,1,RW,MixedBits,Relay Output 2.3,2,Basic
101,1,1,RW,MixedBits,Relay Output 2.4,3,Basic
101,1,1,RW,MixedBits,Relay Output 2.5,4,Basic
101,1,1,RW,MixedBits,Relay Output 2.6,5,Basic
101,1,1,RW,MixedBits,Relay Output 2.7,6,Basic
101,1,1,RW,MixedBits,Relay Output 2.8,7,Basic
101,1,1,RW,MixedBits,Relay Output 2.9,8,Basic
101,1,1,RW,MixedBits,Relay Output 2.10,9,Basic
101,1,1,RW,MixedBits,Relay Output 2.11,10,Basic
101,1,1,RW,MixedBits,Relay Output 2.12,11,Basic
101,1,1,RW,MixedBits,Relay Output 2.13,12,Basic
101,1,1,RW,MixedBits,Relay Output 2.14,13,Basic
102,2,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
103,3,2,RW,DWord,Counter of Digital Input 2.1,,Basic
105,5,2,RW,DWord,Counter of Digital Input 2.2,,Basic
107,7,2,RW,DWord,Counter of Digital Input 2.3,,Basic
109,9,2,RW,DWord,Counter of Digital Input 2.4,,Basic
111,11,2,RW,DWord,Counter of Digital Input 2.5,,Basic
113,13,2,RW,DWord,Counter of Digital Input 2.6,,Basic
115,15,2,RW,DWord,Counter of Digital Input 2.7,,Basic
117,17,2,RW,DWord,Counter of Digital Input 2.8,,Basic
119,19,2,RW,DWord,Counter of Digital Input 2.9,,Basic
121,21,2,RW,DWord,Counter of Digital Input 2.10,,Basic
123,23,2,RW,DWord,Counter of Digital Input 2.11,,Basic
125,25,2,RW,DWord,Counter of Digital Input 2.12,,Basic
127,27,2,RW,DWord,Counter of Digital Input 2.13,,Basic
129,29,2,RW,DWord,Counter of Digital Input 2.14,,Basic
131,31,2,RW,DWord,Counter of Digital Input 2.15,,Basic
133,33,2,RW,DWord,Counter of Digital Input 2.16,,Basic
135,35,1,W,Word,Reserved - Do Not Use,,Reserved
136,36,1,W,Word,Reserved - Do Not Use,,Reserved
137,37,1,W,Word,Reserved - Do Not Use,,Reserved
138,38,1,W,Word,Reserved - Do Not Use,,Reserved
139,39,1,RW,MixedBits,Synchronised DO/RO 2.1,0,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.2,1,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.3,2,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.4,3,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.5,4,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.6,5,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.7,6,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.8,7,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.9,8,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.10,9,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.11,10,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.12,11,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.13,12,Advanced
139,39,1,RW,MixedBits,Synchronised DO/RO 2.14,13,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.1,0,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.2,1,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.3,2,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.4,3,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.5,4,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.6,5,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.7,6,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.8,7,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.9,8,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.10,9,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.11,10,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.12,11,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.13,12,Advanced
140,40,1,RW,MixedBits,Synchronised DO/RO Lock 2.14,13,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 2.1,,Obsolete
600,500,1,W,Word,Reserved - Do Not Use,,Reserved
601,501,1,W,Word,Reserved - Do Not Use,,Reserved
602,502,1,W,Word,Reserved - Do Not Use,,Reserved
603,503,1,W,Word,Reserved - Do Not Use,,Reserved
604,504,1,W,Word,Reserved - Do Not Use,,Reserved
605,505,1,W,Word,Reserved - Do Not Use,,Reserved
606,506,1,W,Word,Reserved - Do Not Use,,Reserved
607,507,1,W,Word,Reserved - Do Not Use,,Reserved
608,508,1,W,Word,Reserved - Do Not Use,,Reserved
609,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1100,1000,1,R,Word,Firmware Version,,Expert
1101,1001,1,R,Word,Number of I/Os,,Advanced
1102,1002,1,R,Word,Number of peripherals,,Advanced
1103,1003,1,R,Word,Firmware ID,,Expert
1104,1004,1,R,Word,Hardware ID,,Expert
1105,1005,2,R,DWord,PCB Serial Number,,Expert
1107,1007,1,RW,Word,Interrupt Mask,,Expert
1108,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1109,1009,1,R,Word,VRef of MCU,,Expert
1110,1010,1,RW,Word,Debounce time (in 100us) for DI 2.1,,Advanced
1111,1011,1,RW,Word,Debounce time (in 100us) for DI 2.2,,Advanced
1112,1012,1,RW,Word,Debounce time (in 100us) for DI 2.3,,Advanced
1113,1013,1,RW,Word,Debounce time (in 100us) for DI 2.4,,Advanced
1114,1014,1,RW,Word,Debounce time (in 100us) for DI 2.5,,Advanced
1115,1015,1,RW,Word,Debounce time (in 100us) for DI 2.6,,Advanced
1116,1016,1,RW,Word,Debounce time (in 100us) for DI 2.7,,Advanced
1117,1017,1,RW,Word,Debounce time (in 100us) for DI 2.8,,Advanced
1118,1018,1,RW,Word,Debounce time (in 100us) for DI 2.9,,Advanced
1119,1019,1,RW,Word,Debounce time (in 100us) for DI 2.10,,Advanced
1120,1020,1,RW,Word,Debounce time (in 100us) for DI 2.11,,Advanced
1121,1021,1,RW,Word,Debounce time (in 100us) for DI 2.12,,Advanced
1122,1022,1,RW,Word,Debounce time (in 100us) for DI 2.13,,Advanced
1123,1023,1,RW,Word,Debounce time (in 100us) for DI 2.14,,Advanced
1124,1024,1,RW,Word,Debounce time (in 100us) for DI 2.15,,Advanced
1125,1025,1,RW,Word,Debounce time (in 100us) for DI 2.16,,Advanced
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.1,0,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.2,1,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.3,2,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.4,3,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.5,4,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.6,5,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.7,6,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.8,7,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.9,8,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.10,9,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.11,10,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.12,11,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.13,12,Basic
1126,1026,1,RW,MixedBits,Enable DirectSwitch on DI 2.14,13,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.1,0,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.2,1,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.3,2,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.4,3,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.5,4,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.6,5,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.7,6,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.8,7,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.9,8,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.10,9,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.11,10,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.12,11,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.13,12,Basic
1127,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.14,13,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.1,0,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.2,1,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.3,2,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.4,3,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.5,4,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.6,5,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.7,6,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.8,7,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.9,8,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.10,9,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.11,10,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.12,11,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.13,12,Basic
1128,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.14,13,Basic
1129,1029,1,W,Word,Reserved - Do Not Use,,Reserved
1130,1030,1,W,Word,Reserved - Do Not Use,,Reserved
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 2 Register Count R/W Data Type Content Start Bit Nr. Category
2 100 0 1 R MixedBits Digital Input 2.1 0 Basic
3 100 0 1 R MixedBits Digital Input 2.2 1 Basic
4 100 0 1 R MixedBits Digital Input 2.3 2 Basic
5 100 0 1 R MixedBits Digital Input 2.4 3 Basic
6 100 0 1 R MixedBits Digital Input 2.5 4 Basic
7 100 0 1 R MixedBits Digital Input 2.6 5 Basic
8 100 0 1 R MixedBits Digital Input 2.7 6 Basic
9 100 0 1 R MixedBits Digital Input 2.8 7 Basic
10 100 0 1 R MixedBits Digital Input 2.9 8 Basic
11 100 0 1 R MixedBits Digital Input 2.10 9 Basic
12 100 0 1 R MixedBits Digital Input 2.11 10 Basic
13 100 0 1 R MixedBits Digital Input 2.12 11 Basic
14 100 0 1 R MixedBits Digital Input 2.13 12 Basic
15 100 0 1 R MixedBits Digital Input 2.14 13 Basic
16 100 0 1 R MixedBits Digital Input 2.15 14 Basic
17 100 0 1 R MixedBits Digital Input 2.16 15 Basic
18 101 1 1 RW MixedBits Relay Output 2.1 0 Basic
19 101 1 1 RW MixedBits Relay Output 2.2 1 Basic
20 101 1 1 RW MixedBits Relay Output 2.3 2 Basic
21 101 1 1 RW MixedBits Relay Output 2.4 3 Basic
22 101 1 1 RW MixedBits Relay Output 2.5 4 Basic
23 101 1 1 RW MixedBits Relay Output 2.6 5 Basic
24 101 1 1 RW MixedBits Relay Output 2.7 6 Basic
25 101 1 1 RW MixedBits Relay Output 2.8 7 Basic
26 101 1 1 RW MixedBits Relay Output 2.9 8 Basic
27 101 1 1 RW MixedBits Relay Output 2.10 9 Basic
28 101 1 1 RW MixedBits Relay Output 2.11 10 Basic
29 101 1 1 RW MixedBits Relay Output 2.12 11 Basic
30 101 1 1 RW MixedBits Relay Output 2.13 12 Basic
31 101 1 1 RW MixedBits Relay Output 2.14 13 Basic
32 102 2 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
33 103 3 2 RW DWord Counter of Digital Input 2.1 Basic
34 105 5 2 RW DWord Counter of Digital Input 2.2 Basic
35 107 7 2 RW DWord Counter of Digital Input 2.3 Basic
36 109 9 2 RW DWord Counter of Digital Input 2.4 Basic
37 111 11 2 RW DWord Counter of Digital Input 2.5 Basic
38 113 13 2 RW DWord Counter of Digital Input 2.6 Basic
39 115 15 2 RW DWord Counter of Digital Input 2.7 Basic
40 117 17 2 RW DWord Counter of Digital Input 2.8 Basic
41 119 19 2 RW DWord Counter of Digital Input 2.9 Basic
42 121 21 2 RW DWord Counter of Digital Input 2.10 Basic
43 123 23 2 RW DWord Counter of Digital Input 2.11 Basic
44 125 25 2 RW DWord Counter of Digital Input 2.12 Basic
45 127 27 2 RW DWord Counter of Digital Input 2.13 Basic
46 129 29 2 RW DWord Counter of Digital Input 2.14 Basic
47 131 31 2 RW DWord Counter of Digital Input 2.15 Basic
48 133 33 2 RW DWord Counter of Digital Input 2.16 Basic
49 135 35 1 W Word Reserved - Do Not Use Reserved
50 136 36 1 W Word Reserved - Do Not Use Reserved
51 137 37 1 W Word Reserved - Do Not Use Reserved
52 138 38 1 W Word Reserved - Do Not Use Reserved
53 139 39 1 RW MixedBits Synchronised DO/RO 2.1 0 Advanced
54 139 39 1 RW MixedBits Synchronised DO/RO 2.2 1 Advanced
55 139 39 1 RW MixedBits Synchronised DO/RO 2.3 2 Advanced
56 139 39 1 RW MixedBits Synchronised DO/RO 2.4 3 Advanced
57 139 39 1 RW MixedBits Synchronised DO/RO 2.5 4 Advanced
58 139 39 1 RW MixedBits Synchronised DO/RO 2.6 5 Advanced
59 139 39 1 RW MixedBits Synchronised DO/RO 2.7 6 Advanced
60 139 39 1 RW MixedBits Synchronised DO/RO 2.8 7 Advanced
61 139 39 1 RW MixedBits Synchronised DO/RO 2.9 8 Advanced
62 139 39 1 RW MixedBits Synchronised DO/RO 2.10 9 Advanced
63 139 39 1 RW MixedBits Synchronised DO/RO 2.11 10 Advanced
64 139 39 1 RW MixedBits Synchronised DO/RO 2.12 11 Advanced
65 139 39 1 RW MixedBits Synchronised DO/RO 2.13 12 Advanced
66 139 39 1 RW MixedBits Synchronised DO/RO 2.14 13 Advanced
67 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.1 0 Advanced
68 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.2 1 Advanced
69 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.3 2 Advanced
70 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.4 3 Advanced
71 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.5 4 Advanced
72 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.6 5 Advanced
73 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.7 6 Advanced
74 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.8 7 Advanced
75 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.9 8 Advanced
76 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.10 9 Advanced
77 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.11 10 Advanced
78 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.12 11 Advanced
79 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.13 12 Advanced
80 140 40 1 RW MixedBits Synchronised DO/RO Lock 2.14 13 Advanced
81 100 2 RW DWord (Internal) RS485 Full Mode Configuration 2.1 Obsolete
82 600 500 1 W Word Reserved - Do Not Use Reserved
83 601 501 1 W Word Reserved - Do Not Use Reserved
84 602 502 1 W Word Reserved - Do Not Use Reserved
85 603 503 1 W Word Reserved - Do Not Use Reserved
86 604 504 1 W Word Reserved - Do Not Use Reserved
87 605 505 1 W Word Reserved - Do Not Use Reserved
88 606 506 1 W Word Reserved - Do Not Use Reserved
89 607 507 1 W Word Reserved - Do Not Use Reserved
90 608 508 1 W Word Reserved - Do Not Use Reserved
91 609 509 1 W Word Reserved - Do Not Use Reserved
92 510 1 RW Word (Internal) Stored Firmware Version Expert
93 511 1 RW Word (Internal) Stored Firmware Revision Expert
94 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
95 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
96 514 1 RW Word (Internal) Stored PCB Revision Expert
97 515 1 RW Word (Internal) Stored PCB Serial Number Expert
98 516 1 RW Word (Internal) Stored HW Revision Number Expert
99 1100 1000 1 R Word Firmware Version Expert
100 1101 1001 1 R Word Number of I/Os Advanced
101 1102 1002 1 R Word Number of peripherals Advanced
102 1103 1003 1 R Word Firmware ID Expert
103 1104 1004 1 R Word Hardware ID Expert
104 1105 1005 2 R DWord PCB Serial Number Expert
105 1107 1007 1 RW Word Interrupt Mask Expert
106 1108 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
107 1109 1009 1 R Word VRef of MCU Expert
108 1110 1010 1 RW Word Debounce time (in 100us) for DI 2.1 Advanced
109 1111 1011 1 RW Word Debounce time (in 100us) for DI 2.2 Advanced
110 1112 1012 1 RW Word Debounce time (in 100us) for DI 2.3 Advanced
111 1113 1013 1 RW Word Debounce time (in 100us) for DI 2.4 Advanced
112 1114 1014 1 RW Word Debounce time (in 100us) for DI 2.5 Advanced
113 1115 1015 1 RW Word Debounce time (in 100us) for DI 2.6 Advanced
114 1116 1016 1 RW Word Debounce time (in 100us) for DI 2.7 Advanced
115 1117 1017 1 RW Word Debounce time (in 100us) for DI 2.8 Advanced
116 1118 1018 1 RW Word Debounce time (in 100us) for DI 2.9 Advanced
117 1119 1019 1 RW Word Debounce time (in 100us) for DI 2.10 Advanced
118 1120 1020 1 RW Word Debounce time (in 100us) for DI 2.11 Advanced
119 1121 1021 1 RW Word Debounce time (in 100us) for DI 2.12 Advanced
120 1122 1022 1 RW Word Debounce time (in 100us) for DI 2.13 Advanced
121 1123 1023 1 RW Word Debounce time (in 100us) for DI 2.14 Advanced
122 1124 1024 1 RW Word Debounce time (in 100us) for DI 2.15 Advanced
123 1125 1025 1 RW Word Debounce time (in 100us) for DI 2.16 Advanced
124 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.1 0 Basic
125 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.2 1 Basic
126 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.3 2 Basic
127 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.4 3 Basic
128 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.5 4 Basic
129 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.6 5 Basic
130 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.7 6 Basic
131 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.8 7 Basic
132 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.9 8 Basic
133 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.10 9 Basic
134 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.11 10 Basic
135 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.12 11 Basic
136 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.13 12 Basic
137 1126 1026 1 RW MixedBits Enable DirectSwitch on DI 2.14 13 Basic
138 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.1 0 Basic
139 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.2 1 Basic
140 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.3 2 Basic
141 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.4 3 Basic
142 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.5 4 Basic
143 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.6 5 Basic
144 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.7 6 Basic
145 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.8 7 Basic
146 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.9 8 Basic
147 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.10 9 Basic
148 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.11 10 Basic
149 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.12 11 Basic
150 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.13 12 Basic
151 1127 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.14 13 Basic
152 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.1 0 Basic
153 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.2 1 Basic
154 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.3 2 Basic
155 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.4 3 Basic
156 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.5 4 Basic
157 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.6 5 Basic
158 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.7 6 Basic
159 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.8 7 Basic
160 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.9 8 Basic
161 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.10 9 Basic
162 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.11 10 Basic
163 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.12 11 Basic
164 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.13 12 Basic
165 1128 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.14 13 Basic
166 1129 1029 1 W Word Reserved - Do Not Use Reserved
167 1130 1030 1 W Word Reserved - Do Not Use Reserved
168 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,32 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Digital Output 1.1,Basic
1,1,RW,Digital Output 1.2,Basic
2,2,RW,Digital Output 1.3,Basic
3,3,RW,Digital Output 1.4,Basic
4,4,R,Digital Input 1.1,Basic
5,5,R,Digital Input 1.2,Basic
6,6,R,Digital Input 1.3,Basic
7,7,R,Digital Input 1.4,Basic
8,8,RW,User Programmable LED 1.1,Basic
9,9,RW,User Programmable LED 1.2,Basic
10,10,RW,User Programmable LED 1.3,Basic
11,11,RW,User Programmable LED 1.4,Basic
1000,1000,RW,MWD reset indication,Advanced
1001,1001,RW,Enable/Disable 1Wire Bus,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1012,1012,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1013,1013,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1014,1014,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1015,1015,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1016,1016,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1017,1017,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1018,1018,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Digital Output 1.1 Basic
3 1 1 RW Digital Output 1.2 Basic
4 2 2 RW Digital Output 1.3 Basic
5 3 3 RW Digital Output 1.4 Basic
6 4 4 R Digital Input 1.1 Basic
7 5 5 R Digital Input 1.2 Basic
8 6 6 R Digital Input 1.3 Basic
9 7 7 R Digital Input 1.4 Basic
10 8 8 RW User Programmable LED 1.1 Basic
11 9 9 RW User Programmable LED 1.2 Basic
12 10 10 RW User Programmable LED 1.3 Basic
13 11 11 RW User Programmable LED 1.4 Basic
14 1000 1000 RW MWD reset indication Advanced
15 1001 1001 RW Enable/Disable 1Wire Bus Advanced
16 1002 1002 R Reset group MCU Advanced
17 1003 1003 RW Save current configuration and use on startup Advanced
18 1004 1004 RW (Internal) Firmware programming toggle Expert
19 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
20 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
21 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
22 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
23 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
24 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
25 1011 1011 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
26 1012 1012 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
27 1013 1013 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
28 1014 1014 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
29 1015 1015 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
30 1016 1016 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
31 1017 1017 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
32 1018 1018 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced

View File

@ -0,0 +1,37 @@
Via Unit 0,Via Unit 2,R/W,Content,Category
100,0,R,Digital Input 2.1,Basic
101,1,R,Digital Input 2.2,Basic
102,2,R,Digital Input 2.3,Basic
103,3,R,Digital Input 2.4,Basic
104,4,R,Digital Input 2.5,Basic
105,5,R,Digital Input 2.6,Basic
106,6,R,Digital Input 2.7,Basic
107,7,R,Digital Input 2.8,Basic
108,8,R,Digital Input 2.9,Basic
109,9,R,Digital Input 2.10,Basic
110,10,R,Digital Input 2.11,Basic
111,11,R,Digital Input 2.12,Basic
112,12,R,Digital Input 2.13,Basic
113,13,R,Digital Input 2.14,Basic
114,14,R,Digital Input 2.15,Basic
115,15,R,Digital Input 2.16,Basic
116,16,R,Digital Input 2.17,Basic
117,17,R,Digital Input 2.18,Basic
118,18,R,Digital Input 2.19,Basic
119,19,R,Digital Input 2.20,Basic
120,20,R,Digital Input 2.21,Basic
121,21,R,Digital Input 2.22,Basic
122,22,R,Digital Input 2.23,Basic
123,23,R,Digital Input 2.24,Basic
124,24,R,Digital Input 2.25,Basic
125,25,R,Digital Input 2.26,Basic
126,26,R,Digital Input 2.27,Basic
127,27,R,Digital Input 2.28,Basic
128,28,R,Digital Input 2.29,Basic
129,29,R,Digital Input 2.30,Basic
1100,1000,RW,MWD reset indication,Advanced
1102,1002,R,Reset group MCU,Advanced
1103,1003,RW,Save current configuration and use on startup,Advanced
1104,1004,RW,(Internal) Firmware programming toggle,Expert
1105,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1106,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1 Via Unit 0 Via Unit 2 R/W Content Category
2 100 0 R Digital Input 2.1 Basic
3 101 1 R Digital Input 2.2 Basic
4 102 2 R Digital Input 2.3 Basic
5 103 3 R Digital Input 2.4 Basic
6 104 4 R Digital Input 2.5 Basic
7 105 5 R Digital Input 2.6 Basic
8 106 6 R Digital Input 2.7 Basic
9 107 7 R Digital Input 2.8 Basic
10 108 8 R Digital Input 2.9 Basic
11 109 9 R Digital Input 2.10 Basic
12 110 10 R Digital Input 2.11 Basic
13 111 11 R Digital Input 2.12 Basic
14 112 12 R Digital Input 2.13 Basic
15 113 13 R Digital Input 2.14 Basic
16 114 14 R Digital Input 2.15 Basic
17 115 15 R Digital Input 2.16 Basic
18 116 16 R Digital Input 2.17 Basic
19 117 17 R Digital Input 2.18 Basic
20 118 18 R Digital Input 2.19 Basic
21 119 19 R Digital Input 2.20 Basic
22 120 20 R Digital Input 2.21 Basic
23 121 21 R Digital Input 2.22 Basic
24 122 22 R Digital Input 2.23 Basic
25 123 23 R Digital Input 2.24 Basic
26 124 24 R Digital Input 2.25 Basic
27 125 25 R Digital Input 2.26 Basic
28 126 26 R Digital Input 2.27 Basic
29 127 27 R Digital Input 2.28 Basic
30 128 28 R Digital Input 2.29 Basic
31 129 29 R Digital Input 2.30 Basic
32 1100 1000 RW MWD reset indication Advanced
33 1102 1002 R Reset group MCU Advanced
34 1103 1003 RW Save current configuration and use on startup Advanced
35 1104 1004 RW (Internal) Firmware programming toggle Expert
36 1105 1005 RW (Internal) Firmware reprogramming toggle Expert
37 1106 1006 RW (Internal) Firmware calibration programming toggle Expert

View File

@ -0,0 +1,97 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
1,1,1,RW,MixedBits,Digital Output 1.1,0,Basic
1,1,1,RW,MixedBits,Digital Output 1.2,1,Basic
1,1,1,RW,MixedBits,Digital Output 1.3,2,Basic
1,1,1,RW,MixedBits,Digital Output 1.4,3,Basic
2,2,1,RW,Word,Analog Output (raw value) 1.1,,Obsolete
3,3,1,R,Word,Analog Input (raw value) 1.1,,Obsolete
4,4,1,R,Word,Analog Input/Output (raw value) 1.1,,Obsolete
5,5,1,R,Word,VRefInt of MCU,,Expert
6,6,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
7,7,1,R,Word,Length of RS485 TX Queue 1.1,,Obsolete
8,8,2,RW,DWord,Counter of Digital Input 1.1,,Basic
10,10,2,RW,DWord,Counter of Digital Input 1.2,,Basic
12,12,2,RW,DWord,Counter of Digital Input 1.3,,Basic
14,14,2,RW,DWord,Counter of Digital Input 1.4,,Basic
16,16,1,RW,Word,PWM Duty Cycle of DO 1.1,,Basic
17,17,1,RW,Word,PWM Duty Cycle of DO 1.2,,Basic
18,18,1,RW,Word,PWM Duty Cycle of DO 1.3,,Basic
19,19,1,RW,Word,PWM Duty Cycle of DO 1.4,,Basic
20,20,1,RW,MixedBits,User LED 1.1,0,Basic
20,20,1,RW,MixedBits,User LED 1.2,1,Basic
20,20,1,RW,MixedBits,User LED 1.3,2,Basic
20,20,1,RW,MixedBits,User LED 1.4,3,Basic
21,21,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1017,1017,1,RW,Word,PWM Group prescaler,,Basic
1018,1018,1,RW,Word,PWM Group cycle length,,Basic
1019,1019,1,RW,Word,Analog Output Configuration(U/I/R-measure) 1.1,,Basic
1020,1020,1,RW,Word,Analog Output Voltage deviation 1.1,,Expert
1021,1021,1,RW,Word,Analog Output Voltage offset 1.1,,Expert
1022,1022,1,RW,Word,Analog Output Current deviation 1.1,,Expert
1023,1023,1,RW,Word,Analog Output Current offset 1.1,,Expert
1024,1024,1,RW,Word,Analog Input Configuration(U/I) 1.1,,Basic
1025,1025,1,RW,Word,Analog Input Voltage deviation 1.1,,Expert
1026,1026,1,RW,Word,Analog Input Voltage offset 1.1,,Expert
1027,1027,1,RW,Word,Analog Input Current deviation 1.1,,Expert
1028,1028,1,RW,Word,Analog Input Current offset 1.1,,Expert
1029,1029,1,RW,Word,Analog Input/Output Voltage deviation (input side) 1.1,,Expert
1030,1030,1,RW,Word,Analog Input/Output Voltage offset (input side) 1.1,,Expert
1031,1031,1,RW,MixedBits,RS485 Configuration 1.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
3000,3000,2,RW,Real,Analog Output value 1.1,,Basic
3002,3002,2,R,Real,Analog Input value 1.1,,Basic
3004,3004,2,R,Real,(Internal) Analog Output measured voltage value 1.1,,Expert
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 1 1 1 RW MixedBits Digital Output 1.1 0 Basic
7 1 1 1 RW MixedBits Digital Output 1.2 1 Basic
8 1 1 1 RW MixedBits Digital Output 1.3 2 Basic
9 1 1 1 RW MixedBits Digital Output 1.4 3 Basic
10 2 2 1 RW Word Analog Output (raw value) 1.1 Obsolete
11 3 3 1 R Word Analog Input (raw value) 1.1 Obsolete
12 4 4 1 R Word Analog Input/Output (raw value) 1.1 Obsolete
13 5 5 1 R Word VRefInt of MCU Expert
14 6 6 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
15 7 7 1 R Word Length of RS485 TX Queue 1.1 Obsolete
16 8 8 2 RW DWord Counter of Digital Input 1.1 Basic
17 10 10 2 RW DWord Counter of Digital Input 1.2 Basic
18 12 12 2 RW DWord Counter of Digital Input 1.3 Basic
19 14 14 2 RW DWord Counter of Digital Input 1.4 Basic
20 16 16 1 RW Word PWM Duty Cycle of DO 1.1 Basic
21 17 17 1 RW Word PWM Duty Cycle of DO 1.2 Basic
22 18 18 1 RW Word PWM Duty Cycle of DO 1.3 Basic
23 19 19 1 RW Word PWM Duty Cycle of DO 1.4 Basic
24 20 20 1 RW MixedBits User LED 1.1 0 Basic
25 20 20 1 RW MixedBits User LED 1.2 1 Basic
26 20 20 1 RW MixedBits User LED 1.3 2 Basic
27 20 20 1 RW MixedBits User LED 1.4 3 Basic
28 21 21 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
29 21 21 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
30 21 21 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
31 21 21 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
32 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
33 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
34 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
35 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
36 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
37 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
38 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
39 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
40 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
41 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
42 505 505 1 W Word Reserved - Do Not Use Reserved
43 506 506 1 W Word Reserved - Do Not Use Reserved
44 507 507 1 W Word Reserved - Do Not Use Reserved
45 508 508 1 W Word Reserved - Do Not Use Reserved
46 509 509 1 W Word Reserved - Do Not Use Reserved
47 510 1 RW Word (Internal) Stored Firmware Version Expert
48 511 1 RW Word (Internal) Stored Firmware Revision Expert
49 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
50 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
51 514 1 RW Word (Internal) Stored PCB Revision Expert
52 515 1 RW Word (Internal) Stored PCB Serial Number Expert
53 516 1 RW Word (Internal) Stored HW Revision Number Expert
54 1000 1000 1 R Word Firmware Version Expert
55 1001 1001 1 R Word Number of I/Os Advanced
56 1002 1002 1 R Word Number of peripherals Advanced
57 1003 1003 1 R Word Firmware ID Expert
58 1004 1004 1 R Word Hardware ID Expert
59 1005 1005 2 R DWord PCB Serial Number Expert
60 1007 1007 1 RW Word Interrupt Mask Expert
61 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
62 1009 1009 1 R Word VRef of MCU Expert
63 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
64 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
65 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
66 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
67 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
68 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
69 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
70 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
71 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
72 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
73 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
74 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
75 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
76 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
77 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
78 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
79 1017 1017 1 RW Word PWM Group prescaler Basic
80 1018 1018 1 RW Word PWM Group cycle length Basic
81 1019 1019 1 RW Word Analog Output Configuration(U/I/R-measure) 1.1 Basic
82 1020 1020 1 RW Word Analog Output Voltage deviation 1.1 Expert
83 1021 1021 1 RW Word Analog Output Voltage offset 1.1 Expert
84 1022 1022 1 RW Word Analog Output Current deviation 1.1 Expert
85 1023 1023 1 RW Word Analog Output Current offset 1.1 Expert
86 1024 1024 1 RW Word Analog Input Configuration(U/I) 1.1 Basic
87 1025 1025 1 RW Word Analog Input Voltage deviation 1.1 Expert
88 1026 1026 1 RW Word Analog Input Voltage offset 1.1 Expert
89 1027 1027 1 RW Word Analog Input Current deviation 1.1 Expert
90 1028 1028 1 RW Word Analog Input Current offset 1.1 Expert
91 1029 1029 1 RW Word Analog Input/Output Voltage deviation (input side) 1.1 Expert
92 1030 1030 1 RW Word Analog Input/Output Voltage offset (input side) 1.1 Expert
93 1031 1031 1 RW MixedBits RS485 Configuration 1.1 Obsolete
94 2000 220 W Word Reserved - Do Not Use Reserved
95 3000 3000 2 RW Real Analog Output value 1.1 Basic
96 3002 3002 2 R Real Analog Input value 1.1 Basic
97 3004 3004 2 R Real (Internal) Analog Output measured voltage value 1.1 Expert

View File

@ -0,0 +1,120 @@
Via Unit 0,Via Unit 2,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
100,0,1,R,MixedBits,Digital Input 2.1,0,Basic
100,0,1,R,MixedBits,Digital Input 2.2,1,Basic
100,0,1,R,MixedBits,Digital Input 2.3,2,Basic
100,0,1,R,MixedBits,Digital Input 2.4,3,Basic
100,0,1,R,MixedBits,Digital Input 2.5,4,Basic
100,0,1,R,MixedBits,Digital Input 2.6,5,Basic
100,0,1,R,MixedBits,Digital Input 2.7,6,Basic
100,0,1,R,MixedBits,Digital Input 2.8,7,Basic
100,0,1,R,MixedBits,Digital Input 2.9,8,Basic
100,0,1,R,MixedBits,Digital Input 2.10,9,Basic
100,0,1,R,MixedBits,Digital Input 2.11,10,Basic
100,0,1,R,MixedBits,Digital Input 2.12,11,Basic
100,0,1,R,MixedBits,Digital Input 2.13,12,Basic
100,0,1,R,MixedBits,Digital Input 2.14,13,Basic
100,0,1,R,MixedBits,Digital Input 2.15,14,Basic
100,0,1,R,MixedBits,Digital Input 2.16,15,Basic
101,1,1,R,MixedBits,Digital Input 2.17,0,Basic
101,1,1,R,MixedBits,Digital Input 2.18,1,Basic
101,1,1,R,MixedBits,Digital Input 2.19,2,Basic
101,1,1,R,MixedBits,Digital Input 2.20,3,Basic
101,1,1,R,MixedBits,Digital Input 2.21,4,Basic
101,1,1,R,MixedBits,Digital Input 2.22,5,Basic
101,1,1,R,MixedBits,Digital Input 2.23,6,Basic
101,1,1,R,MixedBits,Digital Input 2.24,7,Basic
101,1,1,R,MixedBits,Digital Input 2.25,8,Basic
101,1,1,R,MixedBits,Digital Input 2.26,9,Basic
101,1,1,R,MixedBits,Digital Input 2.27,10,Basic
101,1,1,R,MixedBits,Digital Input 2.28,11,Basic
101,1,1,R,MixedBits,Digital Input 2.29,12,Basic
101,1,1,R,MixedBits,Digital Input 2.30,13,Basic
102,2,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
103,3,2,RW,DWord,Counter of Digital Input 2.1,,Basic
105,5,2,RW,DWord,Counter of Digital Input 2.2,,Basic
107,7,2,RW,DWord,Counter of Digital Input 2.3,,Basic
109,9,2,RW,DWord,Counter of Digital Input 2.4,,Basic
111,11,2,RW,DWord,Counter of Digital Input 2.5,,Basic
113,13,2,RW,DWord,Counter of Digital Input 2.6,,Basic
115,15,2,RW,DWord,Counter of Digital Input 2.7,,Basic
117,17,2,RW,DWord,Counter of Digital Input 2.8,,Basic
119,19,2,RW,DWord,Counter of Digital Input 2.9,,Basic
121,21,2,RW,DWord,Counter of Digital Input 2.10,,Basic
123,23,2,RW,DWord,Counter of Digital Input 2.11,,Basic
125,25,2,RW,DWord,Counter of Digital Input 2.12,,Basic
127,27,2,RW,DWord,Counter of Digital Input 2.13,,Basic
129,29,2,RW,DWord,Counter of Digital Input 2.14,,Basic
131,31,2,RW,DWord,Counter of Digital Input 2.15,,Basic
133,33,2,RW,DWord,Counter of Digital Input 2.16,,Basic
135,35,2,RW,DWord,Counter of Digital Input 2.17,,Basic
137,37,2,RW,DWord,Counter of Digital Input 2.18,,Basic
139,39,2,RW,DWord,Counter of Digital Input 2.19,,Basic
141,41,2,RW,DWord,Counter of Digital Input 2.20,,Basic
143,43,2,RW,DWord,Counter of Digital Input 2.21,,Basic
145,45,2,RW,DWord,Counter of Digital Input 2.22,,Basic
147,47,2,RW,DWord,Counter of Digital Input 2.23,,Basic
149,49,2,RW,DWord,Counter of Digital Input 2.24,,Basic
151,51,2,RW,DWord,Counter of Digital Input 2.25,,Basic
153,53,2,RW,DWord,Counter of Digital Input 2.26,,Basic
155,55,2,RW,DWord,Counter of Digital Input 2.27,,Basic
157,57,2,RW,DWord,Counter of Digital Input 2.28,,Basic
159,59,2,RW,DWord,Counter of Digital Input 2.29,,Basic
161,61,2,RW,DWord,Counter of Digital Input 2.30,,Basic
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 2.1,,Obsolete
600,500,1,W,Word,Reserved - Do Not Use,,Reserved
601,501,1,W,Word,Reserved - Do Not Use,,Reserved
602,502,1,W,Word,Reserved - Do Not Use,,Reserved
603,503,1,W,Word,Reserved - Do Not Use,,Reserved
604,504,1,W,Word,Reserved - Do Not Use,,Reserved
605,505,1,W,Word,Reserved - Do Not Use,,Reserved
606,506,1,W,Word,Reserved - Do Not Use,,Reserved
607,507,1,W,Word,Reserved - Do Not Use,,Reserved
608,508,1,W,Word,Reserved - Do Not Use,,Reserved
609,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1100,1000,1,R,Word,Firmware Version,,Expert
1101,1001,1,R,Word,Number of I/Os,,Advanced
1102,1002,1,R,Word,Number of peripherals,,Advanced
1103,1003,1,R,Word,Firmware ID,,Expert
1104,1004,1,R,Word,Hardware ID,,Expert
1105,1005,2,R,DWord,PCB Serial Number,,Expert
1107,1007,1,RW,Word,Interrupt Mask,,Expert
1108,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1109,1009,1,R,Word,VRef of MCU,,Expert
1110,1010,1,RW,Word,Debounce time (in 100us) for DI 2.1,,Advanced
1111,1011,1,RW,Word,Debounce time (in 100us) for DI 2.2,,Advanced
1112,1012,1,RW,Word,Debounce time (in 100us) for DI 2.3,,Advanced
1113,1013,1,RW,Word,Debounce time (in 100us) for DI 2.4,,Advanced
1114,1014,1,RW,Word,Debounce time (in 100us) for DI 2.5,,Advanced
1115,1015,1,RW,Word,Debounce time (in 100us) for DI 2.6,,Advanced
1116,1016,1,RW,Word,Debounce time (in 100us) for DI 2.7,,Advanced
1117,1017,1,RW,Word,Debounce time (in 100us) for DI 2.8,,Advanced
1118,1018,1,RW,Word,Debounce time (in 100us) for DI 2.9,,Advanced
1119,1019,1,RW,Word,Debounce time (in 100us) for DI 2.10,,Advanced
1120,1020,1,RW,Word,Debounce time (in 100us) for DI 2.11,,Advanced
1121,1021,1,RW,Word,Debounce time (in 100us) for DI 2.12,,Advanced
1122,1022,1,RW,Word,Debounce time (in 100us) for DI 2.13,,Advanced
1123,1023,1,RW,Word,Debounce time (in 100us) for DI 2.14,,Advanced
1124,1024,1,RW,Word,Debounce time (in 100us) for DI 2.15,,Advanced
1125,1025,1,RW,Word,Debounce time (in 100us) for DI 2.16,,Advanced
1126,1026,1,RW,Word,Debounce time (in 100us) for DI 2.17,,Advanced
1127,1027,1,RW,Word,Debounce time (in 100us) for DI 2.18,,Advanced
1128,1028,1,RW,Word,Debounce time (in 100us) for DI 2.19,,Advanced
1129,1029,1,RW,Word,Debounce time (in 100us) for DI 2.20,,Advanced
1130,1030,1,RW,Word,Debounce time (in 100us) for DI 2.21,,Advanced
1131,1031,1,RW,Word,Debounce time (in 100us) for DI 2.22,,Advanced
1132,1032,1,RW,Word,Debounce time (in 100us) for DI 2.23,,Advanced
1133,1033,1,RW,Word,Debounce time (in 100us) for DI 2.24,,Advanced
1134,1034,1,RW,Word,Debounce time (in 100us) for DI 2.25,,Advanced
1135,1035,1,RW,Word,Debounce time (in 100us) for DI 2.26,,Advanced
1136,1036,1,RW,Word,Debounce time (in 100us) for DI 2.27,,Advanced
1137,1037,1,RW,Word,Debounce time (in 100us) for DI 2.28,,Advanced
1138,1038,1,RW,Word,Debounce time (in 100us) for DI 2.29,,Advanced
1139,1039,1,RW,Word,Debounce time (in 100us) for DI 2.30,,Advanced
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 2 Register Count R/W Data Type Content Start Bit Nr. Category
2 100 0 1 R MixedBits Digital Input 2.1 0 Basic
3 100 0 1 R MixedBits Digital Input 2.2 1 Basic
4 100 0 1 R MixedBits Digital Input 2.3 2 Basic
5 100 0 1 R MixedBits Digital Input 2.4 3 Basic
6 100 0 1 R MixedBits Digital Input 2.5 4 Basic
7 100 0 1 R MixedBits Digital Input 2.6 5 Basic
8 100 0 1 R MixedBits Digital Input 2.7 6 Basic
9 100 0 1 R MixedBits Digital Input 2.8 7 Basic
10 100 0 1 R MixedBits Digital Input 2.9 8 Basic
11 100 0 1 R MixedBits Digital Input 2.10 9 Basic
12 100 0 1 R MixedBits Digital Input 2.11 10 Basic
13 100 0 1 R MixedBits Digital Input 2.12 11 Basic
14 100 0 1 R MixedBits Digital Input 2.13 12 Basic
15 100 0 1 R MixedBits Digital Input 2.14 13 Basic
16 100 0 1 R MixedBits Digital Input 2.15 14 Basic
17 100 0 1 R MixedBits Digital Input 2.16 15 Basic
18 101 1 1 R MixedBits Digital Input 2.17 0 Basic
19 101 1 1 R MixedBits Digital Input 2.18 1 Basic
20 101 1 1 R MixedBits Digital Input 2.19 2 Basic
21 101 1 1 R MixedBits Digital Input 2.20 3 Basic
22 101 1 1 R MixedBits Digital Input 2.21 4 Basic
23 101 1 1 R MixedBits Digital Input 2.22 5 Basic
24 101 1 1 R MixedBits Digital Input 2.23 6 Basic
25 101 1 1 R MixedBits Digital Input 2.24 7 Basic
26 101 1 1 R MixedBits Digital Input 2.25 8 Basic
27 101 1 1 R MixedBits Digital Input 2.26 9 Basic
28 101 1 1 R MixedBits Digital Input 2.27 10 Basic
29 101 1 1 R MixedBits Digital Input 2.28 11 Basic
30 101 1 1 R MixedBits Digital Input 2.29 12 Basic
31 101 1 1 R MixedBits Digital Input 2.30 13 Basic
32 102 2 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
33 103 3 2 RW DWord Counter of Digital Input 2.1 Basic
34 105 5 2 RW DWord Counter of Digital Input 2.2 Basic
35 107 7 2 RW DWord Counter of Digital Input 2.3 Basic
36 109 9 2 RW DWord Counter of Digital Input 2.4 Basic
37 111 11 2 RW DWord Counter of Digital Input 2.5 Basic
38 113 13 2 RW DWord Counter of Digital Input 2.6 Basic
39 115 15 2 RW DWord Counter of Digital Input 2.7 Basic
40 117 17 2 RW DWord Counter of Digital Input 2.8 Basic
41 119 19 2 RW DWord Counter of Digital Input 2.9 Basic
42 121 21 2 RW DWord Counter of Digital Input 2.10 Basic
43 123 23 2 RW DWord Counter of Digital Input 2.11 Basic
44 125 25 2 RW DWord Counter of Digital Input 2.12 Basic
45 127 27 2 RW DWord Counter of Digital Input 2.13 Basic
46 129 29 2 RW DWord Counter of Digital Input 2.14 Basic
47 131 31 2 RW DWord Counter of Digital Input 2.15 Basic
48 133 33 2 RW DWord Counter of Digital Input 2.16 Basic
49 135 35 2 RW DWord Counter of Digital Input 2.17 Basic
50 137 37 2 RW DWord Counter of Digital Input 2.18 Basic
51 139 39 2 RW DWord Counter of Digital Input 2.19 Basic
52 141 41 2 RW DWord Counter of Digital Input 2.20 Basic
53 143 43 2 RW DWord Counter of Digital Input 2.21 Basic
54 145 45 2 RW DWord Counter of Digital Input 2.22 Basic
55 147 47 2 RW DWord Counter of Digital Input 2.23 Basic
56 149 49 2 RW DWord Counter of Digital Input 2.24 Basic
57 151 51 2 RW DWord Counter of Digital Input 2.25 Basic
58 153 53 2 RW DWord Counter of Digital Input 2.26 Basic
59 155 55 2 RW DWord Counter of Digital Input 2.27 Basic
60 157 57 2 RW DWord Counter of Digital Input 2.28 Basic
61 159 59 2 RW DWord Counter of Digital Input 2.29 Basic
62 161 61 2 RW DWord Counter of Digital Input 2.30 Basic
63 100 2 RW DWord (Internal) RS485 Full Mode Configuration 2.1 Obsolete
64 600 500 1 W Word Reserved - Do Not Use Reserved
65 601 501 1 W Word Reserved - Do Not Use Reserved
66 602 502 1 W Word Reserved - Do Not Use Reserved
67 603 503 1 W Word Reserved - Do Not Use Reserved
68 604 504 1 W Word Reserved - Do Not Use Reserved
69 605 505 1 W Word Reserved - Do Not Use Reserved
70 606 506 1 W Word Reserved - Do Not Use Reserved
71 607 507 1 W Word Reserved - Do Not Use Reserved
72 608 508 1 W Word Reserved - Do Not Use Reserved
73 609 509 1 W Word Reserved - Do Not Use Reserved
74 510 1 RW Word (Internal) Stored Firmware Version Expert
75 511 1 RW Word (Internal) Stored Firmware Revision Expert
76 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
77 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
78 514 1 RW Word (Internal) Stored PCB Revision Expert
79 515 1 RW Word (Internal) Stored PCB Serial Number Expert
80 516 1 RW Word (Internal) Stored HW Revision Number Expert
81 1100 1000 1 R Word Firmware Version Expert
82 1101 1001 1 R Word Number of I/Os Advanced
83 1102 1002 1 R Word Number of peripherals Advanced
84 1103 1003 1 R Word Firmware ID Expert
85 1104 1004 1 R Word Hardware ID Expert
86 1105 1005 2 R DWord PCB Serial Number Expert
87 1107 1007 1 RW Word Interrupt Mask Expert
88 1108 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
89 1109 1009 1 R Word VRef of MCU Expert
90 1110 1010 1 RW Word Debounce time (in 100us) for DI 2.1 Advanced
91 1111 1011 1 RW Word Debounce time (in 100us) for DI 2.2 Advanced
92 1112 1012 1 RW Word Debounce time (in 100us) for DI 2.3 Advanced
93 1113 1013 1 RW Word Debounce time (in 100us) for DI 2.4 Advanced
94 1114 1014 1 RW Word Debounce time (in 100us) for DI 2.5 Advanced
95 1115 1015 1 RW Word Debounce time (in 100us) for DI 2.6 Advanced
96 1116 1016 1 RW Word Debounce time (in 100us) for DI 2.7 Advanced
97 1117 1017 1 RW Word Debounce time (in 100us) for DI 2.8 Advanced
98 1118 1018 1 RW Word Debounce time (in 100us) for DI 2.9 Advanced
99 1119 1019 1 RW Word Debounce time (in 100us) for DI 2.10 Advanced
100 1120 1020 1 RW Word Debounce time (in 100us) for DI 2.11 Advanced
101 1121 1021 1 RW Word Debounce time (in 100us) for DI 2.12 Advanced
102 1122 1022 1 RW Word Debounce time (in 100us) for DI 2.13 Advanced
103 1123 1023 1 RW Word Debounce time (in 100us) for DI 2.14 Advanced
104 1124 1024 1 RW Word Debounce time (in 100us) for DI 2.15 Advanced
105 1125 1025 1 RW Word Debounce time (in 100us) for DI 2.16 Advanced
106 1126 1026 1 RW Word Debounce time (in 100us) for DI 2.17 Advanced
107 1127 1027 1 RW Word Debounce time (in 100us) for DI 2.18 Advanced
108 1128 1028 1 RW Word Debounce time (in 100us) for DI 2.19 Advanced
109 1129 1029 1 RW Word Debounce time (in 100us) for DI 2.20 Advanced
110 1130 1030 1 RW Word Debounce time (in 100us) for DI 2.21 Advanced
111 1131 1031 1 RW Word Debounce time (in 100us) for DI 2.22 Advanced
112 1132 1032 1 RW Word Debounce time (in 100us) for DI 2.23 Advanced
113 1133 1033 1 RW Word Debounce time (in 100us) for DI 2.24 Advanced
114 1134 1034 1 RW Word Debounce time (in 100us) for DI 2.25 Advanced
115 1135 1035 1 RW Word Debounce time (in 100us) for DI 2.26 Advanced
116 1136 1036 1 RW Word Debounce time (in 100us) for DI 2.27 Advanced
117 1137 1037 1 RW Word Debounce time (in 100us) for DI 2.28 Advanced
118 1138 1038 1 RW Word Debounce time (in 100us) for DI 2.29 Advanced
119 1139 1039 1 RW Word Debounce time (in 100us) for DI 2.30 Advanced
120 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,32 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Digital Output 1.1,Basic
1,1,RW,Digital Output 1.2,Basic
2,2,RW,Digital Output 1.3,Basic
3,3,RW,Digital Output 1.4,Basic
4,4,R,Digital Input 1.1,Basic
5,5,R,Digital Input 1.2,Basic
6,6,R,Digital Input 1.3,Basic
7,7,R,Digital Input 1.4,Basic
8,8,RW,User Programmable LED 1.1,Basic
9,9,RW,User Programmable LED 1.2,Basic
10,10,RW,User Programmable LED 1.3,Basic
11,11,RW,User Programmable LED 1.4,Basic
1000,1000,RW,MWD reset indication,Advanced
1001,1001,RW,Enable/Disable 1Wire Bus,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1012,1012,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1013,1013,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1014,1014,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1015,1015,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1016,1016,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1017,1017,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1018,1018,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Digital Output 1.1 Basic
3 1 1 RW Digital Output 1.2 Basic
4 2 2 RW Digital Output 1.3 Basic
5 3 3 RW Digital Output 1.4 Basic
6 4 4 R Digital Input 1.1 Basic
7 5 5 R Digital Input 1.2 Basic
8 6 6 R Digital Input 1.3 Basic
9 7 7 R Digital Input 1.4 Basic
10 8 8 RW User Programmable LED 1.1 Basic
11 9 9 RW User Programmable LED 1.2 Basic
12 10 10 RW User Programmable LED 1.3 Basic
13 11 11 RW User Programmable LED 1.4 Basic
14 1000 1000 RW MWD reset indication Advanced
15 1001 1001 RW Enable/Disable 1Wire Bus Advanced
16 1002 1002 R Reset group MCU Advanced
17 1003 1003 RW Save current configuration and use on startup Advanced
18 1004 1004 RW (Internal) Firmware programming toggle Expert
19 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
20 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
21 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
22 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
23 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
24 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
25 1011 1011 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
26 1012 1012 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
27 1013 1013 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
28 1014 1014 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
29 1015 1015 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
30 1016 1016 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
31 1017 1017 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
32 1018 1018 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced

View File

@ -0,0 +1,35 @@
Via Unit 0,Via Unit 2,R/W,Content,Category
100,0,RW,Relay Output 2.1,Basic
101,1,RW,Relay Output 2.2,Basic
102,2,RW,Relay Output 2.3,Basic
103,3,RW,Relay Output 2.4,Basic
104,4,RW,Relay Output 2.5,Basic
105,5,RW,Relay Output 2.6,Basic
106,6,RW,Relay Output 2.7,Basic
107,7,RW,Relay Output 2.8,Basic
108,8,RW,Relay Output 2.9,Basic
109,9,RW,Relay Output 2.10,Basic
110,10,RW,Relay Output 2.11,Basic
111,11,RW,Relay Output 2.12,Basic
112,12,RW,Relay Output 2.13,Basic
113,13,RW,Relay Output 2.14,Basic
114,14,RW,Relay Output 2.15,Basic
115,15,RW,Relay Output 2.16,Basic
116,16,RW,Relay Output 2.17,Basic
117,17,RW,Relay Output 2.18,Basic
118,18,RW,Relay Output 2.19,Basic
119,19,RW,Relay Output 2.20,Basic
120,20,RW,Relay Output 2.21,Basic
121,21,RW,Relay Output 2.22,Basic
122,22,RW,Relay Output 2.23,Basic
123,23,RW,Relay Output 2.24,Basic
124,24,RW,Relay Output 2.25,Basic
125,25,RW,Relay Output 2.26,Basic
126,26,RW,Relay Output 2.27,Basic
127,27,RW,Relay Output 2.28,Basic
1100,1000,RW,MWD reset indication,Advanced
1102,1002,R,Reset group MCU,Advanced
1103,1003,RW,Save current configuration and use on startup,Advanced
1104,1004,RW,(Internal) Firmware programming toggle,Expert
1105,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1106,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1 Via Unit 0 Via Unit 2 R/W Content Category
2 100 0 RW Relay Output 2.1 Basic
3 101 1 RW Relay Output 2.2 Basic
4 102 2 RW Relay Output 2.3 Basic
5 103 3 RW Relay Output 2.4 Basic
6 104 4 RW Relay Output 2.5 Basic
7 105 5 RW Relay Output 2.6 Basic
8 106 6 RW Relay Output 2.7 Basic
9 107 7 RW Relay Output 2.8 Basic
10 108 8 RW Relay Output 2.9 Basic
11 109 9 RW Relay Output 2.10 Basic
12 110 10 RW Relay Output 2.11 Basic
13 111 11 RW Relay Output 2.12 Basic
14 112 12 RW Relay Output 2.13 Basic
15 113 13 RW Relay Output 2.14 Basic
16 114 14 RW Relay Output 2.15 Basic
17 115 15 RW Relay Output 2.16 Basic
18 116 16 RW Relay Output 2.17 Basic
19 117 17 RW Relay Output 2.18 Basic
20 118 18 RW Relay Output 2.19 Basic
21 119 19 RW Relay Output 2.20 Basic
22 120 20 RW Relay Output 2.21 Basic
23 121 21 RW Relay Output 2.22 Basic
24 122 22 RW Relay Output 2.23 Basic
25 123 23 RW Relay Output 2.24 Basic
26 124 24 RW Relay Output 2.25 Basic
27 125 25 RW Relay Output 2.26 Basic
28 126 26 RW Relay Output 2.27 Basic
29 127 27 RW Relay Output 2.28 Basic
30 1100 1000 RW MWD reset indication Advanced
31 1102 1002 R Reset group MCU Advanced
32 1103 1003 RW Save current configuration and use on startup Advanced
33 1104 1004 RW (Internal) Firmware programming toggle Expert
34 1105 1005 RW (Internal) Firmware reprogramming toggle Expert
35 1106 1006 RW (Internal) Firmware calibration programming toggle Expert

View File

@ -0,0 +1,97 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
1,1,1,RW,MixedBits,Digital Output 1.1,0,Basic
1,1,1,RW,MixedBits,Digital Output 1.2,1,Basic
1,1,1,RW,MixedBits,Digital Output 1.3,2,Basic
1,1,1,RW,MixedBits,Digital Output 1.4,3,Basic
2,2,1,RW,Word,Analog Output (raw value) 1.1,,Obsolete
3,3,1,R,Word,Analog Input (raw value) 1.1,,Obsolete
4,4,1,R,Word,Analog Input/Output (raw value) 1.1,,Obsolete
5,5,1,R,Word,VRefInt of MCU,,Expert
6,6,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
7,7,1,R,Word,Length of RS485 TX Queue 1.1,,Obsolete
8,8,2,RW,DWord,Counter of Digital Input 1.1,,Basic
10,10,2,RW,DWord,Counter of Digital Input 1.2,,Basic
12,12,2,RW,DWord,Counter of Digital Input 1.3,,Basic
14,14,2,RW,DWord,Counter of Digital Input 1.4,,Basic
16,16,1,RW,Word,PWM Duty Cycle of DO 1.1,,Basic
17,17,1,RW,Word,PWM Duty Cycle of DO 1.2,,Basic
18,18,1,RW,Word,PWM Duty Cycle of DO 1.3,,Basic
19,19,1,RW,Word,PWM Duty Cycle of DO 1.4,,Basic
20,20,1,RW,MixedBits,User LED 1.1,0,Basic
20,20,1,RW,MixedBits,User LED 1.2,1,Basic
20,20,1,RW,MixedBits,User LED 1.3,2,Basic
20,20,1,RW,MixedBits,User LED 1.4,3,Basic
21,21,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1017,1017,1,RW,Word,PWM Group prescaler,,Basic
1018,1018,1,RW,Word,PWM Group cycle length,,Basic
1019,1019,1,RW,Word,Analog Output Configuration(U/I/R-measure) 1.1,,Basic
1020,1020,1,RW,Word,Analog Output Voltage deviation 1.1,,Expert
1021,1021,1,RW,Word,Analog Output Voltage offset 1.1,,Expert
1022,1022,1,RW,Word,Analog Output Current deviation 1.1,,Expert
1023,1023,1,RW,Word,Analog Output Current offset 1.1,,Expert
1024,1024,1,RW,Word,Analog Input Configuration(U/I) 1.1,,Basic
1025,1025,1,RW,Word,Analog Input Voltage deviation 1.1,,Expert
1026,1026,1,RW,Word,Analog Input Voltage offset 1.1,,Expert
1027,1027,1,RW,Word,Analog Input Current deviation 1.1,,Expert
1028,1028,1,RW,Word,Analog Input Current offset 1.1,,Expert
1029,1029,1,RW,Word,Analog Input/Output Voltage deviation (input side) 1.1,,Expert
1030,1030,1,RW,Word,Analog Input/Output Voltage offset (input side) 1.1,,Expert
1031,1031,1,RW,MixedBits,RS485 Configuration 1.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
3000,3000,2,RW,Real,Analog Output value 1.1,,Basic
3002,3002,2,R,Real,Analog Input value 1.1,,Basic
3004,3004,2,R,Real,(Internal) Analog Output measured voltage value 1.1,,Expert
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 1 1 1 RW MixedBits Digital Output 1.1 0 Basic
7 1 1 1 RW MixedBits Digital Output 1.2 1 Basic
8 1 1 1 RW MixedBits Digital Output 1.3 2 Basic
9 1 1 1 RW MixedBits Digital Output 1.4 3 Basic
10 2 2 1 RW Word Analog Output (raw value) 1.1 Obsolete
11 3 3 1 R Word Analog Input (raw value) 1.1 Obsolete
12 4 4 1 R Word Analog Input/Output (raw value) 1.1 Obsolete
13 5 5 1 R Word VRefInt of MCU Expert
14 6 6 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
15 7 7 1 R Word Length of RS485 TX Queue 1.1 Obsolete
16 8 8 2 RW DWord Counter of Digital Input 1.1 Basic
17 10 10 2 RW DWord Counter of Digital Input 1.2 Basic
18 12 12 2 RW DWord Counter of Digital Input 1.3 Basic
19 14 14 2 RW DWord Counter of Digital Input 1.4 Basic
20 16 16 1 RW Word PWM Duty Cycle of DO 1.1 Basic
21 17 17 1 RW Word PWM Duty Cycle of DO 1.2 Basic
22 18 18 1 RW Word PWM Duty Cycle of DO 1.3 Basic
23 19 19 1 RW Word PWM Duty Cycle of DO 1.4 Basic
24 20 20 1 RW MixedBits User LED 1.1 0 Basic
25 20 20 1 RW MixedBits User LED 1.2 1 Basic
26 20 20 1 RW MixedBits User LED 1.3 2 Basic
27 20 20 1 RW MixedBits User LED 1.4 3 Basic
28 21 21 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
29 21 21 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
30 21 21 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
31 21 21 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
32 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
33 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
34 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
35 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
36 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
37 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
38 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
39 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
40 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
41 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
42 505 505 1 W Word Reserved - Do Not Use Reserved
43 506 506 1 W Word Reserved - Do Not Use Reserved
44 507 507 1 W Word Reserved - Do Not Use Reserved
45 508 508 1 W Word Reserved - Do Not Use Reserved
46 509 509 1 W Word Reserved - Do Not Use Reserved
47 510 1 RW Word (Internal) Stored Firmware Version Expert
48 511 1 RW Word (Internal) Stored Firmware Revision Expert
49 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
50 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
51 514 1 RW Word (Internal) Stored PCB Revision Expert
52 515 1 RW Word (Internal) Stored PCB Serial Number Expert
53 516 1 RW Word (Internal) Stored HW Revision Number Expert
54 1000 1000 1 R Word Firmware Version Expert
55 1001 1001 1 R Word Number of I/Os Advanced
56 1002 1002 1 R Word Number of peripherals Advanced
57 1003 1003 1 R Word Firmware ID Expert
58 1004 1004 1 R Word Hardware ID Expert
59 1005 1005 2 R DWord PCB Serial Number Expert
60 1007 1007 1 RW Word Interrupt Mask Expert
61 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
62 1009 1009 1 R Word VRef of MCU Expert
63 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
64 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
65 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
66 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
67 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
68 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
69 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
70 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
71 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
72 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
73 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
74 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
75 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
76 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
77 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
78 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
79 1017 1017 1 RW Word PWM Group prescaler Basic
80 1018 1018 1 RW Word PWM Group cycle length Basic
81 1019 1019 1 RW Word Analog Output Configuration(U/I/R-measure) 1.1 Basic
82 1020 1020 1 RW Word Analog Output Voltage deviation 1.1 Expert
83 1021 1021 1 RW Word Analog Output Voltage offset 1.1 Expert
84 1022 1022 1 RW Word Analog Output Current deviation 1.1 Expert
85 1023 1023 1 RW Word Analog Output Current offset 1.1 Expert
86 1024 1024 1 RW Word Analog Input Configuration(U/I) 1.1 Basic
87 1025 1025 1 RW Word Analog Input Voltage deviation 1.1 Expert
88 1026 1026 1 RW Word Analog Input Voltage offset 1.1 Expert
89 1027 1027 1 RW Word Analog Input Current deviation 1.1 Expert
90 1028 1028 1 RW Word Analog Input Current offset 1.1 Expert
91 1029 1029 1 RW Word Analog Input/Output Voltage deviation (input side) 1.1 Expert
92 1030 1030 1 RW Word Analog Input/Output Voltage offset (input side) 1.1 Expert
93 1031 1031 1 RW MixedBits RS485 Configuration 1.1 Obsolete
94 2000 220 W Word Reserved - Do Not Use Reserved
95 3000 3000 2 RW Real Analog Output value 1.1 Basic
96 3002 3002 2 R Real Analog Input value 1.1 Basic
97 3004 3004 2 R Real (Internal) Analog Output measured voltage value 1.1 Expert

View File

@ -0,0 +1,120 @@
Via Unit 0,Via Unit 2,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
100,0,1,RW,MixedBits,Relay Output 2.1,0,Basic
100,0,1,RW,MixedBits,Relay Output 2.2,1,Basic
100,0,1,RW,MixedBits,Relay Output 2.3,2,Basic
100,0,1,RW,MixedBits,Relay Output 2.4,3,Basic
100,0,1,RW,MixedBits,Relay Output 2.5,4,Basic
100,0,1,RW,MixedBits,Relay Output 2.6,5,Basic
100,0,1,RW,MixedBits,Relay Output 2.7,6,Basic
100,0,1,RW,MixedBits,Relay Output 2.8,7,Basic
100,0,1,RW,MixedBits,Relay Output 2.9,8,Basic
100,0,1,RW,MixedBits,Relay Output 2.10,9,Basic
100,0,1,RW,MixedBits,Relay Output 2.11,10,Basic
100,0,1,RW,MixedBits,Relay Output 2.12,11,Basic
100,0,1,RW,MixedBits,Relay Output 2.13,12,Basic
100,0,1,RW,MixedBits,Relay Output 2.14,13,Basic
100,0,1,RW,MixedBits,Relay Output 2.15,14,Basic
100,0,1,RW,MixedBits,Relay Output 2.16,15,Basic
101,1,1,RW,MixedBits,Relay Output 2.17,0,Basic
101,1,1,RW,MixedBits,Relay Output 2.18,1,Basic
101,1,1,RW,MixedBits,Relay Output 2.19,2,Basic
101,1,1,RW,MixedBits,Relay Output 2.20,3,Basic
101,1,1,RW,MixedBits,Relay Output 2.21,4,Basic
101,1,1,RW,MixedBits,Relay Output 2.22,5,Basic
101,1,1,RW,MixedBits,Relay Output 2.23,6,Basic
101,1,1,RW,MixedBits,Relay Output 2.24,7,Basic
101,1,1,RW,MixedBits,Relay Output 2.25,8,Basic
101,1,1,RW,MixedBits,Relay Output 2.26,9,Basic
101,1,1,RW,MixedBits,Relay Output 2.27,10,Basic
101,1,1,RW,MixedBits,Relay Output 2.28,11,Basic
102,2,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
103,3,1,W,Word,Reserved - Do Not Use,,Reserved
104,4,1,W,Word,Reserved - Do Not Use,,Reserved
105,5,1,W,Word,Reserved - Do Not Use,,Reserved
106,6,1,W,Word,Reserved - Do Not Use,,Reserved
107,7,1,RW,MixedBits,Synchronised DO/RO 2.1,0,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.2,1,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.3,2,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.4,3,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.5,4,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.6,5,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.7,6,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.8,7,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.9,8,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.10,9,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.11,10,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.12,11,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.13,12,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.14,13,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.15,14,Advanced
107,7,1,RW,MixedBits,Synchronised DO/RO 2.16,15,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.17,0,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.18,1,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.19,2,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.20,3,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.21,4,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.22,5,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.23,6,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.24,7,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.25,8,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.26,9,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.27,10,Advanced
108,8,1,RW,MixedBits,Synchronised DO/RO 2.28,11,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.1,0,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.2,1,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.3,2,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.4,3,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.5,4,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.6,5,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.7,6,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.8,7,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.9,8,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.10,9,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.11,10,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.12,11,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.13,12,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.14,13,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.15,14,Advanced
109,9,1,RW,MixedBits,Synchronised DO/RO Lock 2.16,15,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.17,0,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.18,1,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.19,2,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.20,3,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.21,4,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.22,5,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.23,6,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.24,7,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.25,8,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.26,9,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.27,10,Advanced
110,10,1,RW,MixedBits,Synchronised DO/RO Lock 2.28,11,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 2.1,,Obsolete
600,500,1,W,Word,Reserved - Do Not Use,,Reserved
601,501,1,W,Word,Reserved - Do Not Use,,Reserved
602,502,1,W,Word,Reserved - Do Not Use,,Reserved
603,503,1,W,Word,Reserved - Do Not Use,,Reserved
604,504,1,W,Word,Reserved - Do Not Use,,Reserved
605,505,1,W,Word,Reserved - Do Not Use,,Reserved
606,506,1,W,Word,Reserved - Do Not Use,,Reserved
607,507,1,W,Word,Reserved - Do Not Use,,Reserved
608,508,1,W,Word,Reserved - Do Not Use,,Reserved
609,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1100,1000,1,R,Word,Firmware Version,,Expert
1101,1001,1,R,Word,Number of I/Os,,Advanced
1102,1002,1,R,Word,Number of peripherals,,Advanced
1103,1003,1,R,Word,Firmware ID,,Expert
1104,1004,1,R,Word,Hardware ID,,Expert
1105,1005,2,R,DWord,PCB Serial Number,,Expert
1107,1007,1,RW,Word,Interrupt Mask,,Expert
1108,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1109,1009,1,R,Word,VRef of MCU,,Expert
1110,1010,1,W,Word,Reserved - Do Not Use,,Reserved
1111,1011,1,W,Word,Reserved - Do Not Use,,Reserved
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 2 Register Count R/W Data Type Content Start Bit Nr. Category
2 100 0 1 RW MixedBits Relay Output 2.1 0 Basic
3 100 0 1 RW MixedBits Relay Output 2.2 1 Basic
4 100 0 1 RW MixedBits Relay Output 2.3 2 Basic
5 100 0 1 RW MixedBits Relay Output 2.4 3 Basic
6 100 0 1 RW MixedBits Relay Output 2.5 4 Basic
7 100 0 1 RW MixedBits Relay Output 2.6 5 Basic
8 100 0 1 RW MixedBits Relay Output 2.7 6 Basic
9 100 0 1 RW MixedBits Relay Output 2.8 7 Basic
10 100 0 1 RW MixedBits Relay Output 2.9 8 Basic
11 100 0 1 RW MixedBits Relay Output 2.10 9 Basic
12 100 0 1 RW MixedBits Relay Output 2.11 10 Basic
13 100 0 1 RW MixedBits Relay Output 2.12 11 Basic
14 100 0 1 RW MixedBits Relay Output 2.13 12 Basic
15 100 0 1 RW MixedBits Relay Output 2.14 13 Basic
16 100 0 1 RW MixedBits Relay Output 2.15 14 Basic
17 100 0 1 RW MixedBits Relay Output 2.16 15 Basic
18 101 1 1 RW MixedBits Relay Output 2.17 0 Basic
19 101 1 1 RW MixedBits Relay Output 2.18 1 Basic
20 101 1 1 RW MixedBits Relay Output 2.19 2 Basic
21 101 1 1 RW MixedBits Relay Output 2.20 3 Basic
22 101 1 1 RW MixedBits Relay Output 2.21 4 Basic
23 101 1 1 RW MixedBits Relay Output 2.22 5 Basic
24 101 1 1 RW MixedBits Relay Output 2.23 6 Basic
25 101 1 1 RW MixedBits Relay Output 2.24 7 Basic
26 101 1 1 RW MixedBits Relay Output 2.25 8 Basic
27 101 1 1 RW MixedBits Relay Output 2.26 9 Basic
28 101 1 1 RW MixedBits Relay Output 2.27 10 Basic
29 101 1 1 RW MixedBits Relay Output 2.28 11 Basic
30 102 2 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
31 103 3 1 W Word Reserved - Do Not Use Reserved
32 104 4 1 W Word Reserved - Do Not Use Reserved
33 105 5 1 W Word Reserved - Do Not Use Reserved
34 106 6 1 W Word Reserved - Do Not Use Reserved
35 107 7 1 RW MixedBits Synchronised DO/RO 2.1 0 Advanced
36 107 7 1 RW MixedBits Synchronised DO/RO 2.2 1 Advanced
37 107 7 1 RW MixedBits Synchronised DO/RO 2.3 2 Advanced
38 107 7 1 RW MixedBits Synchronised DO/RO 2.4 3 Advanced
39 107 7 1 RW MixedBits Synchronised DO/RO 2.5 4 Advanced
40 107 7 1 RW MixedBits Synchronised DO/RO 2.6 5 Advanced
41 107 7 1 RW MixedBits Synchronised DO/RO 2.7 6 Advanced
42 107 7 1 RW MixedBits Synchronised DO/RO 2.8 7 Advanced
43 107 7 1 RW MixedBits Synchronised DO/RO 2.9 8 Advanced
44 107 7 1 RW MixedBits Synchronised DO/RO 2.10 9 Advanced
45 107 7 1 RW MixedBits Synchronised DO/RO 2.11 10 Advanced
46 107 7 1 RW MixedBits Synchronised DO/RO 2.12 11 Advanced
47 107 7 1 RW MixedBits Synchronised DO/RO 2.13 12 Advanced
48 107 7 1 RW MixedBits Synchronised DO/RO 2.14 13 Advanced
49 107 7 1 RW MixedBits Synchronised DO/RO 2.15 14 Advanced
50 107 7 1 RW MixedBits Synchronised DO/RO 2.16 15 Advanced
51 108 8 1 RW MixedBits Synchronised DO/RO 2.17 0 Advanced
52 108 8 1 RW MixedBits Synchronised DO/RO 2.18 1 Advanced
53 108 8 1 RW MixedBits Synchronised DO/RO 2.19 2 Advanced
54 108 8 1 RW MixedBits Synchronised DO/RO 2.20 3 Advanced
55 108 8 1 RW MixedBits Synchronised DO/RO 2.21 4 Advanced
56 108 8 1 RW MixedBits Synchronised DO/RO 2.22 5 Advanced
57 108 8 1 RW MixedBits Synchronised DO/RO 2.23 6 Advanced
58 108 8 1 RW MixedBits Synchronised DO/RO 2.24 7 Advanced
59 108 8 1 RW MixedBits Synchronised DO/RO 2.25 8 Advanced
60 108 8 1 RW MixedBits Synchronised DO/RO 2.26 9 Advanced
61 108 8 1 RW MixedBits Synchronised DO/RO 2.27 10 Advanced
62 108 8 1 RW MixedBits Synchronised DO/RO 2.28 11 Advanced
63 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.1 0 Advanced
64 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.2 1 Advanced
65 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.3 2 Advanced
66 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.4 3 Advanced
67 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.5 4 Advanced
68 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.6 5 Advanced
69 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.7 6 Advanced
70 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.8 7 Advanced
71 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.9 8 Advanced
72 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.10 9 Advanced
73 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.11 10 Advanced
74 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.12 11 Advanced
75 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.13 12 Advanced
76 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.14 13 Advanced
77 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.15 14 Advanced
78 109 9 1 RW MixedBits Synchronised DO/RO Lock 2.16 15 Advanced
79 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.17 0 Advanced
80 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.18 1 Advanced
81 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.19 2 Advanced
82 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.20 3 Advanced
83 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.21 4 Advanced
84 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.22 5 Advanced
85 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.23 6 Advanced
86 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.24 7 Advanced
87 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.25 8 Advanced
88 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.26 9 Advanced
89 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.27 10 Advanced
90 110 10 1 RW MixedBits Synchronised DO/RO Lock 2.28 11 Advanced
91 100 2 RW DWord (Internal) RS485 Full Mode Configuration 2.1 Obsolete
92 600 500 1 W Word Reserved - Do Not Use Reserved
93 601 501 1 W Word Reserved - Do Not Use Reserved
94 602 502 1 W Word Reserved - Do Not Use Reserved
95 603 503 1 W Word Reserved - Do Not Use Reserved
96 604 504 1 W Word Reserved - Do Not Use Reserved
97 605 505 1 W Word Reserved - Do Not Use Reserved
98 606 506 1 W Word Reserved - Do Not Use Reserved
99 607 507 1 W Word Reserved - Do Not Use Reserved
100 608 508 1 W Word Reserved - Do Not Use Reserved
101 609 509 1 W Word Reserved - Do Not Use Reserved
102 510 1 RW Word (Internal) Stored Firmware Version Expert
103 511 1 RW Word (Internal) Stored Firmware Revision Expert
104 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
105 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
106 514 1 RW Word (Internal) Stored PCB Revision Expert
107 515 1 RW Word (Internal) Stored PCB Serial Number Expert
108 516 1 RW Word (Internal) Stored HW Revision Number Expert
109 1100 1000 1 R Word Firmware Version Expert
110 1101 1001 1 R Word Number of I/Os Advanced
111 1102 1002 1 R Word Number of peripherals Advanced
112 1103 1003 1 R Word Firmware ID Expert
113 1104 1004 1 R Word Hardware ID Expert
114 1105 1005 2 R DWord PCB Serial Number Expert
115 1107 1007 1 RW Word Interrupt Mask Expert
116 1108 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
117 1109 1009 1 R Word VRef of MCU Expert
118 1110 1010 1 W Word Reserved - Do Not Use Reserved
119 1111 1011 1 W Word Reserved - Do Not Use Reserved
120 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,32 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Digital Output 1.1,Basic
1,1,RW,Digital Output 1.2,Basic
2,2,RW,Digital Output 1.3,Basic
3,3,RW,Digital Output 1.4,Basic
4,4,R,Digital Input 1.1,Basic
5,5,R,Digital Input 1.2,Basic
6,6,R,Digital Input 1.3,Basic
7,7,R,Digital Input 1.4,Basic
8,8,RW,User Programmable LED 1.1,Basic
9,9,RW,User Programmable LED 1.2,Basic
10,10,RW,User Programmable LED 1.3,Basic
11,11,RW,User Programmable LED 1.4,Basic
1000,1000,RW,MWD reset indication,Advanced
1001,1001,RW,Enable/Disable 1Wire Bus,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1012,1012,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1013,1013,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1014,1014,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1015,1015,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1016,1016,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1017,1017,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1018,1018,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Digital Output 1.1 Basic
3 1 1 RW Digital Output 1.2 Basic
4 2 2 RW Digital Output 1.3 Basic
5 3 3 RW Digital Output 1.4 Basic
6 4 4 R Digital Input 1.1 Basic
7 5 5 R Digital Input 1.2 Basic
8 6 6 R Digital Input 1.3 Basic
9 7 7 R Digital Input 1.4 Basic
10 8 8 RW User Programmable LED 1.1 Basic
11 9 9 RW User Programmable LED 1.2 Basic
12 10 10 RW User Programmable LED 1.3 Basic
13 11 11 RW User Programmable LED 1.4 Basic
14 1000 1000 RW MWD reset indication Advanced
15 1001 1001 RW Enable/Disable 1Wire Bus Advanced
16 1002 1002 R Reset group MCU Advanced
17 1003 1003 RW Save current configuration and use on startup Advanced
18 1004 1004 RW (Internal) Firmware programming toggle Expert
19 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
20 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
21 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
22 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
23 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
24 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
25 1011 1011 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
26 1012 1012 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
27 1013 1013 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
28 1014 1014 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
29 1015 1015 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
30 1016 1016 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
31 1017 1017 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
32 1018 1018 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced

View File

@ -0,0 +1,33 @@
Via Unit 0,Via Unit 2,R/W,Content,Category
100,0,RW,Relay Output 2.1,Basic
101,1,RW,Relay Output 2.2,Basic
102,2,RW,Relay Output 2.3,Basic
103,3,RW,Relay Output 2.4,Basic
104,4,RW,Relay Output 2.5,Basic
105,5,R,Digital Input 2.1,Basic
106,6,R,Digital Input 2.2,Basic
107,7,R,Digital Input 2.3,Basic
108,8,R,Digital Input 2.4,Basic
109,9,R,Digital Input 2.5,Basic
110,10,R,Digital Input 2.6,Basic
1100,1000,RW,MWD reset indication,Advanced
1102,1002,R,Reset group MCU,Advanced
1103,1003,RW,Save current configuration and use on startup,Advanced
1104,1004,RW,(Internal) Firmware programming toggle,Expert
1105,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1106,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1107,1007,RW,Enable DirectSwitch on DI 2.1,Advanced
1108,1008,RW,Enable DirectSwitch on DI 2.2,Advanced
1109,1009,RW,Enable DirectSwitch on DI 2.3,Advanced
1110,1010,RW,Enable DirectSwitch on DI 2.4,Advanced
1111,1011,RW,Enable DirectSwitch on DI 2.5,Advanced
1112,1012,RW,Invert DirectSwitch Polarity on DI 2.1,Advanced
1113,1013,RW,Invert DirectSwitch Polarity on DI 2.2,Advanced
1114,1014,RW,Invert DirectSwitch Polarity on DI 2.3,Advanced
1115,1015,RW,Invert DirectSwitch Polarity on DI 2.4,Advanced
1116,1016,RW,Invert DirectSwitch Polarity on DI 2.5,Advanced
1117,1017,RW,Enable DirectSwitch Toggle Mode on DI 2.1,Advanced
1118,1018,RW,Enable DirectSwitch Toggle Mode on DI 2.2,Advanced
1119,1019,RW,Enable DirectSwitch Toggle Mode on DI 2.3,Advanced
1120,1020,RW,Enable DirectSwitch Toggle Mode on DI 2.4,Advanced
1121,1021,RW,Enable DirectSwitch Toggle Mode on DI 2.5,Advanced
1 Via Unit 0 Via Unit 2 R/W Content Category
2 100 0 RW Relay Output 2.1 Basic
3 101 1 RW Relay Output 2.2 Basic
4 102 2 RW Relay Output 2.3 Basic
5 103 3 RW Relay Output 2.4 Basic
6 104 4 RW Relay Output 2.5 Basic
7 105 5 R Digital Input 2.1 Basic
8 106 6 R Digital Input 2.2 Basic
9 107 7 R Digital Input 2.3 Basic
10 108 8 R Digital Input 2.4 Basic
11 109 9 R Digital Input 2.5 Basic
12 110 10 R Digital Input 2.6 Basic
13 1100 1000 RW MWD reset indication Advanced
14 1102 1002 R Reset group MCU Advanced
15 1103 1003 RW Save current configuration and use on startup Advanced
16 1104 1004 RW (Internal) Firmware programming toggle Expert
17 1105 1005 RW (Internal) Firmware reprogramming toggle Expert
18 1106 1006 RW (Internal) Firmware calibration programming toggle Expert
19 1107 1007 RW Enable DirectSwitch on DI 2.1 Advanced
20 1108 1008 RW Enable DirectSwitch on DI 2.2 Advanced
21 1109 1009 RW Enable DirectSwitch on DI 2.3 Advanced
22 1110 1010 RW Enable DirectSwitch on DI 2.4 Advanced
23 1111 1011 RW Enable DirectSwitch on DI 2.5 Advanced
24 1112 1012 RW Invert DirectSwitch Polarity on DI 2.1 Advanced
25 1113 1013 RW Invert DirectSwitch Polarity on DI 2.2 Advanced
26 1114 1014 RW Invert DirectSwitch Polarity on DI 2.3 Advanced
27 1115 1015 RW Invert DirectSwitch Polarity on DI 2.4 Advanced
28 1116 1016 RW Invert DirectSwitch Polarity on DI 2.5 Advanced
29 1117 1017 RW Enable DirectSwitch Toggle Mode on DI 2.1 Advanced
30 1118 1018 RW Enable DirectSwitch Toggle Mode on DI 2.2 Advanced
31 1119 1019 RW Enable DirectSwitch Toggle Mode on DI 2.3 Advanced
32 1120 1020 RW Enable DirectSwitch Toggle Mode on DI 2.4 Advanced
33 1121 1021 RW Enable DirectSwitch Toggle Mode on DI 2.5 Advanced

View File

@ -0,0 +1,97 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
1,1,1,RW,MixedBits,Digital Output 1.1,0,Basic
1,1,1,RW,MixedBits,Digital Output 1.2,1,Basic
1,1,1,RW,MixedBits,Digital Output 1.3,2,Basic
1,1,1,RW,MixedBits,Digital Output 1.4,3,Basic
2,2,1,RW,Word,Analog Output (raw value) 1.1,,Obsolete
3,3,1,R,Word,Analog Input (raw value) 1.1,,Obsolete
4,4,1,R,Word,Analog Input/Output (raw value) 1.1,,Obsolete
5,5,1,R,Word,VRefInt of MCU,,Expert
6,6,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
7,7,1,R,Word,Length of RS485 TX Queue 1.1,,Obsolete
8,8,2,RW,DWord,Counter of Digital Input 1.1,,Basic
10,10,2,RW,DWord,Counter of Digital Input 1.2,,Basic
12,12,2,RW,DWord,Counter of Digital Input 1.3,,Basic
14,14,2,RW,DWord,Counter of Digital Input 1.4,,Basic
16,16,1,RW,Word,PWM Duty Cycle of DO 1.1,,Basic
17,17,1,RW,Word,PWM Duty Cycle of DO 1.2,,Basic
18,18,1,RW,Word,PWM Duty Cycle of DO 1.3,,Basic
19,19,1,RW,Word,PWM Duty Cycle of DO 1.4,,Basic
20,20,1,RW,MixedBits,User LED 1.1,0,Basic
20,20,1,RW,MixedBits,User LED 1.2,1,Basic
20,20,1,RW,MixedBits,User LED 1.3,2,Basic
20,20,1,RW,MixedBits,User LED 1.4,3,Basic
21,21,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1017,1017,1,RW,Word,PWM Group prescaler,,Basic
1018,1018,1,RW,Word,PWM Group cycle length,,Basic
1019,1019,1,RW,Word,Analog Output Configuration(U/I/R-measure) 1.1,,Basic
1020,1020,1,RW,Word,Analog Output Voltage deviation 1.1,,Expert
1021,1021,1,RW,Word,Analog Output Voltage offset 1.1,,Expert
1022,1022,1,RW,Word,Analog Output Current deviation 1.1,,Expert
1023,1023,1,RW,Word,Analog Output Current offset 1.1,,Expert
1024,1024,1,RW,Word,Analog Input Configuration(U/I) 1.1,,Basic
1025,1025,1,RW,Word,Analog Input Voltage deviation 1.1,,Expert
1026,1026,1,RW,Word,Analog Input Voltage offset 1.1,,Expert
1027,1027,1,RW,Word,Analog Input Current deviation 1.1,,Expert
1028,1028,1,RW,Word,Analog Input Current offset 1.1,,Expert
1029,1029,1,RW,Word,Analog Input/Output Voltage deviation (input side) 1.1,,Expert
1030,1030,1,RW,Word,Analog Input/Output Voltage offset (input side) 1.1,,Expert
1031,1031,1,RW,MixedBits,RS485 Configuration 1.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
3000,3000,2,RW,Real,Analog Output value 1.1,,Basic
3002,3002,2,R,Real,Analog Input value 1.1,,Basic
3004,3004,2,R,Real,(Internal) Analog Output measured voltage value 1.1,,Expert
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 1 1 1 RW MixedBits Digital Output 1.1 0 Basic
7 1 1 1 RW MixedBits Digital Output 1.2 1 Basic
8 1 1 1 RW MixedBits Digital Output 1.3 2 Basic
9 1 1 1 RW MixedBits Digital Output 1.4 3 Basic
10 2 2 1 RW Word Analog Output (raw value) 1.1 Obsolete
11 3 3 1 R Word Analog Input (raw value) 1.1 Obsolete
12 4 4 1 R Word Analog Input/Output (raw value) 1.1 Obsolete
13 5 5 1 R Word VRefInt of MCU Expert
14 6 6 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
15 7 7 1 R Word Length of RS485 TX Queue 1.1 Obsolete
16 8 8 2 RW DWord Counter of Digital Input 1.1 Basic
17 10 10 2 RW DWord Counter of Digital Input 1.2 Basic
18 12 12 2 RW DWord Counter of Digital Input 1.3 Basic
19 14 14 2 RW DWord Counter of Digital Input 1.4 Basic
20 16 16 1 RW Word PWM Duty Cycle of DO 1.1 Basic
21 17 17 1 RW Word PWM Duty Cycle of DO 1.2 Basic
22 18 18 1 RW Word PWM Duty Cycle of DO 1.3 Basic
23 19 19 1 RW Word PWM Duty Cycle of DO 1.4 Basic
24 20 20 1 RW MixedBits User LED 1.1 0 Basic
25 20 20 1 RW MixedBits User LED 1.2 1 Basic
26 20 20 1 RW MixedBits User LED 1.3 2 Basic
27 20 20 1 RW MixedBits User LED 1.4 3 Basic
28 21 21 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
29 21 21 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
30 21 21 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
31 21 21 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
32 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
33 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
34 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
35 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
36 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
37 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
38 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
39 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
40 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
41 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
42 505 505 1 W Word Reserved - Do Not Use Reserved
43 506 506 1 W Word Reserved - Do Not Use Reserved
44 507 507 1 W Word Reserved - Do Not Use Reserved
45 508 508 1 W Word Reserved - Do Not Use Reserved
46 509 509 1 W Word Reserved - Do Not Use Reserved
47 510 1 RW Word (Internal) Stored Firmware Version Expert
48 511 1 RW Word (Internal) Stored Firmware Revision Expert
49 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
50 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
51 514 1 RW Word (Internal) Stored PCB Revision Expert
52 515 1 RW Word (Internal) Stored PCB Serial Number Expert
53 516 1 RW Word (Internal) Stored HW Revision Number Expert
54 1000 1000 1 R Word Firmware Version Expert
55 1001 1001 1 R Word Number of I/Os Advanced
56 1002 1002 1 R Word Number of peripherals Advanced
57 1003 1003 1 R Word Firmware ID Expert
58 1004 1004 1 R Word Hardware ID Expert
59 1005 1005 2 R DWord PCB Serial Number Expert
60 1007 1007 1 RW Word Interrupt Mask Expert
61 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
62 1009 1009 1 R Word VRef of MCU Expert
63 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
64 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
65 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
66 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
67 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
68 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
69 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
70 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
71 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
72 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
73 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
74 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
75 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
76 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
77 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
78 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
79 1017 1017 1 RW Word PWM Group prescaler Basic
80 1018 1018 1 RW Word PWM Group cycle length Basic
81 1019 1019 1 RW Word Analog Output Configuration(U/I/R-measure) 1.1 Basic
82 1020 1020 1 RW Word Analog Output Voltage deviation 1.1 Expert
83 1021 1021 1 RW Word Analog Output Voltage offset 1.1 Expert
84 1022 1022 1 RW Word Analog Output Current deviation 1.1 Expert
85 1023 1023 1 RW Word Analog Output Current offset 1.1 Expert
86 1024 1024 1 RW Word Analog Input Configuration(U/I) 1.1 Basic
87 1025 1025 1 RW Word Analog Input Voltage deviation 1.1 Expert
88 1026 1026 1 RW Word Analog Input Voltage offset 1.1 Expert
89 1027 1027 1 RW Word Analog Input Current deviation 1.1 Expert
90 1028 1028 1 RW Word Analog Input Current offset 1.1 Expert
91 1029 1029 1 RW Word Analog Input/Output Voltage deviation (input side) 1.1 Expert
92 1030 1030 1 RW Word Analog Input/Output Voltage offset (input side) 1.1 Expert
93 1031 1031 1 RW MixedBits RS485 Configuration 1.1 Obsolete
94 2000 220 W Word Reserved - Do Not Use Reserved
95 3000 3000 2 RW Real Analog Output value 1.1 Basic
96 3002 3002 2 R Real Analog Input value 1.1 Basic
97 3004 3004 2 R Real (Internal) Analog Output measured voltage value 1.1 Expert

View File

@ -0,0 +1,92 @@
Via Unit 0,Via Unit 2,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
100,0,1,R,MixedBits,Digital Input 2.1,0,Basic
100,0,1,R,MixedBits,Digital Input 2.2,1,Basic
100,0,1,R,MixedBits,Digital Input 2.3,2,Basic
100,0,1,R,MixedBits,Digital Input 2.4,3,Basic
100,0,1,R,MixedBits,Digital Input 2.5,4,Basic
100,0,1,R,MixedBits,Digital Input 2.6,5,Basic
101,1,1,RW,MixedBits,Relay Output 2.1,0,Basic
101,1,1,RW,MixedBits,Relay Output 2.2,1,Basic
101,1,1,RW,MixedBits,Relay Output 2.3,2,Basic
101,1,1,RW,MixedBits,Relay Output 2.4,3,Basic
101,1,1,RW,MixedBits,Relay Output 2.5,4,Basic
102,2,1,RW,Word,Analog Output Value 2.1 (0..4000 ~ 0..10V),,Basic
103,3,1,RW,Word,Analog Output Value 2.2 (0..4000 ~ 0..10V),,Basic
104,4,1,RW,Word,Analog Output Value 2.3 (0..4000 ~ 0..10V),,Basic
105,5,1,RW,Word,Analog Output Value 2.4 (0..4000 ~ 0..10V),,Basic
106,6,2,R,Real,Analog Input Value 2.1,,Basic
108,8,2,R,Real,Analog Input Value 2.2,,Basic
110,10,2,R,Real,Analog Input Value 2.3,,Basic
112,12,2,R,Real,Analog Input Value 2.4,,Basic
114,14,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
115,15,1,R,Word,Length of RS485 TX Queue 2.1,,Obsolete
116,16,2,RW,DWord,Counter of Digital Input 2.1,,Basic
118,18,2,RW,DWord,Counter of Digital Input 2.2,,Basic
120,20,2,RW,DWord,Counter of Digital Input 2.3,,Basic
122,22,2,RW,DWord,Counter of Digital Input 2.4,,Basic
124,24,2,RW,DWord,Counter of Digital Input 2.5,,Basic
126,26,2,RW,DWord,Counter of Digital Input 2.6,,Basic
128,28,1,RW,MixedBits,Synchronised DO/RO 2.1,0,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.2,1,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.3,2,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.4,3,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.5,4,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.1,0,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.2,1,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.3,2,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.4,3,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.5,4,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 2.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 2.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 2.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 2.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 2.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 2.1,,Basic
605,505,1,W,Word,Reserved - Do Not Use,,Reserved
606,506,1,W,Word,Reserved - Do Not Use,,Reserved
607,507,1,W,Word,Reserved - Do Not Use,,Reserved
608,508,1,W,Word,Reserved - Do Not Use,,Reserved
609,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1100,1000,1,R,Word,Firmware Version,,Expert
1101,1001,1,R,Word,Number of I/Os,,Advanced
1102,1002,1,R,Word,Number of peripherals,,Advanced
1103,1003,1,R,Word,Firmware ID,,Expert
1104,1004,1,R,Word,Hardware ID,,Expert
1105,1005,2,R,DWord,PCB Serial Number,,Expert
1107,1007,1,RW,Word,Interrupt Mask,,Expert
1108,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1109,1009,1,R,Word,VRef of MCU,,Expert
1110,1010,1,RW,Word,Debounce time (in 100us) for DI 2.1,,Advanced
1111,1011,1,RW,Word,Debounce time (in 100us) for DI 2.2,,Advanced
1112,1012,1,RW,Word,Debounce time (in 100us) for DI 2.3,,Advanced
1113,1013,1,RW,Word,Debounce time (in 100us) for DI 2.4,,Advanced
1114,1014,1,RW,Word,Debounce time (in 100us) for DI 2.5,,Advanced
1115,1015,1,RW,Word,Debounce time (in 100us) for DI 2.6,,Advanced
1116,1016,1,RW,MixedBits,Enable DirectSwitch on DI 2.1,0,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch on DI 2.2,1,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch on DI 2.3,2,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch on DI 2.4,3,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch on DI 2.5,4,Basic
1117,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.1,0,Basic
1117,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.2,1,Basic
1117,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.3,2,Basic
1117,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.4,3,Basic
1117,1017,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.5,4,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.1,0,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.2,1,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.3,2,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.4,3,Basic
1118,1018,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.5,4,Basic
1119,1019,1,RW,Word,Analog Input Configuration(U/I/R) 2.1,,Basic
1120,1020,1,RW,Word,Analog Input Configuration(U/I/R) 2.2,,Basic
1121,1021,1,RW,Word,Analog Input Configuration(U/I/R) 2.3,,Basic
1122,1022,1,RW,Word,Analog Input Configuration(U/I/R) 2.4,,Basic
1123,1023,1,RW,MixedBits,RS485 Configuration 2.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 2 Register Count R/W Data Type Content Start Bit Nr. Category
2 100 0 1 R MixedBits Digital Input 2.1 0 Basic
3 100 0 1 R MixedBits Digital Input 2.2 1 Basic
4 100 0 1 R MixedBits Digital Input 2.3 2 Basic
5 100 0 1 R MixedBits Digital Input 2.4 3 Basic
6 100 0 1 R MixedBits Digital Input 2.5 4 Basic
7 100 0 1 R MixedBits Digital Input 2.6 5 Basic
8 101 1 1 RW MixedBits Relay Output 2.1 0 Basic
9 101 1 1 RW MixedBits Relay Output 2.2 1 Basic
10 101 1 1 RW MixedBits Relay Output 2.3 2 Basic
11 101 1 1 RW MixedBits Relay Output 2.4 3 Basic
12 101 1 1 RW MixedBits Relay Output 2.5 4 Basic
13 102 2 1 RW Word Analog Output Value 2.1 (0..4000 ~ 0..10V) Basic
14 103 3 1 RW Word Analog Output Value 2.2 (0..4000 ~ 0..10V) Basic
15 104 4 1 RW Word Analog Output Value 2.3 (0..4000 ~ 0..10V) Basic
16 105 5 1 RW Word Analog Output Value 2.4 (0..4000 ~ 0..10V) Basic
17 106 6 2 R Real Analog Input Value 2.1 Basic
18 108 8 2 R Real Analog Input Value 2.2 Basic
19 110 10 2 R Real Analog Input Value 2.3 Basic
20 112 12 2 R Real Analog Input Value 2.4 Basic
21 114 14 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
22 115 15 1 R Word Length of RS485 TX Queue 2.1 Obsolete
23 116 16 2 RW DWord Counter of Digital Input 2.1 Basic
24 118 18 2 RW DWord Counter of Digital Input 2.2 Basic
25 120 20 2 RW DWord Counter of Digital Input 2.3 Basic
26 122 22 2 RW DWord Counter of Digital Input 2.4 Basic
27 124 24 2 RW DWord Counter of Digital Input 2.5 Basic
28 126 26 2 RW DWord Counter of Digital Input 2.6 Basic
29 128 28 1 RW MixedBits Synchronised DO/RO 2.1 0 Advanced
30 128 28 1 RW MixedBits Synchronised DO/RO 2.2 1 Advanced
31 128 28 1 RW MixedBits Synchronised DO/RO 2.3 2 Advanced
32 128 28 1 RW MixedBits Synchronised DO/RO 2.4 3 Advanced
33 128 28 1 RW MixedBits Synchronised DO/RO 2.5 4 Advanced
34 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.1 0 Advanced
35 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.2 1 Advanced
36 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.3 2 Advanced
37 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.4 3 Advanced
38 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.5 4 Advanced
39 100 2 RW DWord (Internal) RS485 Full Mode Configuration 2.1 Obsolete
40 500 1 RW Word RS485 TERMIOS CFlags 2.1 Expert
41 501 1 RW Word RS485 TERMIOS LFlags 2.1 Expert
42 502 1 RW Word RS485 TERMIOS IFlags 2.1 Expert
43 503 1 RW Word RS485 TERMIOS LDisc 2.1 Expert
44 504 1 RW Word RS485 ModBus Timeout 2.1 Basic
45 605 505 1 W Word Reserved - Do Not Use Reserved
46 606 506 1 W Word Reserved - Do Not Use Reserved
47 607 507 1 W Word Reserved - Do Not Use Reserved
48 608 508 1 W Word Reserved - Do Not Use Reserved
49 609 509 1 W Word Reserved - Do Not Use Reserved
50 510 1 RW Word (Internal) Stored Firmware Version Expert
51 511 1 RW Word (Internal) Stored Firmware Revision Expert
52 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
53 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
54 514 1 RW Word (Internal) Stored PCB Revision Expert
55 515 1 RW Word (Internal) Stored PCB Serial Number Expert
56 516 1 RW Word (Internal) Stored HW Revision Number Expert
57 1100 1000 1 R Word Firmware Version Expert
58 1101 1001 1 R Word Number of I/Os Advanced
59 1102 1002 1 R Word Number of peripherals Advanced
60 1103 1003 1 R Word Firmware ID Expert
61 1104 1004 1 R Word Hardware ID Expert
62 1105 1005 2 R DWord PCB Serial Number Expert
63 1107 1007 1 RW Word Interrupt Mask Expert
64 1108 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
65 1109 1009 1 R Word VRef of MCU Expert
66 1110 1010 1 RW Word Debounce time (in 100us) for DI 2.1 Advanced
67 1111 1011 1 RW Word Debounce time (in 100us) for DI 2.2 Advanced
68 1112 1012 1 RW Word Debounce time (in 100us) for DI 2.3 Advanced
69 1113 1013 1 RW Word Debounce time (in 100us) for DI 2.4 Advanced
70 1114 1014 1 RW Word Debounce time (in 100us) for DI 2.5 Advanced
71 1115 1015 1 RW Word Debounce time (in 100us) for DI 2.6 Advanced
72 1116 1016 1 RW MixedBits Enable DirectSwitch on DI 2.1 0 Basic
73 1116 1016 1 RW MixedBits Enable DirectSwitch on DI 2.2 1 Basic
74 1116 1016 1 RW MixedBits Enable DirectSwitch on DI 2.3 2 Basic
75 1116 1016 1 RW MixedBits Enable DirectSwitch on DI 2.4 3 Basic
76 1116 1016 1 RW MixedBits Enable DirectSwitch on DI 2.5 4 Basic
77 1117 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.1 0 Basic
78 1117 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.2 1 Basic
79 1117 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.3 2 Basic
80 1117 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.4 3 Basic
81 1117 1017 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.5 4 Basic
82 1118 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.1 0 Basic
83 1118 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.2 1 Basic
84 1118 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.3 2 Basic
85 1118 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.4 3 Basic
86 1118 1018 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.5 4 Basic
87 1119 1019 1 RW Word Analog Input Configuration(U/I/R) 2.1 Basic
88 1120 1020 1 RW Word Analog Input Configuration(U/I/R) 2.2 Basic
89 1121 1021 1 RW Word Analog Input Configuration(U/I/R) 2.3 Basic
90 1122 1022 1 RW Word Analog Input Configuration(U/I/R) 2.4 Basic
91 1123 1023 1 RW MixedBits RS485 Configuration 2.1 Obsolete
92 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,32 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Digital Output 1.1,Basic
1,1,RW,Digital Output 1.2,Basic
2,2,RW,Digital Output 1.3,Basic
3,3,RW,Digital Output 1.4,Basic
4,4,R,Digital Input 1.1,Basic
5,5,R,Digital Input 1.2,Basic
6,6,R,Digital Input 1.3,Basic
7,7,R,Digital Input 1.4,Basic
8,8,RW,User Programmable LED 1.1,Basic
9,9,RW,User Programmable LED 1.2,Basic
10,10,RW,User Programmable LED 1.3,Basic
11,11,RW,User Programmable LED 1.4,Basic
1000,1000,RW,MWD reset indication,Advanced
1001,1001,RW,Enable/Disable 1Wire Bus,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1012,1012,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1013,1013,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1014,1014,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1015,1015,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1016,1016,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1017,1017,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1018,1018,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Digital Output 1.1 Basic
3 1 1 RW Digital Output 1.2 Basic
4 2 2 RW Digital Output 1.3 Basic
5 3 3 RW Digital Output 1.4 Basic
6 4 4 R Digital Input 1.1 Basic
7 5 5 R Digital Input 1.2 Basic
8 6 6 R Digital Input 1.3 Basic
9 7 7 R Digital Input 1.4 Basic
10 8 8 RW User Programmable LED 1.1 Basic
11 9 9 RW User Programmable LED 1.2 Basic
12 10 10 RW User Programmable LED 1.3 Basic
13 11 11 RW User Programmable LED 1.4 Basic
14 1000 1000 RW MWD reset indication Advanced
15 1001 1001 RW Enable/Disable 1Wire Bus Advanced
16 1002 1002 R Reset group MCU Advanced
17 1003 1003 RW Save current configuration and use on startup Advanced
18 1004 1004 RW (Internal) Firmware programming toggle Expert
19 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
20 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
21 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
22 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
23 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
24 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
25 1011 1011 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
26 1012 1012 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
27 1013 1013 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
28 1014 1014 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
29 1015 1015 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
30 1016 1016 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
31 1017 1017 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
32 1018 1018 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced

View File

@ -0,0 +1,28 @@
Via Unit 0,Via Unit 2,R/W,Content,Category
100,0,RW,Relay Output 2.1,Basic
101,1,RW,Relay Output 2.2,Basic
102,2,RW,Relay Output 2.3,Basic
103,3,RW,Relay Output 2.4,Basic
104,4,RW,Relay Output 2.5,Basic
105,5,R,Digital Input 2.1,Basic
106,6,R,Digital Input 2.2,Basic
107,7,R,Digital Input 2.3,Basic
108,8,R,Digital Input 2.4,Basic
1100,1000,RW,MWD reset indication,Advanced
1102,1002,R,Reset group MCU,Advanced
1103,1003,RW,Save current configuration and use on startup,Advanced
1104,1004,RW,(Internal) Firmware programming toggle,Expert
1105,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1106,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1107,1007,RW,Enable DirectSwitch on DI 2.1,Advanced
1108,1008,RW,Enable DirectSwitch on DI 2.2,Advanced
1109,1009,RW,Enable DirectSwitch on DI 2.3,Advanced
1110,1010,RW,Enable DirectSwitch on DI 2.4,Advanced
1111,1011,RW,Invert DirectSwitch Polarity on DI 2.1,Advanced
1112,1012,RW,Invert DirectSwitch Polarity on DI 2.2,Advanced
1113,1013,RW,Invert DirectSwitch Polarity on DI 2.3,Advanced
1114,1014,RW,Invert DirectSwitch Polarity on DI 2.4,Advanced
1115,1015,RW,Enable DirectSwitch Toggle Mode on DI 2.1,Advanced
1116,1016,RW,Enable DirectSwitch Toggle Mode on DI 2.2,Advanced
1117,1017,RW,Enable DirectSwitch Toggle Mode on DI 2.3,Advanced
1118,1018,RW,Enable DirectSwitch Toggle Mode on DI 2.4,Advanced
1 Via Unit 0 Via Unit 2 R/W Content Category
2 100 0 RW Relay Output 2.1 Basic
3 101 1 RW Relay Output 2.2 Basic
4 102 2 RW Relay Output 2.3 Basic
5 103 3 RW Relay Output 2.4 Basic
6 104 4 RW Relay Output 2.5 Basic
7 105 5 R Digital Input 2.1 Basic
8 106 6 R Digital Input 2.2 Basic
9 107 7 R Digital Input 2.3 Basic
10 108 8 R Digital Input 2.4 Basic
11 1100 1000 RW MWD reset indication Advanced
12 1102 1002 R Reset group MCU Advanced
13 1103 1003 RW Save current configuration and use on startup Advanced
14 1104 1004 RW (Internal) Firmware programming toggle Expert
15 1105 1005 RW (Internal) Firmware reprogramming toggle Expert
16 1106 1006 RW (Internal) Firmware calibration programming toggle Expert
17 1107 1007 RW Enable DirectSwitch on DI 2.1 Advanced
18 1108 1008 RW Enable DirectSwitch on DI 2.2 Advanced
19 1109 1009 RW Enable DirectSwitch on DI 2.3 Advanced
20 1110 1010 RW Enable DirectSwitch on DI 2.4 Advanced
21 1111 1011 RW Invert DirectSwitch Polarity on DI 2.1 Advanced
22 1112 1012 RW Invert DirectSwitch Polarity on DI 2.2 Advanced
23 1113 1013 RW Invert DirectSwitch Polarity on DI 2.3 Advanced
24 1114 1014 RW Invert DirectSwitch Polarity on DI 2.4 Advanced
25 1115 1015 RW Enable DirectSwitch Toggle Mode on DI 2.1 Advanced
26 1116 1016 RW Enable DirectSwitch Toggle Mode on DI 2.2 Advanced
27 1117 1017 RW Enable DirectSwitch Toggle Mode on DI 2.3 Advanced
28 1118 1018 RW Enable DirectSwitch Toggle Mode on DI 2.4 Advanced

View File

@ -0,0 +1,97 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
1,1,1,RW,MixedBits,Digital Output 1.1,0,Basic
1,1,1,RW,MixedBits,Digital Output 1.2,1,Basic
1,1,1,RW,MixedBits,Digital Output 1.3,2,Basic
1,1,1,RW,MixedBits,Digital Output 1.4,3,Basic
2,2,1,RW,Word,Analog Output (raw value) 1.1,,Obsolete
3,3,1,R,Word,Analog Input (raw value) 1.1,,Obsolete
4,4,1,R,Word,Analog Input/Output (raw value) 1.1,,Obsolete
5,5,1,R,Word,VRefInt of MCU,,Expert
6,6,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
7,7,1,R,Word,Length of RS485 TX Queue 1.1,,Obsolete
8,8,2,RW,DWord,Counter of Digital Input 1.1,,Basic
10,10,2,RW,DWord,Counter of Digital Input 1.2,,Basic
12,12,2,RW,DWord,Counter of Digital Input 1.3,,Basic
14,14,2,RW,DWord,Counter of Digital Input 1.4,,Basic
16,16,1,RW,Word,PWM Duty Cycle of DO 1.1,,Basic
17,17,1,RW,Word,PWM Duty Cycle of DO 1.2,,Basic
18,18,1,RW,Word,PWM Duty Cycle of DO 1.3,,Basic
19,19,1,RW,Word,PWM Duty Cycle of DO 1.4,,Basic
20,20,1,RW,MixedBits,User LED 1.1,0,Basic
20,20,1,RW,MixedBits,User LED 1.2,1,Basic
20,20,1,RW,MixedBits,User LED 1.3,2,Basic
20,20,1,RW,MixedBits,User LED 1.4,3,Basic
21,21,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1017,1017,1,RW,Word,PWM Group prescaler,,Basic
1018,1018,1,RW,Word,PWM Group cycle length,,Basic
1019,1019,1,RW,Word,Analog Output Configuration(U/I/R-measure) 1.1,,Basic
1020,1020,1,RW,Word,Analog Output Voltage deviation 1.1,,Expert
1021,1021,1,RW,Word,Analog Output Voltage offset 1.1,,Expert
1022,1022,1,RW,Word,Analog Output Current deviation 1.1,,Expert
1023,1023,1,RW,Word,Analog Output Current offset 1.1,,Expert
1024,1024,1,RW,Word,Analog Input Configuration(U/I) 1.1,,Basic
1025,1025,1,RW,Word,Analog Input Voltage deviation 1.1,,Expert
1026,1026,1,RW,Word,Analog Input Voltage offset 1.1,,Expert
1027,1027,1,RW,Word,Analog Input Current deviation 1.1,,Expert
1028,1028,1,RW,Word,Analog Input Current offset 1.1,,Expert
1029,1029,1,RW,Word,Analog Input/Output Voltage deviation (input side) 1.1,,Expert
1030,1030,1,RW,Word,Analog Input/Output Voltage offset (input side) 1.1,,Expert
1031,1031,1,RW,MixedBits,RS485 Configuration 1.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
3000,3000,2,RW,Real,Analog Output value 1.1,,Basic
3002,3002,2,R,Real,Analog Input value 1.1,,Basic
3004,3004,2,R,Real,(Internal) Analog Output measured voltage value 1.1,,Expert
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 1 1 1 RW MixedBits Digital Output 1.1 0 Basic
7 1 1 1 RW MixedBits Digital Output 1.2 1 Basic
8 1 1 1 RW MixedBits Digital Output 1.3 2 Basic
9 1 1 1 RW MixedBits Digital Output 1.4 3 Basic
10 2 2 1 RW Word Analog Output (raw value) 1.1 Obsolete
11 3 3 1 R Word Analog Input (raw value) 1.1 Obsolete
12 4 4 1 R Word Analog Input/Output (raw value) 1.1 Obsolete
13 5 5 1 R Word VRefInt of MCU Expert
14 6 6 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
15 7 7 1 R Word Length of RS485 TX Queue 1.1 Obsolete
16 8 8 2 RW DWord Counter of Digital Input 1.1 Basic
17 10 10 2 RW DWord Counter of Digital Input 1.2 Basic
18 12 12 2 RW DWord Counter of Digital Input 1.3 Basic
19 14 14 2 RW DWord Counter of Digital Input 1.4 Basic
20 16 16 1 RW Word PWM Duty Cycle of DO 1.1 Basic
21 17 17 1 RW Word PWM Duty Cycle of DO 1.2 Basic
22 18 18 1 RW Word PWM Duty Cycle of DO 1.3 Basic
23 19 19 1 RW Word PWM Duty Cycle of DO 1.4 Basic
24 20 20 1 RW MixedBits User LED 1.1 0 Basic
25 20 20 1 RW MixedBits User LED 1.2 1 Basic
26 20 20 1 RW MixedBits User LED 1.3 2 Basic
27 20 20 1 RW MixedBits User LED 1.4 3 Basic
28 21 21 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
29 21 21 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
30 21 21 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
31 21 21 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
32 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
33 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
34 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
35 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
36 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
37 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
38 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
39 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
40 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
41 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
42 505 505 1 W Word Reserved - Do Not Use Reserved
43 506 506 1 W Word Reserved - Do Not Use Reserved
44 507 507 1 W Word Reserved - Do Not Use Reserved
45 508 508 1 W Word Reserved - Do Not Use Reserved
46 509 509 1 W Word Reserved - Do Not Use Reserved
47 510 1 RW Word (Internal) Stored Firmware Version Expert
48 511 1 RW Word (Internal) Stored Firmware Revision Expert
49 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
50 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
51 514 1 RW Word (Internal) Stored PCB Revision Expert
52 515 1 RW Word (Internal) Stored PCB Serial Number Expert
53 516 1 RW Word (Internal) Stored HW Revision Number Expert
54 1000 1000 1 R Word Firmware Version Expert
55 1001 1001 1 R Word Number of I/Os Advanced
56 1002 1002 1 R Word Number of peripherals Advanced
57 1003 1003 1 R Word Firmware ID Expert
58 1004 1004 1 R Word Hardware ID Expert
59 1005 1005 2 R DWord PCB Serial Number Expert
60 1007 1007 1 RW Word Interrupt Mask Expert
61 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
62 1009 1009 1 R Word VRef of MCU Expert
63 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
64 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
65 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
66 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
67 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
68 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
69 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
70 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
71 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
72 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
73 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
74 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
75 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
76 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
77 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
78 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
79 1017 1017 1 RW Word PWM Group prescaler Basic
80 1018 1018 1 RW Word PWM Group cycle length Basic
81 1019 1019 1 RW Word Analog Output Configuration(U/I/R-measure) 1.1 Basic
82 1020 1020 1 RW Word Analog Output Voltage deviation 1.1 Expert
83 1021 1021 1 RW Word Analog Output Voltage offset 1.1 Expert
84 1022 1022 1 RW Word Analog Output Current deviation 1.1 Expert
85 1023 1023 1 RW Word Analog Output Current offset 1.1 Expert
86 1024 1024 1 RW Word Analog Input Configuration(U/I) 1.1 Basic
87 1025 1025 1 RW Word Analog Input Voltage deviation 1.1 Expert
88 1026 1026 1 RW Word Analog Input Voltage offset 1.1 Expert
89 1027 1027 1 RW Word Analog Input Current deviation 1.1 Expert
90 1028 1028 1 RW Word Analog Input Current offset 1.1 Expert
91 1029 1029 1 RW Word Analog Input/Output Voltage deviation (input side) 1.1 Expert
92 1030 1030 1 RW Word Analog Input/Output Voltage offset (input side) 1.1 Expert
93 1031 1031 1 RW MixedBits RS485 Configuration 1.1 Obsolete
94 2000 220 W Word Reserved - Do Not Use Reserved
95 3000 3000 2 RW Real Analog Output value 1.1 Basic
96 3002 3002 2 R Real Analog Input value 1.1 Basic
97 3004 3004 2 R Real (Internal) Analog Output measured voltage value 1.1 Expert

View File

@ -0,0 +1,89 @@
Via Unit 0,Via Unit 2,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
100,0,1,R,MixedBits,Digital Input 2.1,0,Basic
100,0,1,R,MixedBits,Digital Input 2.2,1,Basic
100,0,1,R,MixedBits,Digital Input 2.3,2,Basic
100,0,1,R,MixedBits,Digital Input 2.4,3,Basic
101,1,1,RW,MixedBits,Relay Output 2.1,0,Basic
101,1,1,RW,MixedBits,Relay Output 2.2,1,Basic
101,1,1,RW,MixedBits,Relay Output 2.3,2,Basic
101,1,1,RW,MixedBits,Relay Output 2.4,3,Basic
101,1,1,RW,MixedBits,Relay Output 2.5,4,Basic
102,2,1,RW,Word,Analog Output Value 2.1 (0..4000 ~ 0..10V),,Basic
103,3,1,RW,Word,Analog Output Value 2.2 (0..4000 ~ 0..10V),,Basic
104,4,1,RW,Word,Analog Output Value 2.3 (0..4000 ~ 0..10V),,Basic
105,5,1,RW,Word,Analog Output Value 2.4 (0..4000 ~ 0..10V),,Basic
106,6,2,R,Real,Analog Input Value 2.1,,Basic
108,8,2,R,Real,Analog Input Value 2.2,,Basic
110,10,2,R,Real,Analog Input Value 2.3,,Basic
112,12,2,R,Real,Analog Input Value 2.4,,Basic
114,14,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
115,15,1,R,Word,Length of RS485 TX Queue 2.1,,Obsolete
116,16,2,RW,DWord,Counter of Digital Input 2.1,,Basic
118,18,2,RW,DWord,Counter of Digital Input 2.2,,Basic
120,20,2,RW,DWord,Counter of Digital Input 2.3,,Basic
122,22,2,RW,DWord,Counter of Digital Input 2.4,,Basic
124,24,1,W,Word,Reserved - Do Not Use,,Reserved
125,25,1,W,Word,Reserved - Do Not Use,,Reserved
126,26,1,W,Word,Reserved - Do Not Use,,Reserved
127,27,1,W,Word,Reserved - Do Not Use,,Reserved
128,28,1,RW,MixedBits,Synchronised DO/RO 2.1,0,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.2,1,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.3,2,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.4,3,Advanced
128,28,1,RW,MixedBits,Synchronised DO/RO 2.5,4,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.1,0,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.2,1,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.3,2,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.4,3,Advanced
129,29,1,RW,MixedBits,Synchronised DO/RO Lock 2.5,4,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 2.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 2.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 2.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 2.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 2.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 2.1,,Basic
605,505,1,W,Word,Reserved - Do Not Use,,Reserved
606,506,1,W,Word,Reserved - Do Not Use,,Reserved
607,507,1,W,Word,Reserved - Do Not Use,,Reserved
608,508,1,W,Word,Reserved - Do Not Use,,Reserved
609,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1100,1000,1,R,Word,Firmware Version,,Expert
1101,1001,1,R,Word,Number of I/Os,,Advanced
1102,1002,1,R,Word,Number of peripherals,,Advanced
1103,1003,1,R,Word,Firmware ID,,Expert
1104,1004,1,R,Word,Hardware ID,,Expert
1105,1005,2,R,DWord,PCB Serial Number,,Expert
1107,1007,1,RW,Word,Interrupt Mask,,Expert
1108,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1109,1009,1,R,Word,VRef of MCU,,Expert
1110,1010,1,RW,Word,Debounce time (in 100us) for DI 2.1,,Advanced
1111,1011,1,RW,Word,Debounce time (in 100us) for DI 2.2,,Advanced
1112,1012,1,RW,Word,Debounce time (in 100us) for DI 2.3,,Advanced
1113,1013,1,RW,Word,Debounce time (in 100us) for DI 2.4,,Advanced
1114,1014,1,RW,MixedBits,Enable DirectSwitch on DI 2.1,0,Basic
1114,1014,1,RW,MixedBits,Enable DirectSwitch on DI 2.2,1,Basic
1114,1014,1,RW,MixedBits,Enable DirectSwitch on DI 2.3,2,Basic
1114,1014,1,RW,MixedBits,Enable DirectSwitch on DI 2.4,3,Basic
1115,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.1,0,Basic
1115,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.2,1,Basic
1115,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.3,2,Basic
1115,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 2.4,3,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.1,0,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.2,1,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.3,2,Basic
1116,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 2.4,3,Basic
1117,1017,1,W,Word,Reserved - Do Not Use,,Reserved
1118,1018,1,W,Word,Reserved - Do Not Use,,Reserved
1119,1019,1,RW,Word,Analog Input Configuration(U/I/R) 2.1,,Basic
1120,1020,1,RW,Word,Analog Input Configuration(U/I/R) 2.2,,Basic
1121,1021,1,RW,Word,Analog Input Configuration(U/I/R) 2.3,,Basic
1122,1022,1,RW,Word,Analog Input Configuration(U/I/R) 2.4,,Basic
1123,1023,1,RW,MixedBits,RS485 Configuration 2.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 2 Register Count R/W Data Type Content Start Bit Nr. Category
2 100 0 1 R MixedBits Digital Input 2.1 0 Basic
3 100 0 1 R MixedBits Digital Input 2.2 1 Basic
4 100 0 1 R MixedBits Digital Input 2.3 2 Basic
5 100 0 1 R MixedBits Digital Input 2.4 3 Basic
6 101 1 1 RW MixedBits Relay Output 2.1 0 Basic
7 101 1 1 RW MixedBits Relay Output 2.2 1 Basic
8 101 1 1 RW MixedBits Relay Output 2.3 2 Basic
9 101 1 1 RW MixedBits Relay Output 2.4 3 Basic
10 101 1 1 RW MixedBits Relay Output 2.5 4 Basic
11 102 2 1 RW Word Analog Output Value 2.1 (0..4000 ~ 0..10V) Basic
12 103 3 1 RW Word Analog Output Value 2.2 (0..4000 ~ 0..10V) Basic
13 104 4 1 RW Word Analog Output Value 2.3 (0..4000 ~ 0..10V) Basic
14 105 5 1 RW Word Analog Output Value 2.4 (0..4000 ~ 0..10V) Basic
15 106 6 2 R Real Analog Input Value 2.1 Basic
16 108 8 2 R Real Analog Input Value 2.2 Basic
17 110 10 2 R Real Analog Input Value 2.3 Basic
18 112 12 2 R Real Analog Input Value 2.4 Basic
19 114 14 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
20 115 15 1 R Word Length of RS485 TX Queue 2.1 Obsolete
21 116 16 2 RW DWord Counter of Digital Input 2.1 Basic
22 118 18 2 RW DWord Counter of Digital Input 2.2 Basic
23 120 20 2 RW DWord Counter of Digital Input 2.3 Basic
24 122 22 2 RW DWord Counter of Digital Input 2.4 Basic
25 124 24 1 W Word Reserved - Do Not Use Reserved
26 125 25 1 W Word Reserved - Do Not Use Reserved
27 126 26 1 W Word Reserved - Do Not Use Reserved
28 127 27 1 W Word Reserved - Do Not Use Reserved
29 128 28 1 RW MixedBits Synchronised DO/RO 2.1 0 Advanced
30 128 28 1 RW MixedBits Synchronised DO/RO 2.2 1 Advanced
31 128 28 1 RW MixedBits Synchronised DO/RO 2.3 2 Advanced
32 128 28 1 RW MixedBits Synchronised DO/RO 2.4 3 Advanced
33 128 28 1 RW MixedBits Synchronised DO/RO 2.5 4 Advanced
34 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.1 0 Advanced
35 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.2 1 Advanced
36 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.3 2 Advanced
37 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.4 3 Advanced
38 129 29 1 RW MixedBits Synchronised DO/RO Lock 2.5 4 Advanced
39 100 2 RW DWord (Internal) RS485 Full Mode Configuration 2.1 Obsolete
40 500 1 RW Word RS485 TERMIOS CFlags 2.1 Expert
41 501 1 RW Word RS485 TERMIOS LFlags 2.1 Expert
42 502 1 RW Word RS485 TERMIOS IFlags 2.1 Expert
43 503 1 RW Word RS485 TERMIOS LDisc 2.1 Expert
44 504 1 RW Word RS485 ModBus Timeout 2.1 Basic
45 605 505 1 W Word Reserved - Do Not Use Reserved
46 606 506 1 W Word Reserved - Do Not Use Reserved
47 607 507 1 W Word Reserved - Do Not Use Reserved
48 608 508 1 W Word Reserved - Do Not Use Reserved
49 609 509 1 W Word Reserved - Do Not Use Reserved
50 510 1 RW Word (Internal) Stored Firmware Version Expert
51 511 1 RW Word (Internal) Stored Firmware Revision Expert
52 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
53 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
54 514 1 RW Word (Internal) Stored PCB Revision Expert
55 515 1 RW Word (Internal) Stored PCB Serial Number Expert
56 516 1 RW Word (Internal) Stored HW Revision Number Expert
57 1100 1000 1 R Word Firmware Version Expert
58 1101 1001 1 R Word Number of I/Os Advanced
59 1102 1002 1 R Word Number of peripherals Advanced
60 1103 1003 1 R Word Firmware ID Expert
61 1104 1004 1 R Word Hardware ID Expert
62 1105 1005 2 R DWord PCB Serial Number Expert
63 1107 1007 1 RW Word Interrupt Mask Expert
64 1108 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
65 1109 1009 1 R Word VRef of MCU Expert
66 1110 1010 1 RW Word Debounce time (in 100us) for DI 2.1 Advanced
67 1111 1011 1 RW Word Debounce time (in 100us) for DI 2.2 Advanced
68 1112 1012 1 RW Word Debounce time (in 100us) for DI 2.3 Advanced
69 1113 1013 1 RW Word Debounce time (in 100us) for DI 2.4 Advanced
70 1114 1014 1 RW MixedBits Enable DirectSwitch on DI 2.1 0 Basic
71 1114 1014 1 RW MixedBits Enable DirectSwitch on DI 2.2 1 Basic
72 1114 1014 1 RW MixedBits Enable DirectSwitch on DI 2.3 2 Basic
73 1114 1014 1 RW MixedBits Enable DirectSwitch on DI 2.4 3 Basic
74 1115 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.1 0 Basic
75 1115 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.2 1 Basic
76 1115 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.3 2 Basic
77 1115 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 2.4 3 Basic
78 1116 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.1 0 Basic
79 1116 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.2 1 Basic
80 1116 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.3 2 Basic
81 1116 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 2.4 3 Basic
82 1117 1017 1 W Word Reserved - Do Not Use Reserved
83 1118 1018 1 W Word Reserved - Do Not Use Reserved
84 1119 1019 1 RW Word Analog Input Configuration(U/I/R) 2.1 Basic
85 1120 1020 1 RW Word Analog Input Configuration(U/I/R) 2.2 Basic
86 1121 1021 1 RW Word Analog Input Configuration(U/I/R) 2.3 Basic
87 1122 1022 1 RW Word Analog Input Configuration(U/I/R) 2.4 Basic
88 1123 1023 1 RW MixedBits RS485 Configuration 2.1 Obsolete
89 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,32 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Digital Output 1.1,Basic
1,1,RW,Digital Output 1.2,Basic
2,2,RW,Digital Output 1.3,Basic
3,3,RW,Digital Output 1.4,Basic
4,4,R,Digital Input 1.1,Basic
5,5,R,Digital Input 1.2,Basic
6,6,R,Digital Input 1.3,Basic
7,7,R,Digital Input 1.4,Basic
8,8,RW,User Programmable LED 1.1,Basic
9,9,RW,User Programmable LED 1.2,Basic
10,10,RW,User Programmable LED 1.3,Basic
11,11,RW,User Programmable LED 1.4,Basic
1000,1000,RW,MWD reset indication,Advanced
1001,1001,RW,Enable/Disable 1Wire Bus,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1012,1012,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1013,1013,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1014,1014,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1015,1015,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1016,1016,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1017,1017,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1018,1018,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Digital Output 1.1 Basic
3 1 1 RW Digital Output 1.2 Basic
4 2 2 RW Digital Output 1.3 Basic
5 3 3 RW Digital Output 1.4 Basic
6 4 4 R Digital Input 1.1 Basic
7 5 5 R Digital Input 1.2 Basic
8 6 6 R Digital Input 1.3 Basic
9 7 7 R Digital Input 1.4 Basic
10 8 8 RW User Programmable LED 1.1 Basic
11 9 9 RW User Programmable LED 1.2 Basic
12 10 10 RW User Programmable LED 1.3 Basic
13 11 11 RW User Programmable LED 1.4 Basic
14 1000 1000 RW MWD reset indication Advanced
15 1001 1001 RW Enable/Disable 1Wire Bus Advanced
16 1002 1002 R Reset group MCU Advanced
17 1003 1003 RW Save current configuration and use on startup Advanced
18 1004 1004 RW (Internal) Firmware programming toggle Expert
19 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
20 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
21 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
22 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
23 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
24 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
25 1011 1011 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
26 1012 1012 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
27 1013 1013 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
28 1014 1014 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
29 1015 1015 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
30 1016 1016 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
31 1017 1017 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
32 1018 1018 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced

View File

@ -0,0 +1,7 @@
Via Unit 0,Via Unit 2,R/W,Content,Category
1100,1000,RW,MWD reset indication,Advanced
1102,1002,R,Reset group MCU,Advanced
1103,1003,RW,Save current configuration and use on startup,Advanced
1104,1004,RW,(Internal) Firmware programming toggle,Expert
1105,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1106,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1 Via Unit 0 Via Unit 2 R/W Content Category
2 1100 1000 RW MWD reset indication Advanced
3 1102 1002 R Reset group MCU Advanced
4 1103 1003 RW Save current configuration and use on startup Advanced
5 1104 1004 RW (Internal) Firmware programming toggle Expert
6 1105 1005 RW (Internal) Firmware reprogramming toggle Expert
7 1106 1006 RW (Internal) Firmware calibration programming toggle Expert

View File

@ -0,0 +1,97 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
1,1,1,RW,MixedBits,Digital Output 1.1,0,Basic
1,1,1,RW,MixedBits,Digital Output 1.2,1,Basic
1,1,1,RW,MixedBits,Digital Output 1.3,2,Basic
1,1,1,RW,MixedBits,Digital Output 1.4,3,Basic
2,2,1,RW,Word,Analog Output (raw value) 1.1,,Obsolete
3,3,1,R,Word,Analog Input (raw value) 1.1,,Obsolete
4,4,1,R,Word,Analog Input/Output (raw value) 1.1,,Obsolete
5,5,1,R,Word,VRefInt of MCU,,Expert
6,6,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
7,7,1,R,Word,Length of RS485 TX Queue 1.1,,Obsolete
8,8,2,RW,DWord,Counter of Digital Input 1.1,,Basic
10,10,2,RW,DWord,Counter of Digital Input 1.2,,Basic
12,12,2,RW,DWord,Counter of Digital Input 1.3,,Basic
14,14,2,RW,DWord,Counter of Digital Input 1.4,,Basic
16,16,1,RW,Word,PWM Duty Cycle of DO 1.1,,Basic
17,17,1,RW,Word,PWM Duty Cycle of DO 1.2,,Basic
18,18,1,RW,Word,PWM Duty Cycle of DO 1.3,,Basic
19,19,1,RW,Word,PWM Duty Cycle of DO 1.4,,Basic
20,20,1,RW,MixedBits,User LED 1.1,0,Basic
20,20,1,RW,MixedBits,User LED 1.2,1,Basic
20,20,1,RW,MixedBits,User LED 1.3,2,Basic
20,20,1,RW,MixedBits,User LED 1.4,3,Basic
21,21,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1017,1017,1,RW,Word,PWM Group prescaler,,Basic
1018,1018,1,RW,Word,PWM Group cycle length,,Basic
1019,1019,1,RW,Word,Analog Output Configuration(U/I/R-measure) 1.1,,Basic
1020,1020,1,RW,Word,Analog Output Voltage deviation 1.1,,Expert
1021,1021,1,RW,Word,Analog Output Voltage offset 1.1,,Expert
1022,1022,1,RW,Word,Analog Output Current deviation 1.1,,Expert
1023,1023,1,RW,Word,Analog Output Current offset 1.1,,Expert
1024,1024,1,RW,Word,Analog Input Configuration(U/I) 1.1,,Basic
1025,1025,1,RW,Word,Analog Input Voltage deviation 1.1,,Expert
1026,1026,1,RW,Word,Analog Input Voltage offset 1.1,,Expert
1027,1027,1,RW,Word,Analog Input Current deviation 1.1,,Expert
1028,1028,1,RW,Word,Analog Input Current offset 1.1,,Expert
1029,1029,1,RW,Word,Analog Input/Output Voltage deviation (input side) 1.1,,Expert
1030,1030,1,RW,Word,Analog Input/Output Voltage offset (input side) 1.1,,Expert
1031,1031,1,RW,MixedBits,RS485 Configuration 1.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
3000,3000,2,RW,Real,Analog Output value 1.1,,Basic
3002,3002,2,R,Real,Analog Input value 1.1,,Basic
3004,3004,2,R,Real,(Internal) Analog Output measured voltage value 1.1,,Expert
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 1 1 1 RW MixedBits Digital Output 1.1 0 Basic
7 1 1 1 RW MixedBits Digital Output 1.2 1 Basic
8 1 1 1 RW MixedBits Digital Output 1.3 2 Basic
9 1 1 1 RW MixedBits Digital Output 1.4 3 Basic
10 2 2 1 RW Word Analog Output (raw value) 1.1 Obsolete
11 3 3 1 R Word Analog Input (raw value) 1.1 Obsolete
12 4 4 1 R Word Analog Input/Output (raw value) 1.1 Obsolete
13 5 5 1 R Word VRefInt of MCU Expert
14 6 6 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
15 7 7 1 R Word Length of RS485 TX Queue 1.1 Obsolete
16 8 8 2 RW DWord Counter of Digital Input 1.1 Basic
17 10 10 2 RW DWord Counter of Digital Input 1.2 Basic
18 12 12 2 RW DWord Counter of Digital Input 1.3 Basic
19 14 14 2 RW DWord Counter of Digital Input 1.4 Basic
20 16 16 1 RW Word PWM Duty Cycle of DO 1.1 Basic
21 17 17 1 RW Word PWM Duty Cycle of DO 1.2 Basic
22 18 18 1 RW Word PWM Duty Cycle of DO 1.3 Basic
23 19 19 1 RW Word PWM Duty Cycle of DO 1.4 Basic
24 20 20 1 RW MixedBits User LED 1.1 0 Basic
25 20 20 1 RW MixedBits User LED 1.2 1 Basic
26 20 20 1 RW MixedBits User LED 1.3 2 Basic
27 20 20 1 RW MixedBits User LED 1.4 3 Basic
28 21 21 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
29 21 21 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
30 21 21 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
31 21 21 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
32 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
33 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
34 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
35 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
36 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
37 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
38 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
39 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
40 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
41 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
42 505 505 1 W Word Reserved - Do Not Use Reserved
43 506 506 1 W Word Reserved - Do Not Use Reserved
44 507 507 1 W Word Reserved - Do Not Use Reserved
45 508 508 1 W Word Reserved - Do Not Use Reserved
46 509 509 1 W Word Reserved - Do Not Use Reserved
47 510 1 RW Word (Internal) Stored Firmware Version Expert
48 511 1 RW Word (Internal) Stored Firmware Revision Expert
49 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
50 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
51 514 1 RW Word (Internal) Stored PCB Revision Expert
52 515 1 RW Word (Internal) Stored PCB Serial Number Expert
53 516 1 RW Word (Internal) Stored HW Revision Number Expert
54 1000 1000 1 R Word Firmware Version Expert
55 1001 1001 1 R Word Number of I/Os Advanced
56 1002 1002 1 R Word Number of peripherals Advanced
57 1003 1003 1 R Word Firmware ID Expert
58 1004 1004 1 R Word Hardware ID Expert
59 1005 1005 2 R DWord PCB Serial Number Expert
60 1007 1007 1 RW Word Interrupt Mask Expert
61 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
62 1009 1009 1 R Word VRef of MCU Expert
63 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
64 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
65 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
66 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
67 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
68 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
69 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
70 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
71 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
72 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
73 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
74 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
75 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
76 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
77 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
78 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
79 1017 1017 1 RW Word PWM Group prescaler Basic
80 1018 1018 1 RW Word PWM Group cycle length Basic
81 1019 1019 1 RW Word Analog Output Configuration(U/I/R-measure) 1.1 Basic
82 1020 1020 1 RW Word Analog Output Voltage deviation 1.1 Expert
83 1021 1021 1 RW Word Analog Output Voltage offset 1.1 Expert
84 1022 1022 1 RW Word Analog Output Current deviation 1.1 Expert
85 1023 1023 1 RW Word Analog Output Current offset 1.1 Expert
86 1024 1024 1 RW Word Analog Input Configuration(U/I) 1.1 Basic
87 1025 1025 1 RW Word Analog Input Voltage deviation 1.1 Expert
88 1026 1026 1 RW Word Analog Input Voltage offset 1.1 Expert
89 1027 1027 1 RW Word Analog Input Current deviation 1.1 Expert
90 1028 1028 1 RW Word Analog Input Current offset 1.1 Expert
91 1029 1029 1 RW Word Analog Input/Output Voltage deviation (input side) 1.1 Expert
92 1030 1030 1 RW Word Analog Input/Output Voltage offset (input side) 1.1 Expert
93 1031 1031 1 RW MixedBits RS485 Configuration 1.1 Obsolete
94 2000 220 W Word Reserved - Do Not Use Reserved
95 3000 3000 2 RW Real Analog Output value 1.1 Basic
96 3002 3002 2 R Real Analog Input value 1.1 Basic
97 3004 3004 2 R Real (Internal) Analog Output measured voltage value 1.1 Expert

View File

@ -0,0 +1,51 @@
Via Unit 0,Via Unit 2,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
100,0,1,R,MixedBits,LIGHT status register,,Advanced
101,1,1,R,Word,LIGHT RX counter 2.1,,Basic
102,2,1,R,Word,LIGHT RX option field 2.1,,Basic
103,3,1,R,Word,LIGHT RX data 2.1,,Basic
104,4,1,R,Word,LIGHT RX counter 2.2,,Basic
105,5,1,R,Word,LIGHT RX option field 2.2,,Basic
106,6,1,R,Word,LIGHT RX data 2.2,,Basic
107,7,1,R,Word,LIGHT RX counter 2.3,,Basic
108,8,1,R,Word,LIGHT RX option field 2.3,,Basic
109,9,1,R,Word,LIGHT RX data 2.3,,Basic
110,10,1,R,Word,LIGHT RX counter 2.4,,Basic
111,11,1,R,Word,LIGHT RX option field 2.4,,Basic
112,12,1,R,Word,LIGHT RX data 2.4,,Basic
113,13,1,RW,Word,LIGHT TX option field 2.5,,Basic
114,14,1,RW,Word,LIGHT TX data 2.1,,Basic
115,15,1,RW,Word,LIGHT TX option field 2.6,,Basic
116,16,1,RW,Word,LIGHT TX data 2.2,,Basic
117,17,1,RW,Word,LIGHT TX option field 2.7,,Basic
118,18,1,RW,Word,LIGHT TX data 2.3,,Basic
119,19,1,RW,Word,LIGHT TX option field 2.8,,Basic
120,20,1,RW,Word,LIGHT TX data 2.4,,Basic
121,21,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 2.1,,Obsolete
600,500,1,W,Word,Reserved - Do Not Use,,Reserved
601,501,1,W,Word,Reserved - Do Not Use,,Reserved
602,502,1,W,Word,Reserved - Do Not Use,,Reserved
603,503,1,W,Word,Reserved - Do Not Use,,Reserved
604,504,1,W,Word,Reserved - Do Not Use,,Reserved
605,505,1,W,Word,Reserved - Do Not Use,,Reserved
606,506,1,W,Word,Reserved - Do Not Use,,Reserved
607,507,1,W,Word,Reserved - Do Not Use,,Reserved
608,508,1,W,Word,Reserved - Do Not Use,,Reserved
609,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1100,1000,1,R,Word,Firmware Version,,Expert
1101,1001,1,R,Word,Number of I/Os,,Advanced
1102,1002,1,R,Word,Number of peripherals,,Advanced
1103,1003,1,R,Word,Firmware ID,,Expert
1104,1004,1,R,Word,Hardware ID,,Expert
1105,1005,2,R,DWord,PCB Serial Number,,Expert
1107,1007,1,RW,Word,Interrupt Mask,,Expert
1108,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1109,1009,1,R,Word,VRef of MCU,,Expert
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 2 Register Count R/W Data Type Content Start Bit Nr. Category
2 100 0 1 R MixedBits LIGHT status register Advanced
3 101 1 1 R Word LIGHT RX counter 2.1 Basic
4 102 2 1 R Word LIGHT RX option field 2.1 Basic
5 103 3 1 R Word LIGHT RX data 2.1 Basic
6 104 4 1 R Word LIGHT RX counter 2.2 Basic
7 105 5 1 R Word LIGHT RX option field 2.2 Basic
8 106 6 1 R Word LIGHT RX data 2.2 Basic
9 107 7 1 R Word LIGHT RX counter 2.3 Basic
10 108 8 1 R Word LIGHT RX option field 2.3 Basic
11 109 9 1 R Word LIGHT RX data 2.3 Basic
12 110 10 1 R Word LIGHT RX counter 2.4 Basic
13 111 11 1 R Word LIGHT RX option field 2.4 Basic
14 112 12 1 R Word LIGHT RX data 2.4 Basic
15 113 13 1 RW Word LIGHT TX option field 2.5 Basic
16 114 14 1 RW Word LIGHT TX data 2.1 Basic
17 115 15 1 RW Word LIGHT TX option field 2.6 Basic
18 116 16 1 RW Word LIGHT TX data 2.2 Basic
19 117 17 1 RW Word LIGHT TX option field 2.7 Basic
20 118 18 1 RW Word LIGHT TX data 2.3 Basic
21 119 19 1 RW Word LIGHT TX option field 2.8 Basic
22 120 20 1 RW Word LIGHT TX data 2.4 Basic
23 121 21 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
24 100 2 RW DWord (Internal) RS485 Full Mode Configuration 2.1 Obsolete
25 600 500 1 W Word Reserved - Do Not Use Reserved
26 601 501 1 W Word Reserved - Do Not Use Reserved
27 602 502 1 W Word Reserved - Do Not Use Reserved
28 603 503 1 W Word Reserved - Do Not Use Reserved
29 604 504 1 W Word Reserved - Do Not Use Reserved
30 605 505 1 W Word Reserved - Do Not Use Reserved
31 606 506 1 W Word Reserved - Do Not Use Reserved
32 607 507 1 W Word Reserved - Do Not Use Reserved
33 608 508 1 W Word Reserved - Do Not Use Reserved
34 609 509 1 W Word Reserved - Do Not Use Reserved
35 510 1 RW Word (Internal) Stored Firmware Version Expert
36 511 1 RW Word (Internal) Stored Firmware Revision Expert
37 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
38 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
39 514 1 RW Word (Internal) Stored PCB Revision Expert
40 515 1 RW Word (Internal) Stored PCB Serial Number Expert
41 516 1 RW Word (Internal) Stored HW Revision Number Expert
42 1100 1000 1 R Word Firmware Version Expert
43 1101 1001 1 R Word Number of I/Os Advanced
44 1102 1002 1 R Word Number of peripherals Advanced
45 1103 1003 1 R Word Firmware ID Expert
46 1104 1004 1 R Word Hardware ID Expert
47 1105 1005 2 R DWord PCB Serial Number Expert
48 1107 1007 1 RW Word Interrupt Mask Expert
49 1108 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
50 1109 1009 1 R Word VRef of MCU Expert
51 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,32 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Digital Output 1.1,Basic
1,1,RW,Digital Output 1.2,Basic
2,2,RW,Digital Output 1.3,Basic
3,3,RW,Digital Output 1.4,Basic
4,4,R,Digital Input 1.1,Basic
5,5,R,Digital Input 1.2,Basic
6,6,R,Digital Input 1.3,Basic
7,7,R,Digital Input 1.4,Basic
8,8,RW,User Programmable LED 1.1,Basic
9,9,RW,User Programmable LED 1.2,Basic
10,10,RW,User Programmable LED 1.3,Basic
11,11,RW,User Programmable LED 1.4,Basic
1000,1000,RW,MWD reset indication,Advanced
1001,1001,RW,Enable/Disable 1Wire Bus,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1012,1012,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1013,1013,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1014,1014,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1015,1015,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1016,1016,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1017,1017,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1018,1018,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Digital Output 1.1 Basic
3 1 1 RW Digital Output 1.2 Basic
4 2 2 RW Digital Output 1.3 Basic
5 3 3 RW Digital Output 1.4 Basic
6 4 4 R Digital Input 1.1 Basic
7 5 5 R Digital Input 1.2 Basic
8 6 6 R Digital Input 1.3 Basic
9 7 7 R Digital Input 1.4 Basic
10 8 8 RW User Programmable LED 1.1 Basic
11 9 9 RW User Programmable LED 1.2 Basic
12 10 10 RW User Programmable LED 1.3 Basic
13 11 11 RW User Programmable LED 1.4 Basic
14 1000 1000 RW MWD reset indication Advanced
15 1001 1001 RW Enable/Disable 1Wire Bus Advanced
16 1002 1002 R Reset group MCU Advanced
17 1003 1003 RW Save current configuration and use on startup Advanced
18 1004 1004 RW (Internal) Firmware programming toggle Expert
19 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
20 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
21 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
22 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
23 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
24 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
25 1011 1011 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
26 1012 1012 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
27 1013 1013 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
28 1014 1014 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
29 1015 1015 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
30 1016 1016 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
31 1017 1017 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
32 1018 1018 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced

View File

@ -0,0 +1,97 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
1,1,1,RW,MixedBits,Digital Output 1.1,0,Basic
1,1,1,RW,MixedBits,Digital Output 1.2,1,Basic
1,1,1,RW,MixedBits,Digital Output 1.3,2,Basic
1,1,1,RW,MixedBits,Digital Output 1.4,3,Basic
2,2,1,RW,Word,Analog Output (raw value) 1.1,,Obsolete
3,3,1,R,Word,Analog Input (raw value) 1.1,,Obsolete
4,4,1,R,Word,Analog Input/Output (raw value) 1.1,,Obsolete
5,5,1,R,Word,VRefInt of MCU,,Expert
6,6,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
7,7,1,R,Word,Length of RS485 TX Queue 1.1,,Obsolete
8,8,2,RW,DWord,Counter of Digital Input 1.1,,Basic
10,10,2,RW,DWord,Counter of Digital Input 1.2,,Basic
12,12,2,RW,DWord,Counter of Digital Input 1.3,,Basic
14,14,2,RW,DWord,Counter of Digital Input 1.4,,Basic
16,16,1,RW,Word,PWM Duty Cycle of DO 1.1,,Basic
17,17,1,RW,Word,PWM Duty Cycle of DO 1.2,,Basic
18,18,1,RW,Word,PWM Duty Cycle of DO 1.3,,Basic
19,19,1,RW,Word,PWM Duty Cycle of DO 1.4,,Basic
20,20,1,RW,MixedBits,User LED 1.1,0,Basic
20,20,1,RW,MixedBits,User LED 1.2,1,Basic
20,20,1,RW,MixedBits,User LED 1.3,2,Basic
20,20,1,RW,MixedBits,User LED 1.4,3,Basic
21,21,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
21,21,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
22,22,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1014,1014,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1015,1015,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1016,1016,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1017,1017,1,RW,Word,PWM Group prescaler,,Basic
1018,1018,1,RW,Word,PWM Group cycle length,,Basic
1019,1019,1,RW,Word,Analog Output Configuration(U/I/R-measure) 1.1,,Basic
1020,1020,1,RW,Word,Analog Output Voltage deviation 1.1,,Expert
1021,1021,1,RW,Word,Analog Output Voltage offset 1.1,,Expert
1022,1022,1,RW,Word,Analog Output Current deviation 1.1,,Expert
1023,1023,1,RW,Word,Analog Output Current offset 1.1,,Expert
1024,1024,1,RW,Word,Analog Input Configuration(U/I) 1.1,,Basic
1025,1025,1,RW,Word,Analog Input Voltage deviation 1.1,,Expert
1026,1026,1,RW,Word,Analog Input Voltage offset 1.1,,Expert
1027,1027,1,RW,Word,Analog Input Current deviation 1.1,,Expert
1028,1028,1,RW,Word,Analog Input Current offset 1.1,,Expert
1029,1029,1,RW,Word,Analog Input/Output Voltage deviation (input side) 1.1,,Expert
1030,1030,1,RW,Word,Analog Input/Output Voltage offset (input side) 1.1,,Expert
1031,1031,1,RW,MixedBits,RS485 Configuration 1.1,,Obsolete
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
3000,3000,2,RW,Real,Analog Output value 1.1,,Basic
3002,3002,2,R,Real,Analog Input value 1.1,,Basic
3004,3004,2,R,Real,(Internal) Analog Output measured voltage value 1.1,,Expert
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 1 1 1 RW MixedBits Digital Output 1.1 0 Basic
7 1 1 1 RW MixedBits Digital Output 1.2 1 Basic
8 1 1 1 RW MixedBits Digital Output 1.3 2 Basic
9 1 1 1 RW MixedBits Digital Output 1.4 3 Basic
10 2 2 1 RW Word Analog Output (raw value) 1.1 Obsolete
11 3 3 1 R Word Analog Input (raw value) 1.1 Obsolete
12 4 4 1 R Word Analog Input/Output (raw value) 1.1 Obsolete
13 5 5 1 R Word VRefInt of MCU Expert
14 6 6 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
15 7 7 1 R Word Length of RS485 TX Queue 1.1 Obsolete
16 8 8 2 RW DWord Counter of Digital Input 1.1 Basic
17 10 10 2 RW DWord Counter of Digital Input 1.2 Basic
18 12 12 2 RW DWord Counter of Digital Input 1.3 Basic
19 14 14 2 RW DWord Counter of Digital Input 1.4 Basic
20 16 16 1 RW Word PWM Duty Cycle of DO 1.1 Basic
21 17 17 1 RW Word PWM Duty Cycle of DO 1.2 Basic
22 18 18 1 RW Word PWM Duty Cycle of DO 1.3 Basic
23 19 19 1 RW Word PWM Duty Cycle of DO 1.4 Basic
24 20 20 1 RW MixedBits User LED 1.1 0 Basic
25 20 20 1 RW MixedBits User LED 1.2 1 Basic
26 20 20 1 RW MixedBits User LED 1.3 2 Basic
27 20 20 1 RW MixedBits User LED 1.4 3 Basic
28 21 21 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
29 21 21 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
30 21 21 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
31 21 21 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
32 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
33 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
34 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
35 22 22 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
36 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
37 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
38 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
39 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
40 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
41 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
42 505 505 1 W Word Reserved - Do Not Use Reserved
43 506 506 1 W Word Reserved - Do Not Use Reserved
44 507 507 1 W Word Reserved - Do Not Use Reserved
45 508 508 1 W Word Reserved - Do Not Use Reserved
46 509 509 1 W Word Reserved - Do Not Use Reserved
47 510 1 RW Word (Internal) Stored Firmware Version Expert
48 511 1 RW Word (Internal) Stored Firmware Revision Expert
49 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
50 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
51 514 1 RW Word (Internal) Stored PCB Revision Expert
52 515 1 RW Word (Internal) Stored PCB Serial Number Expert
53 516 1 RW Word (Internal) Stored HW Revision Number Expert
54 1000 1000 1 R Word Firmware Version Expert
55 1001 1001 1 R Word Number of I/Os Advanced
56 1002 1002 1 R Word Number of peripherals Advanced
57 1003 1003 1 R Word Firmware ID Expert
58 1004 1004 1 R Word Hardware ID Expert
59 1005 1005 2 R DWord PCB Serial Number Expert
60 1007 1007 1 RW Word Interrupt Mask Expert
61 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
62 1009 1009 1 R Word VRef of MCU Expert
63 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
64 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
65 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
66 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
67 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
68 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
69 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
70 1014 1014 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
71 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
72 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
73 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
74 1015 1015 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
75 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
76 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
77 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
78 1016 1016 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
79 1017 1017 1 RW Word PWM Group prescaler Basic
80 1018 1018 1 RW Word PWM Group cycle length Basic
81 1019 1019 1 RW Word Analog Output Configuration(U/I/R-measure) 1.1 Basic
82 1020 1020 1 RW Word Analog Output Voltage deviation 1.1 Expert
83 1021 1021 1 RW Word Analog Output Voltage offset 1.1 Expert
84 1022 1022 1 RW Word Analog Output Current deviation 1.1 Expert
85 1023 1023 1 RW Word Analog Output Current offset 1.1 Expert
86 1024 1024 1 RW Word Analog Input Configuration(U/I) 1.1 Basic
87 1025 1025 1 RW Word Analog Input Voltage deviation 1.1 Expert
88 1026 1026 1 RW Word Analog Input Voltage offset 1.1 Expert
89 1027 1027 1 RW Word Analog Input Current deviation 1.1 Expert
90 1028 1028 1 RW Word Analog Input Current offset 1.1 Expert
91 1029 1029 1 RW Word Analog Input/Output Voltage deviation (input side) 1.1 Expert
92 1030 1030 1 RW Word Analog Input/Output Voltage offset (input side) 1.1 Expert
93 1031 1031 1 RW MixedBits RS485 Configuration 1.1 Obsolete
94 2000 220 W Word Reserved - Do Not Use Reserved
95 3000 3000 2 RW Real Analog Output value 1.1 Basic
96 3002 3002 2 R Real Analog Input value 1.1 Basic
97 3004 3004 2 R Real (Internal) Analog Output measured voltage value 1.1 Expert

View File

@ -0,0 +1,59 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Relay Output 1.1,Basic
1,1,RW,Relay Output 1.2,Basic
2,2,RW,Relay Output 1.3,Basic
3,3,RW,Relay Output 1.4,Basic
4,4,RW,Relay Output 1.5,Basic
5,5,RW,Relay Output 1.6,Basic
6,6,RW,Relay Output 1.7,Basic
7,7,RW,Relay Output 1.8,Basic
8,8,R,Digital Input 1.1,Basic
9,9,R,Digital Input 1.2,Basic
10,10,R,Digital Input 1.3,Basic
11,11,R,Digital Input 1.4,Basic
12,12,R,Digital Input 1.5,Basic
13,13,R,Digital Input 1.6,Basic
14,14,R,Digital Input 1.7,Basic
15,15,R,Digital Input 1.8,Basic
16,16,R,Digital Input 1.9,Basic
17,17,R,Digital Input 1.10,Basic
18,18,R,Digital Input 1.11,Basic
19,19,R,Digital Input 1.12,Basic
20,20,R,Digital Input 1.13,Basic
21,21,R,Digital Input 1.14,Basic
22,22,R,Digital Input 1.15,Basic
23,23,R,Digital Input 1.16,Basic
24,24,RW,User Programmable LED 1.1,Basic
25,25,RW,User Programmable LED 1.2,Basic
26,26,RW,User Programmable LED 1.3,Basic
27,27,RW,User Programmable LED 1.4,Basic
1000,1000,RW,MWD reset indication,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Enable DirectSwitch on DI 1.5,Advanced
1012,1012,RW,Enable DirectSwitch on DI 1.6,Advanced
1013,1013,RW,Enable DirectSwitch on DI 1.7,Advanced
1014,1014,RW,Enable DirectSwitch on DI 1.8,Advanced
1015,1015,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1016,1016,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1017,1017,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1018,1018,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1019,1019,RW,Invert DirectSwitch Polarity on DI 1.5,Advanced
1020,1020,RW,Invert DirectSwitch Polarity on DI 1.6,Advanced
1021,1021,RW,Invert DirectSwitch Polarity on DI 1.7,Advanced
1022,1022,RW,Invert DirectSwitch Polarity on DI 1.8,Advanced
1023,1023,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1024,1024,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1025,1025,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1026,1026,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1027,1027,RW,Enable DirectSwitch Toggle Mode on DI 1.5,Advanced
1028,1028,RW,Enable DirectSwitch Toggle Mode on DI 1.6,Advanced
1029,1029,RW,Enable DirectSwitch Toggle Mode on DI 1.7,Advanced
1030,1030,RW,Enable DirectSwitch Toggle Mode on DI 1.8,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Relay Output 1.1 Basic
3 1 1 RW Relay Output 1.2 Basic
4 2 2 RW Relay Output 1.3 Basic
5 3 3 RW Relay Output 1.4 Basic
6 4 4 RW Relay Output 1.5 Basic
7 5 5 RW Relay Output 1.6 Basic
8 6 6 RW Relay Output 1.7 Basic
9 7 7 RW Relay Output 1.8 Basic
10 8 8 R Digital Input 1.1 Basic
11 9 9 R Digital Input 1.2 Basic
12 10 10 R Digital Input 1.3 Basic
13 11 11 R Digital Input 1.4 Basic
14 12 12 R Digital Input 1.5 Basic
15 13 13 R Digital Input 1.6 Basic
16 14 14 R Digital Input 1.7 Basic
17 15 15 R Digital Input 1.8 Basic
18 16 16 R Digital Input 1.9 Basic
19 17 17 R Digital Input 1.10 Basic
20 18 18 R Digital Input 1.11 Basic
21 19 19 R Digital Input 1.12 Basic
22 20 20 R Digital Input 1.13 Basic
23 21 21 R Digital Input 1.14 Basic
24 22 22 R Digital Input 1.15 Basic
25 23 23 R Digital Input 1.16 Basic
26 24 24 RW User Programmable LED 1.1 Basic
27 25 25 RW User Programmable LED 1.2 Basic
28 26 26 RW User Programmable LED 1.3 Basic
29 27 27 RW User Programmable LED 1.4 Basic
30 1000 1000 RW MWD reset indication Advanced
31 1002 1002 R Reset group MCU Advanced
32 1003 1003 RW Save current configuration and use on startup Advanced
33 1004 1004 RW (Internal) Firmware programming toggle Expert
34 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
35 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
36 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
37 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
38 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
39 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
40 1011 1011 RW Enable DirectSwitch on DI 1.5 Advanced
41 1012 1012 RW Enable DirectSwitch on DI 1.6 Advanced
42 1013 1013 RW Enable DirectSwitch on DI 1.7 Advanced
43 1014 1014 RW Enable DirectSwitch on DI 1.8 Advanced
44 1015 1015 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
45 1016 1016 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
46 1017 1017 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
47 1018 1018 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
48 1019 1019 RW Invert DirectSwitch Polarity on DI 1.5 Advanced
49 1020 1020 RW Invert DirectSwitch Polarity on DI 1.6 Advanced
50 1021 1021 RW Invert DirectSwitch Polarity on DI 1.7 Advanced
51 1022 1022 RW Invert DirectSwitch Polarity on DI 1.8 Advanced
52 1023 1023 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
53 1024 1024 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
54 1025 1025 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
55 1026 1026 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced
56 1027 1027 RW Enable DirectSwitch Toggle Mode on DI 1.5 Advanced
57 1028 1028 RW Enable DirectSwitch Toggle Mode on DI 1.6 Advanced
58 1029 1029 RW Enable DirectSwitch Toggle Mode on DI 1.7 Advanced
59 1030 1030 RW Enable DirectSwitch Toggle Mode on DI 1.8 Advanced

View File

@ -0,0 +1,138 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
0,0,1,R,MixedBits,Digital Input 1.5,4,Basic
0,0,1,R,MixedBits,Digital Input 1.6,5,Basic
0,0,1,R,MixedBits,Digital Input 1.7,6,Basic
0,0,1,R,MixedBits,Digital Input 1.8,7,Basic
0,0,1,R,MixedBits,Digital Input 1.9,8,Basic
0,0,1,R,MixedBits,Digital Input 1.10,9,Basic
0,0,1,R,MixedBits,Digital Input 1.11,10,Basic
0,0,1,R,MixedBits,Digital Input 1.12,11,Basic
0,0,1,R,MixedBits,Digital Input 1.13,12,Basic
0,0,1,R,MixedBits,Digital Input 1.14,13,Basic
0,0,1,R,MixedBits,Digital Input 1.15,14,Basic
0,0,1,R,MixedBits,Digital Input 1.16,15,Basic
1,1,1,RW,MixedBits,Relay Output 1.1,0,Basic
1,1,1,RW,MixedBits,Relay Output 1.2,1,Basic
1,1,1,RW,MixedBits,Relay Output 1.3,2,Basic
1,1,1,RW,MixedBits,Relay Output 1.4,3,Basic
1,1,1,RW,MixedBits,Relay Output 1.5,4,Basic
1,1,1,RW,MixedBits,Relay Output 1.6,5,Basic
1,1,1,RW,MixedBits,Relay Output 1.7,6,Basic
1,1,1,RW,MixedBits,Relay Output 1.8,7,Basic
2,2,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
3,3,2,RW,DWord,Counter of Digital Input 1.1,,Basic
5,5,2,RW,DWord,Counter of Digital Input 1.2,,Basic
7,7,2,RW,DWord,Counter of Digital Input 1.3,,Basic
9,9,2,RW,DWord,Counter of Digital Input 1.4,,Basic
11,11,2,RW,DWord,Counter of Digital Input 1.5,,Basic
13,13,2,RW,DWord,Counter of Digital Input 1.6,,Basic
15,15,2,RW,DWord,Counter of Digital Input 1.7,,Basic
17,17,2,RW,DWord,Counter of Digital Input 1.8,,Basic
19,19,2,RW,DWord,Counter of Digital Input 1.9,,Basic
21,21,2,RW,DWord,Counter of Digital Input 1.10,,Basic
23,23,2,RW,DWord,Counter of Digital Input 1.11,,Basic
25,25,2,RW,DWord,Counter of Digital Input 1.12,,Basic
27,27,2,RW,DWord,Counter of Digital Input 1.13,,Basic
29,29,2,RW,DWord,Counter of Digital Input 1.14,,Basic
31,31,2,RW,DWord,Counter of Digital Input 1.15,,Basic
33,33,2,RW,DWord,Counter of Digital Input 1.16,,Basic
35,35,1,W,Word,Reserved - Do Not Use,,Reserved
36,36,1,W,Word,Reserved - Do Not Use,,Reserved
37,37,1,W,Word,Reserved - Do Not Use,,Reserved
38,38,1,W,Word,Reserved - Do Not Use,,Reserved
39,39,1,RW,MixedBits,User LED 1.1,0,Basic
39,39,1,RW,MixedBits,User LED 1.2,1,Basic
39,39,1,RW,MixedBits,User LED 1.3,2,Basic
39,39,1,RW,MixedBits,User LED 1.4,3,Basic
40,40,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
40,40,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
40,40,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
40,40,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
40,40,1,RW,MixedBits,Synchronised DO/RO 1.5,4,Advanced
40,40,1,RW,MixedBits,Synchronised DO/RO 1.6,5,Advanced
40,40,1,RW,MixedBits,Synchronised DO/RO 1.7,6,Advanced
40,40,1,RW,MixedBits,Synchronised DO/RO 1.8,7,Advanced
41,41,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
41,41,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
41,41,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
41,41,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
41,41,1,RW,MixedBits,Synchronised DO/RO Lock 1.5,4,Advanced
41,41,1,RW,MixedBits,Synchronised DO/RO Lock 1.6,5,Advanced
41,41,1,RW,MixedBits,Synchronised DO/RO Lock 1.7,6,Advanced
41,41,1,RW,MixedBits,Synchronised DO/RO Lock 1.8,7,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,Word,Debounce time (in 100us) for DI 1.5,,Advanced
1015,1015,1,RW,Word,Debounce time (in 100us) for DI 1.6,,Advanced
1016,1016,1,RW,Word,Debounce time (in 100us) for DI 1.7,,Advanced
1017,1017,1,RW,Word,Debounce time (in 100us) for DI 1.8,,Advanced
1018,1018,1,RW,Word,Debounce time (in 100us) for DI 1.9,,Advanced
1019,1019,1,RW,Word,Debounce time (in 100us) for DI 1.10,,Advanced
1020,1020,1,RW,Word,Debounce time (in 100us) for DI 1.11,,Advanced
1021,1021,1,RW,Word,Debounce time (in 100us) for DI 1.12,,Advanced
1022,1022,1,RW,Word,Debounce time (in 100us) for DI 1.13,,Advanced
1023,1023,1,RW,Word,Debounce time (in 100us) for DI 1.14,,Advanced
1024,1024,1,RW,Word,Debounce time (in 100us) for DI 1.15,,Advanced
1025,1025,1,RW,Word,Debounce time (in 100us) for DI 1.16,,Advanced
1026,1026,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1026,1026,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1026,1026,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1026,1026,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1026,1026,1,RW,MixedBits,Enable DirectSwitch on DI 1.5,4,Basic
1026,1026,1,RW,MixedBits,Enable DirectSwitch on DI 1.6,5,Basic
1026,1026,1,RW,MixedBits,Enable DirectSwitch on DI 1.7,6,Basic
1026,1026,1,RW,MixedBits,Enable DirectSwitch on DI 1.8,7,Basic
1027,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1027,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1027,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1027,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1027,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.5,4,Basic
1027,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.6,5,Basic
1027,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.7,6,Basic
1027,1027,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.8,7,Basic
1028,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1028,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1028,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1028,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1028,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.5,4,Basic
1028,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.6,5,Basic
1028,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.7,6,Basic
1028,1028,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.8,7,Basic
1029,1029,1,W,Word,Reserved - Do Not Use,,Reserved
1030,1030,1,W,Word,Reserved - Do Not Use,,Reserved
1031,1031,1,RW,MixedBits,RS485 Configuration,,Basic
1032,1032,1,RW,MixedBits,Modbus Address Configuration (1-254),,Basic
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 0 0 1 R MixedBits Digital Input 1.5 4 Basic
7 0 0 1 R MixedBits Digital Input 1.6 5 Basic
8 0 0 1 R MixedBits Digital Input 1.7 6 Basic
9 0 0 1 R MixedBits Digital Input 1.8 7 Basic
10 0 0 1 R MixedBits Digital Input 1.9 8 Basic
11 0 0 1 R MixedBits Digital Input 1.10 9 Basic
12 0 0 1 R MixedBits Digital Input 1.11 10 Basic
13 0 0 1 R MixedBits Digital Input 1.12 11 Basic
14 0 0 1 R MixedBits Digital Input 1.13 12 Basic
15 0 0 1 R MixedBits Digital Input 1.14 13 Basic
16 0 0 1 R MixedBits Digital Input 1.15 14 Basic
17 0 0 1 R MixedBits Digital Input 1.16 15 Basic
18 1 1 1 RW MixedBits Relay Output 1.1 0 Basic
19 1 1 1 RW MixedBits Relay Output 1.2 1 Basic
20 1 1 1 RW MixedBits Relay Output 1.3 2 Basic
21 1 1 1 RW MixedBits Relay Output 1.4 3 Basic
22 1 1 1 RW MixedBits Relay Output 1.5 4 Basic
23 1 1 1 RW MixedBits Relay Output 1.6 5 Basic
24 1 1 1 RW MixedBits Relay Output 1.7 6 Basic
25 1 1 1 RW MixedBits Relay Output 1.8 7 Basic
26 2 2 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
27 3 3 2 RW DWord Counter of Digital Input 1.1 Basic
28 5 5 2 RW DWord Counter of Digital Input 1.2 Basic
29 7 7 2 RW DWord Counter of Digital Input 1.3 Basic
30 9 9 2 RW DWord Counter of Digital Input 1.4 Basic
31 11 11 2 RW DWord Counter of Digital Input 1.5 Basic
32 13 13 2 RW DWord Counter of Digital Input 1.6 Basic
33 15 15 2 RW DWord Counter of Digital Input 1.7 Basic
34 17 17 2 RW DWord Counter of Digital Input 1.8 Basic
35 19 19 2 RW DWord Counter of Digital Input 1.9 Basic
36 21 21 2 RW DWord Counter of Digital Input 1.10 Basic
37 23 23 2 RW DWord Counter of Digital Input 1.11 Basic
38 25 25 2 RW DWord Counter of Digital Input 1.12 Basic
39 27 27 2 RW DWord Counter of Digital Input 1.13 Basic
40 29 29 2 RW DWord Counter of Digital Input 1.14 Basic
41 31 31 2 RW DWord Counter of Digital Input 1.15 Basic
42 33 33 2 RW DWord Counter of Digital Input 1.16 Basic
43 35 35 1 W Word Reserved - Do Not Use Reserved
44 36 36 1 W Word Reserved - Do Not Use Reserved
45 37 37 1 W Word Reserved - Do Not Use Reserved
46 38 38 1 W Word Reserved - Do Not Use Reserved
47 39 39 1 RW MixedBits User LED 1.1 0 Basic
48 39 39 1 RW MixedBits User LED 1.2 1 Basic
49 39 39 1 RW MixedBits User LED 1.3 2 Basic
50 39 39 1 RW MixedBits User LED 1.4 3 Basic
51 40 40 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
52 40 40 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
53 40 40 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
54 40 40 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
55 40 40 1 RW MixedBits Synchronised DO/RO 1.5 4 Advanced
56 40 40 1 RW MixedBits Synchronised DO/RO 1.6 5 Advanced
57 40 40 1 RW MixedBits Synchronised DO/RO 1.7 6 Advanced
58 40 40 1 RW MixedBits Synchronised DO/RO 1.8 7 Advanced
59 41 41 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
60 41 41 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
61 41 41 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
62 41 41 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
63 41 41 1 RW MixedBits Synchronised DO/RO Lock 1.5 4 Advanced
64 41 41 1 RW MixedBits Synchronised DO/RO Lock 1.6 5 Advanced
65 41 41 1 RW MixedBits Synchronised DO/RO Lock 1.7 6 Advanced
66 41 41 1 RW MixedBits Synchronised DO/RO Lock 1.8 7 Advanced
67 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
68 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
69 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
70 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
71 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
72 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
73 505 505 1 W Word Reserved - Do Not Use Reserved
74 506 506 1 W Word Reserved - Do Not Use Reserved
75 507 507 1 W Word Reserved - Do Not Use Reserved
76 508 508 1 W Word Reserved - Do Not Use Reserved
77 509 509 1 W Word Reserved - Do Not Use Reserved
78 510 1 RW Word (Internal) Stored Firmware Version Expert
79 511 1 RW Word (Internal) Stored Firmware Revision Expert
80 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
81 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
82 514 1 RW Word (Internal) Stored PCB Revision Expert
83 515 1 RW Word (Internal) Stored PCB Serial Number Expert
84 516 1 RW Word (Internal) Stored HW Revision Number Expert
85 1000 1000 1 R Word Firmware Version Expert
86 1001 1001 1 R Word Number of I/Os Advanced
87 1002 1002 1 R Word Number of peripherals Advanced
88 1003 1003 1 R Word Firmware ID Expert
89 1004 1004 1 R Word Hardware ID Expert
90 1005 1005 2 R DWord PCB Serial Number Expert
91 1007 1007 1 RW Word Interrupt Mask Expert
92 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
93 1009 1009 1 R Word VRef of MCU Expert
94 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
95 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
96 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
97 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
98 1014 1014 1 RW Word Debounce time (in 100us) for DI 1.5 Advanced
99 1015 1015 1 RW Word Debounce time (in 100us) for DI 1.6 Advanced
100 1016 1016 1 RW Word Debounce time (in 100us) for DI 1.7 Advanced
101 1017 1017 1 RW Word Debounce time (in 100us) for DI 1.8 Advanced
102 1018 1018 1 RW Word Debounce time (in 100us) for DI 1.9 Advanced
103 1019 1019 1 RW Word Debounce time (in 100us) for DI 1.10 Advanced
104 1020 1020 1 RW Word Debounce time (in 100us) for DI 1.11 Advanced
105 1021 1021 1 RW Word Debounce time (in 100us) for DI 1.12 Advanced
106 1022 1022 1 RW Word Debounce time (in 100us) for DI 1.13 Advanced
107 1023 1023 1 RW Word Debounce time (in 100us) for DI 1.14 Advanced
108 1024 1024 1 RW Word Debounce time (in 100us) for DI 1.15 Advanced
109 1025 1025 1 RW Word Debounce time (in 100us) for DI 1.16 Advanced
110 1026 1026 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
111 1026 1026 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
112 1026 1026 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
113 1026 1026 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
114 1026 1026 1 RW MixedBits Enable DirectSwitch on DI 1.5 4 Basic
115 1026 1026 1 RW MixedBits Enable DirectSwitch on DI 1.6 5 Basic
116 1026 1026 1 RW MixedBits Enable DirectSwitch on DI 1.7 6 Basic
117 1026 1026 1 RW MixedBits Enable DirectSwitch on DI 1.8 7 Basic
118 1027 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
119 1027 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
120 1027 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
121 1027 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
122 1027 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.5 4 Basic
123 1027 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.6 5 Basic
124 1027 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.7 6 Basic
125 1027 1027 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.8 7 Basic
126 1028 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
127 1028 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
128 1028 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
129 1028 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
130 1028 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.5 4 Basic
131 1028 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.6 5 Basic
132 1028 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.7 6 Basic
133 1028 1028 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.8 7 Basic
134 1029 1029 1 W Word Reserved - Do Not Use Reserved
135 1030 1030 1 W Word Reserved - Do Not Use Reserved
136 1031 1031 1 RW MixedBits RS485 Configuration Basic
137 1032 1032 1 RW MixedBits Modbus Address Configuration (1-254) Basic
138 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,35 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,R,Digital Input 1.1,Basic
1,1,R,Digital Input 1.2,Basic
2,2,R,Digital Input 1.3,Basic
3,3,R,Digital Input 1.4,Basic
4,4,R,Digital Input 1.5,Basic
5,5,R,Digital Input 1.6,Basic
6,6,R,Digital Input 1.7,Basic
7,7,R,Digital Input 1.8,Basic
8,8,R,Digital Input 1.9,Basic
9,9,R,Digital Input 1.10,Basic
10,10,R,Digital Input 1.11,Basic
11,11,R,Digital Input 1.12,Basic
12,12,R,Digital Input 1.13,Basic
13,13,R,Digital Input 1.14,Basic
14,14,R,Digital Input 1.15,Basic
15,15,R,Digital Input 1.16,Basic
16,16,R,Digital Input 1.17,Basic
17,17,R,Digital Input 1.18,Basic
18,18,R,Digital Input 1.19,Basic
19,19,R,Digital Input 1.20,Basic
20,20,R,Digital Input 1.21,Basic
21,21,R,Digital Input 1.22,Basic
22,22,R,Digital Input 1.23,Basic
23,23,R,Digital Input 1.24,Basic
24,24,RW,User Programmable LED 1.1,Basic
25,25,RW,User Programmable LED 1.2,Basic
26,26,RW,User Programmable LED 1.3,Basic
27,27,RW,User Programmable LED 1.4,Basic
1000,1000,RW,MWD reset indication,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 R Digital Input 1.1 Basic
3 1 1 R Digital Input 1.2 Basic
4 2 2 R Digital Input 1.3 Basic
5 3 3 R Digital Input 1.4 Basic
6 4 4 R Digital Input 1.5 Basic
7 5 5 R Digital Input 1.6 Basic
8 6 6 R Digital Input 1.7 Basic
9 7 7 R Digital Input 1.8 Basic
10 8 8 R Digital Input 1.9 Basic
11 9 9 R Digital Input 1.10 Basic
12 10 10 R Digital Input 1.11 Basic
13 11 11 R Digital Input 1.12 Basic
14 12 12 R Digital Input 1.13 Basic
15 13 13 R Digital Input 1.14 Basic
16 14 14 R Digital Input 1.15 Basic
17 15 15 R Digital Input 1.16 Basic
18 16 16 R Digital Input 1.17 Basic
19 17 17 R Digital Input 1.18 Basic
20 18 18 R Digital Input 1.19 Basic
21 19 19 R Digital Input 1.20 Basic
22 20 20 R Digital Input 1.21 Basic
23 21 21 R Digital Input 1.22 Basic
24 22 22 R Digital Input 1.23 Basic
25 23 23 R Digital Input 1.24 Basic
26 24 24 RW User Programmable LED 1.1 Basic
27 25 25 RW User Programmable LED 1.2 Basic
28 26 26 RW User Programmable LED 1.3 Basic
29 27 27 RW User Programmable LED 1.4 Basic
30 1000 1000 RW MWD reset indication Advanced
31 1002 1002 R Reset group MCU Advanced
32 1003 1003 RW Save current configuration and use on startup Advanced
33 1004 1004 RW (Internal) Firmware programming toggle Expert
34 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
35 1006 1006 RW (Internal) Firmware calibration programming toggle Expert

View File

@ -0,0 +1,108 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
0,0,1,R,MixedBits,Digital Input 1.5,4,Basic
0,0,1,R,MixedBits,Digital Input 1.6,5,Basic
0,0,1,R,MixedBits,Digital Input 1.7,6,Basic
0,0,1,R,MixedBits,Digital Input 1.8,7,Basic
0,0,1,R,MixedBits,Digital Input 1.9,8,Basic
0,0,1,R,MixedBits,Digital Input 1.10,9,Basic
0,0,1,R,MixedBits,Digital Input 1.11,10,Basic
0,0,1,R,MixedBits,Digital Input 1.12,11,Basic
0,0,1,R,MixedBits,Digital Input 1.13,12,Basic
0,0,1,R,MixedBits,Digital Input 1.14,13,Basic
0,0,1,R,MixedBits,Digital Input 1.15,14,Basic
0,0,1,R,MixedBits,Digital Input 1.16,15,Basic
1,1,1,R,MixedBits,Digital Input 1.17,0,Basic
1,1,1,R,MixedBits,Digital Input 1.18,1,Basic
1,1,1,R,MixedBits,Digital Input 1.19,2,Basic
1,1,1,R,MixedBits,Digital Input 1.20,3,Basic
1,1,1,R,MixedBits,Digital Input 1.21,4,Basic
1,1,1,R,MixedBits,Digital Input 1.22,5,Basic
1,1,1,R,MixedBits,Digital Input 1.23,6,Basic
1,1,1,R,MixedBits,Digital Input 1.24,7,Basic
2,2,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
3,3,2,RW,DWord,Counter of Digital Input 1.1,,Basic
5,5,2,RW,DWord,Counter of Digital Input 1.2,,Basic
7,7,2,RW,DWord,Counter of Digital Input 1.3,,Basic
9,9,2,RW,DWord,Counter of Digital Input 1.4,,Basic
11,11,2,RW,DWord,Counter of Digital Input 1.5,,Basic
13,13,2,RW,DWord,Counter of Digital Input 1.6,,Basic
15,15,2,RW,DWord,Counter of Digital Input 1.7,,Basic
17,17,2,RW,DWord,Counter of Digital Input 1.8,,Basic
19,19,2,RW,DWord,Counter of Digital Input 1.9,,Basic
21,21,2,RW,DWord,Counter of Digital Input 1.10,,Basic
23,23,2,RW,DWord,Counter of Digital Input 1.11,,Basic
25,25,2,RW,DWord,Counter of Digital Input 1.12,,Basic
27,27,2,RW,DWord,Counter of Digital Input 1.13,,Basic
29,29,2,RW,DWord,Counter of Digital Input 1.14,,Basic
31,31,2,RW,DWord,Counter of Digital Input 1.15,,Basic
33,33,2,RW,DWord,Counter of Digital Input 1.16,,Basic
35,35,2,RW,DWord,Counter of Digital Input 1.17,,Basic
37,37,2,RW,DWord,Counter of Digital Input 1.18,,Basic
39,39,2,RW,DWord,Counter of Digital Input 1.19,,Basic
41,41,2,RW,DWord,Counter of Digital Input 1.20,,Basic
43,43,2,RW,DWord,Counter of Digital Input 1.21,,Basic
45,45,2,RW,DWord,Counter of Digital Input 1.22,,Basic
47,47,2,RW,DWord,Counter of Digital Input 1.23,,Basic
49,49,2,RW,DWord,Counter of Digital Input 1.24,,Basic
51,51,1,RW,MixedBits,User LED 1.1,0,Basic
51,51,1,RW,MixedBits,User LED 1.2,1,Basic
51,51,1,RW,MixedBits,User LED 1.3,2,Basic
51,51,1,RW,MixedBits,User LED 1.4,3,Basic
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,Word,Debounce time (in 100us) for DI 1.5,,Advanced
1015,1015,1,RW,Word,Debounce time (in 100us) for DI 1.6,,Advanced
1016,1016,1,RW,Word,Debounce time (in 100us) for DI 1.7,,Advanced
1017,1017,1,RW,Word,Debounce time (in 100us) for DI 1.8,,Advanced
1018,1018,1,RW,Word,Debounce time (in 100us) for DI 1.9,,Advanced
1019,1019,1,RW,Word,Debounce time (in 100us) for DI 1.10,,Advanced
1020,1020,1,RW,Word,Debounce time (in 100us) for DI 1.11,,Advanced
1021,1021,1,RW,Word,Debounce time (in 100us) for DI 1.12,,Advanced
1022,1022,1,RW,Word,Debounce time (in 100us) for DI 1.13,,Advanced
1023,1023,1,RW,Word,Debounce time (in 100us) for DI 1.14,,Advanced
1024,1024,1,RW,Word,Debounce time (in 100us) for DI 1.15,,Advanced
1025,1025,1,RW,Word,Debounce time (in 100us) for DI 1.16,,Advanced
1026,1026,1,RW,Word,Debounce time (in 100us) for DI 1.17,,Advanced
1027,1027,1,RW,Word,Debounce time (in 100us) for DI 1.18,,Advanced
1028,1028,1,RW,Word,Debounce time (in 100us) for DI 1.19,,Advanced
1029,1029,1,RW,Word,Debounce time (in 100us) for DI 1.20,,Advanced
1030,1030,1,RW,Word,Debounce time (in 100us) for DI 1.21,,Advanced
1031,1031,1,RW,Word,Debounce time (in 100us) for DI 1.22,,Advanced
1032,1032,1,RW,Word,Debounce time (in 100us) for DI 1.23,,Advanced
1033,1033,1,RW,Word,Debounce time (in 100us) for DI 1.24,,Advanced
1034,1034,1,RW,MixedBits,RS485 Configuration,,Basic
1035,1035,1,RW,MixedBits,Modbus Address Configuration (1-254),,Basic
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 0 0 1 R MixedBits Digital Input 1.5 4 Basic
7 0 0 1 R MixedBits Digital Input 1.6 5 Basic
8 0 0 1 R MixedBits Digital Input 1.7 6 Basic
9 0 0 1 R MixedBits Digital Input 1.8 7 Basic
10 0 0 1 R MixedBits Digital Input 1.9 8 Basic
11 0 0 1 R MixedBits Digital Input 1.10 9 Basic
12 0 0 1 R MixedBits Digital Input 1.11 10 Basic
13 0 0 1 R MixedBits Digital Input 1.12 11 Basic
14 0 0 1 R MixedBits Digital Input 1.13 12 Basic
15 0 0 1 R MixedBits Digital Input 1.14 13 Basic
16 0 0 1 R MixedBits Digital Input 1.15 14 Basic
17 0 0 1 R MixedBits Digital Input 1.16 15 Basic
18 1 1 1 R MixedBits Digital Input 1.17 0 Basic
19 1 1 1 R MixedBits Digital Input 1.18 1 Basic
20 1 1 1 R MixedBits Digital Input 1.19 2 Basic
21 1 1 1 R MixedBits Digital Input 1.20 3 Basic
22 1 1 1 R MixedBits Digital Input 1.21 4 Basic
23 1 1 1 R MixedBits Digital Input 1.22 5 Basic
24 1 1 1 R MixedBits Digital Input 1.23 6 Basic
25 1 1 1 R MixedBits Digital Input 1.24 7 Basic
26 2 2 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
27 3 3 2 RW DWord Counter of Digital Input 1.1 Basic
28 5 5 2 RW DWord Counter of Digital Input 1.2 Basic
29 7 7 2 RW DWord Counter of Digital Input 1.3 Basic
30 9 9 2 RW DWord Counter of Digital Input 1.4 Basic
31 11 11 2 RW DWord Counter of Digital Input 1.5 Basic
32 13 13 2 RW DWord Counter of Digital Input 1.6 Basic
33 15 15 2 RW DWord Counter of Digital Input 1.7 Basic
34 17 17 2 RW DWord Counter of Digital Input 1.8 Basic
35 19 19 2 RW DWord Counter of Digital Input 1.9 Basic
36 21 21 2 RW DWord Counter of Digital Input 1.10 Basic
37 23 23 2 RW DWord Counter of Digital Input 1.11 Basic
38 25 25 2 RW DWord Counter of Digital Input 1.12 Basic
39 27 27 2 RW DWord Counter of Digital Input 1.13 Basic
40 29 29 2 RW DWord Counter of Digital Input 1.14 Basic
41 31 31 2 RW DWord Counter of Digital Input 1.15 Basic
42 33 33 2 RW DWord Counter of Digital Input 1.16 Basic
43 35 35 2 RW DWord Counter of Digital Input 1.17 Basic
44 37 37 2 RW DWord Counter of Digital Input 1.18 Basic
45 39 39 2 RW DWord Counter of Digital Input 1.19 Basic
46 41 41 2 RW DWord Counter of Digital Input 1.20 Basic
47 43 43 2 RW DWord Counter of Digital Input 1.21 Basic
48 45 45 2 RW DWord Counter of Digital Input 1.22 Basic
49 47 47 2 RW DWord Counter of Digital Input 1.23 Basic
50 49 49 2 RW DWord Counter of Digital Input 1.24 Basic
51 51 51 1 RW MixedBits User LED 1.1 0 Basic
52 51 51 1 RW MixedBits User LED 1.2 1 Basic
53 51 51 1 RW MixedBits User LED 1.3 2 Basic
54 51 51 1 RW MixedBits User LED 1.4 3 Basic
55 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
56 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
57 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
58 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
59 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
60 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
61 505 505 1 W Word Reserved - Do Not Use Reserved
62 506 506 1 W Word Reserved - Do Not Use Reserved
63 507 507 1 W Word Reserved - Do Not Use Reserved
64 508 508 1 W Word Reserved - Do Not Use Reserved
65 509 509 1 W Word Reserved - Do Not Use Reserved
66 510 1 RW Word (Internal) Stored Firmware Version Expert
67 511 1 RW Word (Internal) Stored Firmware Revision Expert
68 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
69 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
70 514 1 RW Word (Internal) Stored PCB Revision Expert
71 515 1 RW Word (Internal) Stored PCB Serial Number Expert
72 516 1 RW Word (Internal) Stored HW Revision Number Expert
73 1000 1000 1 R Word Firmware Version Expert
74 1001 1001 1 R Word Number of I/Os Advanced
75 1002 1002 1 R Word Number of peripherals Advanced
76 1003 1003 1 R Word Firmware ID Expert
77 1004 1004 1 R Word Hardware ID Expert
78 1005 1005 2 R DWord PCB Serial Number Expert
79 1007 1007 1 RW Word Interrupt Mask Expert
80 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
81 1009 1009 1 R Word VRef of MCU Expert
82 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
83 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
84 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
85 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
86 1014 1014 1 RW Word Debounce time (in 100us) for DI 1.5 Advanced
87 1015 1015 1 RW Word Debounce time (in 100us) for DI 1.6 Advanced
88 1016 1016 1 RW Word Debounce time (in 100us) for DI 1.7 Advanced
89 1017 1017 1 RW Word Debounce time (in 100us) for DI 1.8 Advanced
90 1018 1018 1 RW Word Debounce time (in 100us) for DI 1.9 Advanced
91 1019 1019 1 RW Word Debounce time (in 100us) for DI 1.10 Advanced
92 1020 1020 1 RW Word Debounce time (in 100us) for DI 1.11 Advanced
93 1021 1021 1 RW Word Debounce time (in 100us) for DI 1.12 Advanced
94 1022 1022 1 RW Word Debounce time (in 100us) for DI 1.13 Advanced
95 1023 1023 1 RW Word Debounce time (in 100us) for DI 1.14 Advanced
96 1024 1024 1 RW Word Debounce time (in 100us) for DI 1.15 Advanced
97 1025 1025 1 RW Word Debounce time (in 100us) for DI 1.16 Advanced
98 1026 1026 1 RW Word Debounce time (in 100us) for DI 1.17 Advanced
99 1027 1027 1 RW Word Debounce time (in 100us) for DI 1.18 Advanced
100 1028 1028 1 RW Word Debounce time (in 100us) for DI 1.19 Advanced
101 1029 1029 1 RW Word Debounce time (in 100us) for DI 1.20 Advanced
102 1030 1030 1 RW Word Debounce time (in 100us) for DI 1.21 Advanced
103 1031 1031 1 RW Word Debounce time (in 100us) for DI 1.22 Advanced
104 1032 1032 1 RW Word Debounce time (in 100us) for DI 1.23 Advanced
105 1033 1033 1 RW Word Debounce time (in 100us) for DI 1.24 Advanced
106 1034 1034 1 RW MixedBits RS485 Configuration Basic
107 1035 1035 1 RW MixedBits Modbus Address Configuration (1-254) Basic
108 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,57 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Relay Output 1.1,Basic
1,1,RW,Relay Output 1.2,Basic
2,2,RW,Relay Output 1.3,Basic
3,3,RW,Relay Output 1.4,Basic
4,4,RW,Relay Output 1.5,Basic
5,5,RW,Relay Output 1.6,Basic
6,6,RW,Relay Output 1.7,Basic
7,7,RW,Relay Output 1.8,Basic
8,8,RW,Relay Output 1.9,Basic
9,9,RW,Relay Output 1.10,Basic
10,10,RW,Relay Output 1.11,Basic
11,11,RW,Relay Output 1.12,Basic
12,12,RW,Relay Output 1.13,Basic
13,13,RW,Relay Output 1.14,Basic
14,14,R,Digital Input 1.1,Basic
15,15,R,Digital Input 1.2,Basic
16,16,R,Digital Input 1.3,Basic
17,17,R,Digital Input 1.4,Basic
18,18,R,Digital Input 1.5,Basic
19,19,R,Digital Input 1.6,Basic
20,20,R,Digital Input 1.7,Basic
21,21,R,Digital Input 1.8,Basic
22,22,RW,User Programmable LED 1.1,Basic
23,23,RW,User Programmable LED 1.2,Basic
24,24,RW,User Programmable LED 1.3,Basic
25,25,RW,User Programmable LED 1.4,Basic
1000,1000,RW,MWD reset indication,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Enable DirectSwitch on DI 1.5,Advanced
1012,1012,RW,Enable DirectSwitch on DI 1.6,Advanced
1013,1013,RW,Enable DirectSwitch on DI 1.7,Advanced
1014,1014,RW,Enable DirectSwitch on DI 1.8,Advanced
1015,1015,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1016,1016,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1017,1017,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1018,1018,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1019,1019,RW,Invert DirectSwitch Polarity on DI 1.5,Advanced
1020,1020,RW,Invert DirectSwitch Polarity on DI 1.6,Advanced
1021,1021,RW,Invert DirectSwitch Polarity on DI 1.7,Advanced
1022,1022,RW,Invert DirectSwitch Polarity on DI 1.8,Advanced
1023,1023,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1024,1024,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1025,1025,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1026,1026,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1027,1027,RW,Enable DirectSwitch Toggle Mode on DI 1.5,Advanced
1028,1028,RW,Enable DirectSwitch Toggle Mode on DI 1.6,Advanced
1029,1029,RW,Enable DirectSwitch Toggle Mode on DI 1.7,Advanced
1030,1030,RW,Enable DirectSwitch Toggle Mode on DI 1.8,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Relay Output 1.1 Basic
3 1 1 RW Relay Output 1.2 Basic
4 2 2 RW Relay Output 1.3 Basic
5 3 3 RW Relay Output 1.4 Basic
6 4 4 RW Relay Output 1.5 Basic
7 5 5 RW Relay Output 1.6 Basic
8 6 6 RW Relay Output 1.7 Basic
9 7 7 RW Relay Output 1.8 Basic
10 8 8 RW Relay Output 1.9 Basic
11 9 9 RW Relay Output 1.10 Basic
12 10 10 RW Relay Output 1.11 Basic
13 11 11 RW Relay Output 1.12 Basic
14 12 12 RW Relay Output 1.13 Basic
15 13 13 RW Relay Output 1.14 Basic
16 14 14 R Digital Input 1.1 Basic
17 15 15 R Digital Input 1.2 Basic
18 16 16 R Digital Input 1.3 Basic
19 17 17 R Digital Input 1.4 Basic
20 18 18 R Digital Input 1.5 Basic
21 19 19 R Digital Input 1.6 Basic
22 20 20 R Digital Input 1.7 Basic
23 21 21 R Digital Input 1.8 Basic
24 22 22 RW User Programmable LED 1.1 Basic
25 23 23 RW User Programmable LED 1.2 Basic
26 24 24 RW User Programmable LED 1.3 Basic
27 25 25 RW User Programmable LED 1.4 Basic
28 1000 1000 RW MWD reset indication Advanced
29 1002 1002 R Reset group MCU Advanced
30 1003 1003 RW Save current configuration and use on startup Advanced
31 1004 1004 RW (Internal) Firmware programming toggle Expert
32 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
33 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
34 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
35 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
36 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
37 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
38 1011 1011 RW Enable DirectSwitch on DI 1.5 Advanced
39 1012 1012 RW Enable DirectSwitch on DI 1.6 Advanced
40 1013 1013 RW Enable DirectSwitch on DI 1.7 Advanced
41 1014 1014 RW Enable DirectSwitch on DI 1.8 Advanced
42 1015 1015 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
43 1016 1016 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
44 1017 1017 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
45 1018 1018 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
46 1019 1019 RW Invert DirectSwitch Polarity on DI 1.5 Advanced
47 1020 1020 RW Invert DirectSwitch Polarity on DI 1.6 Advanced
48 1021 1021 RW Invert DirectSwitch Polarity on DI 1.7 Advanced
49 1022 1022 RW Invert DirectSwitch Polarity on DI 1.8 Advanced
50 1023 1023 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
51 1024 1024 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
52 1025 1025 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
53 1026 1026 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced
54 1027 1027 RW Enable DirectSwitch Toggle Mode on DI 1.5 Advanced
55 1028 1028 RW Enable DirectSwitch Toggle Mode on DI 1.6 Advanced
56 1029 1029 RW Enable DirectSwitch Toggle Mode on DI 1.7 Advanced
57 1030 1030 RW Enable DirectSwitch Toggle Mode on DI 1.8 Advanced

View File

@ -0,0 +1,132 @@
Via Unit 0,Via Unit 1,Register Count,R/W,Data Type,Content,Start Bit Nr.,Category
0,0,1,R,MixedBits,Digital Input 1.1,0,Basic
0,0,1,R,MixedBits,Digital Input 1.2,1,Basic
0,0,1,R,MixedBits,Digital Input 1.3,2,Basic
0,0,1,R,MixedBits,Digital Input 1.4,3,Basic
0,0,1,R,MixedBits,Digital Input 1.5,4,Basic
0,0,1,R,MixedBits,Digital Input 1.6,5,Basic
0,0,1,R,MixedBits,Digital Input 1.7,6,Basic
0,0,1,R,MixedBits,Digital Input 1.8,7,Basic
1,1,1,RW,MixedBits,Relay Output 1.1,0,Basic
1,1,1,RW,MixedBits,Relay Output 1.2,1,Basic
1,1,1,RW,MixedBits,Relay Output 1.3,2,Basic
1,1,1,RW,MixedBits,Relay Output 1.4,3,Basic
1,1,1,RW,MixedBits,Relay Output 1.5,4,Basic
1,1,1,RW,MixedBits,Relay Output 1.6,5,Basic
1,1,1,RW,MixedBits,Relay Output 1.7,6,Basic
1,1,1,RW,MixedBits,Relay Output 1.8,7,Basic
1,1,1,RW,MixedBits,Relay Output 1.9,8,Basic
1,1,1,RW,MixedBits,Relay Output 1.10,9,Basic
1,1,1,RW,MixedBits,Relay Output 1.11,10,Basic
1,1,1,RW,MixedBits,Relay Output 1.12,11,Basic
1,1,1,RW,MixedBits,Relay Output 1.13,12,Basic
1,1,1,RW,MixedBits,Relay Output 1.14,13,Basic
2,2,1,RW,MixedBits,Group MasterWatchDog (MWD) Status,,Advanced
3,3,2,RW,DWord,Counter of Digital Input 1.1,,Basic
5,5,2,RW,DWord,Counter of Digital Input 1.2,,Basic
7,7,2,RW,DWord,Counter of Digital Input 1.3,,Basic
9,9,2,RW,DWord,Counter of Digital Input 1.4,,Basic
11,11,2,RW,DWord,Counter of Digital Input 1.5,,Basic
13,13,2,RW,DWord,Counter of Digital Input 1.6,,Basic
15,15,2,RW,DWord,Counter of Digital Input 1.7,,Basic
17,17,2,RW,DWord,Counter of Digital Input 1.8,,Basic
19,19,1,W,Word,Reserved - Do Not Use,,Reserved
20,20,1,W,Word,Reserved - Do Not Use,,Reserved
21,21,1,W,Word,Reserved - Do Not Use,,Reserved
22,22,1,W,Word,Reserved - Do Not Use,,Reserved
23,23,1,RW,MixedBits,User LED 1.1,0,Basic
23,23,1,RW,MixedBits,User LED 1.2,1,Basic
23,23,1,RW,MixedBits,User LED 1.3,2,Basic
23,23,1,RW,MixedBits,User LED 1.4,3,Basic
24,24,1,RW,MixedBits,Synchronised DO/RO 1.1,0,Advanced
24,24,1,RW,MixedBits,Synchronised DO/RO 1.2,1,Advanced
24,24,1,RW,MixedBits,Synchronised DO/RO 1.3,2,Advanced
24,24,1,RW,MixedBits,Synchronised DO/RO 1.4,3,Advanced
24,24,1,RW,MixedBits,Synchronised DO/RO 1.5,4,Advanced
24,24,1,RW,MixedBits,Synchronised DO/RO 1.6,5,Advanced
24,24,1,RW,MixedBits,Synchronised DO/RO 1.7,6,Advanced
24,24,1,RW,MixedBits,Synchronised DO/RO 1.8,7,Advanced
24,24,1,RW,MixedBits,Synchronised DO/RO 1.9,8,Advanced
24,24,1,RW,MixedBits,Synchronised DO/RO 1.10,9,Advanced
24,24,1,RW,MixedBits,Synchronised DO/RO 1.11,10,Advanced
24,24,1,RW,MixedBits,Synchronised DO/RO 1.12,11,Advanced
24,24,1,RW,MixedBits,Synchronised DO/RO 1.13,12,Advanced
24,24,1,RW,MixedBits,Synchronised DO/RO 1.14,13,Advanced
25,25,1,RW,MixedBits,Synchronised DO/RO Lock 1.1,0,Advanced
25,25,1,RW,MixedBits,Synchronised DO/RO Lock 1.2,1,Advanced
25,25,1,RW,MixedBits,Synchronised DO/RO Lock 1.3,2,Advanced
25,25,1,RW,MixedBits,Synchronised DO/RO Lock 1.4,3,Advanced
25,25,1,RW,MixedBits,Synchronised DO/RO Lock 1.5,4,Advanced
25,25,1,RW,MixedBits,Synchronised DO/RO Lock 1.6,5,Advanced
25,25,1,RW,MixedBits,Synchronised DO/RO Lock 1.7,6,Advanced
25,25,1,RW,MixedBits,Synchronised DO/RO Lock 1.8,7,Advanced
25,25,1,RW,MixedBits,Synchronised DO/RO Lock 1.9,8,Advanced
25,25,1,RW,MixedBits,Synchronised DO/RO Lock 1.10,9,Advanced
25,25,1,RW,MixedBits,Synchronised DO/RO Lock 1.11,10,Advanced
25,25,1,RW,MixedBits,Synchronised DO/RO Lock 1.12,11,Advanced
25,25,1,RW,MixedBits,Synchronised DO/RO Lock 1.13,12,Advanced
25,25,1,RW,MixedBits,Synchronised DO/RO Lock 1.14,13,Advanced
,100,2,RW,DWord,(Internal) RS485 Full Mode Configuration 1.1,,Obsolete
,500,1,RW,Word,RS485 TERMIOS CFlags 1.1,,Expert
,501,1,RW,Word,RS485 TERMIOS LFlags 1.1,,Expert
,502,1,RW,Word,RS485 TERMIOS IFlags 1.1,,Expert
,503,1,RW,Word,RS485 TERMIOS LDisc 1.1,,Expert
,504,1,RW,Word,RS485 ModBus Timeout 1.1,,Basic
505,505,1,W,Word,Reserved - Do Not Use,,Reserved
506,506,1,W,Word,Reserved - Do Not Use,,Reserved
507,507,1,W,Word,Reserved - Do Not Use,,Reserved
508,508,1,W,Word,Reserved - Do Not Use,,Reserved
509,509,1,W,Word,Reserved - Do Not Use,,Reserved
,510,1,RW,Word,(Internal) Stored Firmware Version,,Expert
,511,1,RW,Word,(Internal) Stored Firmware Revision,,Expert
,512,1,RW,Word,(Internal) Stored Base Firmware Revision,,Expert
,513,1,RW,Word,(Internal) Stored Expanded Flash Magic Value,,Expert
,514,1,RW,Word,(Internal) Stored PCB Revision,,Expert
,515,1,RW,Word,(Internal) Stored PCB Serial Number,,Expert
,516,1,RW,Word,(Internal) Stored HW Revision Number,,Expert
1000,1000,1,R,Word,Firmware Version,,Expert
1001,1001,1,R,Word,Number of I/Os,,Advanced
1002,1002,1,R,Word,Number of peripherals,,Advanced
1003,1003,1,R,Word,Firmware ID,,Expert
1004,1004,1,R,Word,Hardware ID,,Expert
1005,1005,2,R,DWord,PCB Serial Number,,Expert
1007,1007,1,RW,Word,Interrupt Mask,,Expert
1008,1008,1,RW,Word,Group MasterWatchDog (MWD) Timeout (in 1ms),,Advanced
1009,1009,1,R,Word,VRef of MCU,,Expert
1010,1010,1,RW,Word,Debounce time (in 100us) for DI 1.1,,Advanced
1011,1011,1,RW,Word,Debounce time (in 100us) for DI 1.2,,Advanced
1012,1012,1,RW,Word,Debounce time (in 100us) for DI 1.3,,Advanced
1013,1013,1,RW,Word,Debounce time (in 100us) for DI 1.4,,Advanced
1014,1014,1,RW,Word,Debounce time (in 100us) for DI 1.5,,Advanced
1015,1015,1,RW,Word,Debounce time (in 100us) for DI 1.6,,Advanced
1016,1016,1,RW,Word,Debounce time (in 100us) for DI 1.7,,Advanced
1017,1017,1,RW,Word,Debounce time (in 100us) for DI 1.8,,Advanced
1018,1018,1,RW,MixedBits,Enable DirectSwitch on DI 1.1,0,Basic
1018,1018,1,RW,MixedBits,Enable DirectSwitch on DI 1.2,1,Basic
1018,1018,1,RW,MixedBits,Enable DirectSwitch on DI 1.3,2,Basic
1018,1018,1,RW,MixedBits,Enable DirectSwitch on DI 1.4,3,Basic
1018,1018,1,RW,MixedBits,Enable DirectSwitch on DI 1.5,4,Basic
1018,1018,1,RW,MixedBits,Enable DirectSwitch on DI 1.6,5,Basic
1018,1018,1,RW,MixedBits,Enable DirectSwitch on DI 1.7,6,Basic
1018,1018,1,RW,MixedBits,Enable DirectSwitch on DI 1.8,7,Basic
1019,1019,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.1,0,Basic
1019,1019,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.2,1,Basic
1019,1019,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.3,2,Basic
1019,1019,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.4,3,Basic
1019,1019,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.5,4,Basic
1019,1019,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.6,5,Basic
1019,1019,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.7,6,Basic
1019,1019,1,RW,MixedBits,Invert DirectSwitch Polarity on DI 1.8,7,Basic
1020,1020,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.1,0,Basic
1020,1020,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.2,1,Basic
1020,1020,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.3,2,Basic
1020,1020,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.4,3,Basic
1020,1020,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.5,4,Basic
1020,1020,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.6,5,Basic
1020,1020,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.7,6,Basic
1020,1020,1,RW,MixedBits,Enable DirectSwitch Toggle on DI 1.8,7,Basic
1021,1021,1,W,Word,Reserved - Do Not Use,,Reserved
1022,1022,1,W,Word,Reserved - Do Not Use,,Reserved
1023,1023,1,RW,MixedBits,RS485 Configuration,,Basic
1024,1024,1,RW,MixedBits,Modbus Address Configuration (1-254),,Basic
,2000,220,W,Word,Reserved - Do Not Use,,Reserved
1 Via Unit 0 Via Unit 1 Register Count R/W Data Type Content Start Bit Nr. Category
2 0 0 1 R MixedBits Digital Input 1.1 0 Basic
3 0 0 1 R MixedBits Digital Input 1.2 1 Basic
4 0 0 1 R MixedBits Digital Input 1.3 2 Basic
5 0 0 1 R MixedBits Digital Input 1.4 3 Basic
6 0 0 1 R MixedBits Digital Input 1.5 4 Basic
7 0 0 1 R MixedBits Digital Input 1.6 5 Basic
8 0 0 1 R MixedBits Digital Input 1.7 6 Basic
9 0 0 1 R MixedBits Digital Input 1.8 7 Basic
10 1 1 1 RW MixedBits Relay Output 1.1 0 Basic
11 1 1 1 RW MixedBits Relay Output 1.2 1 Basic
12 1 1 1 RW MixedBits Relay Output 1.3 2 Basic
13 1 1 1 RW MixedBits Relay Output 1.4 3 Basic
14 1 1 1 RW MixedBits Relay Output 1.5 4 Basic
15 1 1 1 RW MixedBits Relay Output 1.6 5 Basic
16 1 1 1 RW MixedBits Relay Output 1.7 6 Basic
17 1 1 1 RW MixedBits Relay Output 1.8 7 Basic
18 1 1 1 RW MixedBits Relay Output 1.9 8 Basic
19 1 1 1 RW MixedBits Relay Output 1.10 9 Basic
20 1 1 1 RW MixedBits Relay Output 1.11 10 Basic
21 1 1 1 RW MixedBits Relay Output 1.12 11 Basic
22 1 1 1 RW MixedBits Relay Output 1.13 12 Basic
23 1 1 1 RW MixedBits Relay Output 1.14 13 Basic
24 2 2 1 RW MixedBits Group MasterWatchDog (MWD) Status Advanced
25 3 3 2 RW DWord Counter of Digital Input 1.1 Basic
26 5 5 2 RW DWord Counter of Digital Input 1.2 Basic
27 7 7 2 RW DWord Counter of Digital Input 1.3 Basic
28 9 9 2 RW DWord Counter of Digital Input 1.4 Basic
29 11 11 2 RW DWord Counter of Digital Input 1.5 Basic
30 13 13 2 RW DWord Counter of Digital Input 1.6 Basic
31 15 15 2 RW DWord Counter of Digital Input 1.7 Basic
32 17 17 2 RW DWord Counter of Digital Input 1.8 Basic
33 19 19 1 W Word Reserved - Do Not Use Reserved
34 20 20 1 W Word Reserved - Do Not Use Reserved
35 21 21 1 W Word Reserved - Do Not Use Reserved
36 22 22 1 W Word Reserved - Do Not Use Reserved
37 23 23 1 RW MixedBits User LED 1.1 0 Basic
38 23 23 1 RW MixedBits User LED 1.2 1 Basic
39 23 23 1 RW MixedBits User LED 1.3 2 Basic
40 23 23 1 RW MixedBits User LED 1.4 3 Basic
41 24 24 1 RW MixedBits Synchronised DO/RO 1.1 0 Advanced
42 24 24 1 RW MixedBits Synchronised DO/RO 1.2 1 Advanced
43 24 24 1 RW MixedBits Synchronised DO/RO 1.3 2 Advanced
44 24 24 1 RW MixedBits Synchronised DO/RO 1.4 3 Advanced
45 24 24 1 RW MixedBits Synchronised DO/RO 1.5 4 Advanced
46 24 24 1 RW MixedBits Synchronised DO/RO 1.6 5 Advanced
47 24 24 1 RW MixedBits Synchronised DO/RO 1.7 6 Advanced
48 24 24 1 RW MixedBits Synchronised DO/RO 1.8 7 Advanced
49 24 24 1 RW MixedBits Synchronised DO/RO 1.9 8 Advanced
50 24 24 1 RW MixedBits Synchronised DO/RO 1.10 9 Advanced
51 24 24 1 RW MixedBits Synchronised DO/RO 1.11 10 Advanced
52 24 24 1 RW MixedBits Synchronised DO/RO 1.12 11 Advanced
53 24 24 1 RW MixedBits Synchronised DO/RO 1.13 12 Advanced
54 24 24 1 RW MixedBits Synchronised DO/RO 1.14 13 Advanced
55 25 25 1 RW MixedBits Synchronised DO/RO Lock 1.1 0 Advanced
56 25 25 1 RW MixedBits Synchronised DO/RO Lock 1.2 1 Advanced
57 25 25 1 RW MixedBits Synchronised DO/RO Lock 1.3 2 Advanced
58 25 25 1 RW MixedBits Synchronised DO/RO Lock 1.4 3 Advanced
59 25 25 1 RW MixedBits Synchronised DO/RO Lock 1.5 4 Advanced
60 25 25 1 RW MixedBits Synchronised DO/RO Lock 1.6 5 Advanced
61 25 25 1 RW MixedBits Synchronised DO/RO Lock 1.7 6 Advanced
62 25 25 1 RW MixedBits Synchronised DO/RO Lock 1.8 7 Advanced
63 25 25 1 RW MixedBits Synchronised DO/RO Lock 1.9 8 Advanced
64 25 25 1 RW MixedBits Synchronised DO/RO Lock 1.10 9 Advanced
65 25 25 1 RW MixedBits Synchronised DO/RO Lock 1.11 10 Advanced
66 25 25 1 RW MixedBits Synchronised DO/RO Lock 1.12 11 Advanced
67 25 25 1 RW MixedBits Synchronised DO/RO Lock 1.13 12 Advanced
68 25 25 1 RW MixedBits Synchronised DO/RO Lock 1.14 13 Advanced
69 100 2 RW DWord (Internal) RS485 Full Mode Configuration 1.1 Obsolete
70 500 1 RW Word RS485 TERMIOS CFlags 1.1 Expert
71 501 1 RW Word RS485 TERMIOS LFlags 1.1 Expert
72 502 1 RW Word RS485 TERMIOS IFlags 1.1 Expert
73 503 1 RW Word RS485 TERMIOS LDisc 1.1 Expert
74 504 1 RW Word RS485 ModBus Timeout 1.1 Basic
75 505 505 1 W Word Reserved - Do Not Use Reserved
76 506 506 1 W Word Reserved - Do Not Use Reserved
77 507 507 1 W Word Reserved - Do Not Use Reserved
78 508 508 1 W Word Reserved - Do Not Use Reserved
79 509 509 1 W Word Reserved - Do Not Use Reserved
80 510 1 RW Word (Internal) Stored Firmware Version Expert
81 511 1 RW Word (Internal) Stored Firmware Revision Expert
82 512 1 RW Word (Internal) Stored Base Firmware Revision Expert
83 513 1 RW Word (Internal) Stored Expanded Flash Magic Value Expert
84 514 1 RW Word (Internal) Stored PCB Revision Expert
85 515 1 RW Word (Internal) Stored PCB Serial Number Expert
86 516 1 RW Word (Internal) Stored HW Revision Number Expert
87 1000 1000 1 R Word Firmware Version Expert
88 1001 1001 1 R Word Number of I/Os Advanced
89 1002 1002 1 R Word Number of peripherals Advanced
90 1003 1003 1 R Word Firmware ID Expert
91 1004 1004 1 R Word Hardware ID Expert
92 1005 1005 2 R DWord PCB Serial Number Expert
93 1007 1007 1 RW Word Interrupt Mask Expert
94 1008 1008 1 RW Word Group MasterWatchDog (MWD) Timeout (in 1ms) Advanced
95 1009 1009 1 R Word VRef of MCU Expert
96 1010 1010 1 RW Word Debounce time (in 100us) for DI 1.1 Advanced
97 1011 1011 1 RW Word Debounce time (in 100us) for DI 1.2 Advanced
98 1012 1012 1 RW Word Debounce time (in 100us) for DI 1.3 Advanced
99 1013 1013 1 RW Word Debounce time (in 100us) for DI 1.4 Advanced
100 1014 1014 1 RW Word Debounce time (in 100us) for DI 1.5 Advanced
101 1015 1015 1 RW Word Debounce time (in 100us) for DI 1.6 Advanced
102 1016 1016 1 RW Word Debounce time (in 100us) for DI 1.7 Advanced
103 1017 1017 1 RW Word Debounce time (in 100us) for DI 1.8 Advanced
104 1018 1018 1 RW MixedBits Enable DirectSwitch on DI 1.1 0 Basic
105 1018 1018 1 RW MixedBits Enable DirectSwitch on DI 1.2 1 Basic
106 1018 1018 1 RW MixedBits Enable DirectSwitch on DI 1.3 2 Basic
107 1018 1018 1 RW MixedBits Enable DirectSwitch on DI 1.4 3 Basic
108 1018 1018 1 RW MixedBits Enable DirectSwitch on DI 1.5 4 Basic
109 1018 1018 1 RW MixedBits Enable DirectSwitch on DI 1.6 5 Basic
110 1018 1018 1 RW MixedBits Enable DirectSwitch on DI 1.7 6 Basic
111 1018 1018 1 RW MixedBits Enable DirectSwitch on DI 1.8 7 Basic
112 1019 1019 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.1 0 Basic
113 1019 1019 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.2 1 Basic
114 1019 1019 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.3 2 Basic
115 1019 1019 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.4 3 Basic
116 1019 1019 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.5 4 Basic
117 1019 1019 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.6 5 Basic
118 1019 1019 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.7 6 Basic
119 1019 1019 1 RW MixedBits Invert DirectSwitch Polarity on DI 1.8 7 Basic
120 1020 1020 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.1 0 Basic
121 1020 1020 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.2 1 Basic
122 1020 1020 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.3 2 Basic
123 1020 1020 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.4 3 Basic
124 1020 1020 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.5 4 Basic
125 1020 1020 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.6 5 Basic
126 1020 1020 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.7 6 Basic
127 1020 1020 1 RW MixedBits Enable DirectSwitch Toggle on DI 1.8 7 Basic
128 1021 1021 1 W Word Reserved - Do Not Use Reserved
129 1022 1022 1 W Word Reserved - Do Not Use Reserved
130 1023 1023 1 RW MixedBits RS485 Configuration Basic
131 1024 1024 1 RW MixedBits Modbus Address Configuration (1-254) Basic
132 2000 220 W Word Reserved - Do Not Use Reserved

View File

@ -0,0 +1,33 @@
Via Unit 0,Via Unit 1,R/W,Content,Category
0,0,RW,Relay Output 1.1,Basic
1,1,RW,Relay Output 1.2,Basic
2,2,RW,Relay Output 1.3,Basic
3,3,RW,Relay Output 1.4,Basic
4,4,RW,Relay Output 1.5,Basic
5,5,R,Digital Input 1.1,Basic
6,6,R,Digital Input 1.2,Basic
7,7,R,Digital Input 1.3,Basic
8,8,R,Digital Input 1.4,Basic
9,9,R,Digital Input 1.5,Basic
10,10,R,Digital Input 1.6,Basic
1000,1000,RW,MWD reset indication,Advanced
1002,1002,R,Reset group MCU,Advanced
1003,1003,RW,Save current configuration and use on startup,Advanced
1004,1004,RW,(Internal) Firmware programming toggle,Expert
1005,1005,RW,(Internal) Firmware reprogramming toggle,Expert
1006,1006,RW,(Internal) Firmware calibration programming toggle,Expert
1007,1007,RW,Enable DirectSwitch on DI 1.1,Advanced
1008,1008,RW,Enable DirectSwitch on DI 1.2,Advanced
1009,1009,RW,Enable DirectSwitch on DI 1.3,Advanced
1010,1010,RW,Enable DirectSwitch on DI 1.4,Advanced
1011,1011,RW,Enable DirectSwitch on DI 1.5,Advanced
1012,1012,RW,Invert DirectSwitch Polarity on DI 1.1,Advanced
1013,1013,RW,Invert DirectSwitch Polarity on DI 1.2,Advanced
1014,1014,RW,Invert DirectSwitch Polarity on DI 1.3,Advanced
1015,1015,RW,Invert DirectSwitch Polarity on DI 1.4,Advanced
1016,1016,RW,Invert DirectSwitch Polarity on DI 1.5,Advanced
1017,1017,RW,Enable DirectSwitch Toggle Mode on DI 1.1,Advanced
1018,1018,RW,Enable DirectSwitch Toggle Mode on DI 1.2,Advanced
1019,1019,RW,Enable DirectSwitch Toggle Mode on DI 1.3,Advanced
1020,1020,RW,Enable DirectSwitch Toggle Mode on DI 1.4,Advanced
1021,1021,RW,Enable DirectSwitch Toggle Mode on DI 1.5,Advanced
1 Via Unit 0 Via Unit 1 R/W Content Category
2 0 0 RW Relay Output 1.1 Basic
3 1 1 RW Relay Output 1.2 Basic
4 2 2 RW Relay Output 1.3 Basic
5 3 3 RW Relay Output 1.4 Basic
6 4 4 RW Relay Output 1.5 Basic
7 5 5 R Digital Input 1.1 Basic
8 6 6 R Digital Input 1.2 Basic
9 7 7 R Digital Input 1.3 Basic
10 8 8 R Digital Input 1.4 Basic
11 9 9 R Digital Input 1.5 Basic
12 10 10 R Digital Input 1.6 Basic
13 1000 1000 RW MWD reset indication Advanced
14 1002 1002 R Reset group MCU Advanced
15 1003 1003 RW Save current configuration and use on startup Advanced
16 1004 1004 RW (Internal) Firmware programming toggle Expert
17 1005 1005 RW (Internal) Firmware reprogramming toggle Expert
18 1006 1006 RW (Internal) Firmware calibration programming toggle Expert
19 1007 1007 RW Enable DirectSwitch on DI 1.1 Advanced
20 1008 1008 RW Enable DirectSwitch on DI 1.2 Advanced
21 1009 1009 RW Enable DirectSwitch on DI 1.3 Advanced
22 1010 1010 RW Enable DirectSwitch on DI 1.4 Advanced
23 1011 1011 RW Enable DirectSwitch on DI 1.5 Advanced
24 1012 1012 RW Invert DirectSwitch Polarity on DI 1.1 Advanced
25 1013 1013 RW Invert DirectSwitch Polarity on DI 1.2 Advanced
26 1014 1014 RW Invert DirectSwitch Polarity on DI 1.3 Advanced
27 1015 1015 RW Invert DirectSwitch Polarity on DI 1.4 Advanced
28 1016 1016 RW Invert DirectSwitch Polarity on DI 1.5 Advanced
29 1017 1017 RW Enable DirectSwitch Toggle Mode on DI 1.1 Advanced
30 1018 1018 RW Enable DirectSwitch Toggle Mode on DI 1.2 Advanced
31 1019 1019 RW Enable DirectSwitch Toggle Mode on DI 1.3 Advanced
32 1020 1020 RW Enable DirectSwitch Toggle Mode on DI 1.4 Advanced
33 1021 1021 RW Enable DirectSwitch Toggle Mode on DI 1.5 Advanced

Some files were not shown because too many files have changed in this diff Show More