NDU Gateway

Integrate legacy and third-party systems with NDU platform using IoT Gateway.

BACnet Connector Configuration

The BACnet connector is a way to read and write some basic objects and properties in BACnet IP device. Use general configuration to enable this connector.
We will describe connector configuration file below.


Example of BACnet Connector config file. Press to expand/collapse.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
  "general": {
    "objectName": "TB_gateway",
    "address": "192.168.188.181:1052",
    "objectIdentifier": 599,
    "maxApduLengthAccepted": 1024,
    "segmentationSupported": "segmentedBoth",
    "vendorIdentifier": 15
  },
  "devices": [
    {
      "deviceName": "BACnet Device ${objectName}",
      "deviceType": "default",
      "address": "192.168.188.181:10520",
      "pollPeriod": 10000,
      "attributes": [
        {
          "key": "temperature",
          "objectId": "analogOutput:1",
          "propertyId": "presentValue"
        }
      ],
      "timeseries": [
        {
          "key": "state",
          "objectId": "binaryValue:1",
          "propertyId": "presentValue"
        }
      ],
      "attributeUpdates": [
        {
          "key": "brightness",
          "requestType": "writeProperty",
          "objectId": "analogOutput:1",
          "propertyId": "presentValue"
        }
      ],
      "serverSideRpc": [
        {
          "method": "set_state",
          "requestType": "writeProperty",
          "requestTimeout": 10000,
          "objectId": "binaryOutput:1",
          "propertyId": "presentValue"
        },
        {
          "method": "get_state",
          "requestType": "readProperty",
          "requestTimeout": 10000,
          "objectId": "binaryOutput:1",
          "propertyId": "presentValue"
        }
      ]
    }
  ]
}

Section “general”: description and configuration parameters

Configuration in this section uses to configure the gateway in the BACnet network.

Parameter Default value Description
objectName TB_gateway The gateway object name in the BACnet network.
address 192.168.188.181:1052 The gateway address in the BACnet network.
objectIdentifier 599 The gateway object identifier in the BACnet network.
maxApduLengthAccepted 1024 Maximal length of the APDU.
segmentationSupported segmentedBoth  
vendorIdentifier 15  

Example:

1
2
3
4
5
6
7
8
  "general": {
    "objectName": "TB_gateway",
    "address": "192.168.188.181:1052",
    "objectIdentifier": 599,
    "maxApduLengthAccepted": 1024,
    "segmentationSupported": "segmentedBoth",
    "vendorIdentifier": 15
  },
Device object settings

This configuration contains common connection parameters and settings for data processing.
Available parameters are as follows:

Parameter Default value Description
deviceName BACnet Device ${objectName} Device name for NDU. You can use objectName property to get name of object from device.
deviceType default Device type for NDU.
address 192.168.188.181:10520 Device address in the BACnet network.
pollPeriod 10000 Period to check data on the device.

Example:

1
2
3
4
5
6
  "devices": [
    {
      "deviceName": "BACnet Device ${objectName}",
      "deviceType": "default",
      "address": "192.168.188.181:10520",
      "pollPeriod": 10000,
Key settings for “attributes”

Configuration in this sub-section units provides settings for processing data from BACnet device as attribute of device on NDU platform instance.

Parameter Default value Description
key temperature Attribute key for NDU platform instance.
objectId analogOutput:1 Object id in the BACnet device.
propertyId presentValue Property id in the BACnet device.

Example:

1
2
3
4
5
6
7
      "attributes": [
        {
          "key": "temperature",
          "objectId": "analogOutput:1",
          "propertyId": "presentValue"
        }
      ],
Key settings for “timeseries”

Configuration in this sub-section units provides settings for processing data from BACnet device as a telemetry of device on NDU platform instance.

Parameter Default value Description
key state Telemetry key for NDU platform instance.
objectId binaryValue:1 Object id in the BACnet device.
propertyId presentValue Property id in the BACnet device.

Example:

1
2
3
4
5
6
7
      "timeseries": [
        {
          "key": "state",
          "objectId": "binaryValue:1",
          "propertyId": "presentValue"
        }
      ],
Key settings for “attributeUpdates”

Configuration in this sub-section units provides settings for processing data from shared attributes on NDU platform instance to the BACnet device.

Parameter Default value Description
key brightness Name of the shared attribute on NDU instance.
requestType writeProperty Should be a “writeProperty”. Added for further development.
objectId analogOutput:1 Object id in the BACnet device.
propertyId presentValue Property id in the BACnet device.

Example:

1
2
3
4
5
6
7
8
      "attributeUpdates": [
        {
          "key": "brightness",
          "requestType": "writeProperty",
          "objectId": "analogOutput:1",
          "propertyId": "presentValue"
        }
      ],
Key settings for “serverSideRpc”

Configuration in this sub-section units provides settings for processing RPC from NDU instance to the BACnet device.

Parameter Default value Description
key set_state Name of the shared attribute on NDU instance.
requestType writeProperty writeProperty” to write data and “readProperty” to read data.
requestTimeout 30 Timeout to wait the response from the BACnet device, seconds.
objectId analogOutput:1 Object id in the BACnet device.
propertyId presentValue Property id in the BACnet device.

Examples:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
      "serverSideRpc": [
        {
          "method": "set_state",
          "requestType": "writeProperty",
          "requestTimeout": 30,
          "objectId": "binaryOutput:1",
          "propertyId": "presentValue"
        },
        {
          "method": "get_state",
          "requestType": "readProperty",
          "requestTimeout": 30,
          "objectId": "binaryOutput:1",
          "propertyId": "presentValue"
        }
      ]
Object identifiers

The BACnet connector Object identifiers consist of two parts separated by colon (“:”) symbol:
the name of object and the number of this object on the device.

Tested and supported objects:

BACnet object id NDU object id
Binary input binaryInput
Binary output binaryOutput
Binary value binaryValue
Analog Input analogInput
Analog output analogOutput
Analog value analogValue

Objects in testing:

Property identifiers

Property identifiers depend on type of the BACnet object, provided in camelCase, e.g. presentValue objectName objectDescription etc.

Next steps

Explore guides related to main NDU features: