Skip to main content
Version: 8.1

system.bacnet

BACnet Functions

The following functions are used with the BACnet driver and a BACnet/IP device.

Functions by Scope

Constants

The system.bacnet function contains three packages (objectType, propertyId, and Enums) that reference Java classes. These references allow the classes to be imported through scripts without needing to know their full path. For example, both scripts below use system.bacnet to import the calendar object type without using from com.serotonin.bacnet4j.type.enumerated import ObjectType. See the system.bacnet.readRaw page for more details.

Example code using an import statement
from system.bacnet.enumerated import ObjectType

ot = ObjectType.calendar
Exmaple code not using an import statement
ot = system.bacnet.enumerated.ObjectType.calendar