Stand with Ukraine flag
Try it now Pricing
IoT Gateway
Community Edition Professional Edition Cloud Edge PE Edge IoT Gateway License Server Trendz Analytics Mobile Application PE Mobile Application MQTT Broker
Documentation > Configuration guides > BACnet Connector
Getting Started
Installation
On this page

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 the connector configuration file below.

Example of BACnet Connector config file.

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 is used 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 ThingsBoard. You can use objectName property to get name of object from device.
deviceType default Device type for ThingsBoard.
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 unit sub-section provides settings for processing data from BACnet device as an attribute of the device on ThingsBoard platform instance.

Parameter Default value Description
key temperature Attribute key for ThingsBoard 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 unit sub-section provides settings for processing data from BACnet device as telemetry of the device on ThingsBoard platform instance.

Parameter Default value Description
key state Telemetry key for ThingsBoard 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 unit sub-section provides settings for processing data from shared attributes on ThingsBoard platform instance to the BACnet device.

Parameter Default value Description
key brightness Name of the shared attribute on ThingsBoard 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 unit sub-section provides settings for processing RPC from ThingsBoard instance to the BACnet device.

Parameter Default value Description
key set_state Name of the shared attribute on ThingsBoard 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 a colon (“:”) symbol:
the name of object and the number of this object on the device.

Tested and supported objects:

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

Objects in testing:

  • accumulatorObject
  • averagingObject
  • calendarObject
  • commandObject
  • fileObject
  • lifeSafetyPointObject
  • lifeSafetyZoneObject
  • loopObject
  • multiStateInputObject
  • multiStateOutputObject
  • multiStateValueObject
  • notificationClassObject
  • programObject
  • pulseConverterObject
  • scheduleObject
  • structuredViewObject
  • trendLogObject
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 ThingsBoard features: