What the Integer Value Object Is
The Integer Value object, defined in Clause 12.43 of ANSI/ASHRAE 135-2024, represents a signed integer value inside a BACnet device that is not tied to physical I/O. Where an Analog Value holds a floating-point number, an Integer Value holds a whole number that can be negative: an offset, a signed count, a calculated integer, or any signed value the control logic exposes for other devices to read.
An Integer Value can be read-only or commandable. When it is commandable, it carries the same 16-slot priority array as an Analog Output; when it is a simple stored value, it does not. Integer Value objects that support intrinsic reporting apply the SIGNED_OUT_OF_RANGE event algorithm and deliver the alarm through the event notification services.
Where You’ll See It
- Signed counts and offsets. A trim offset, a signed accumulator, or a difference value the logic holds and shares.
- Calculated integers. A computed count or index other devices read with ReadProperty.
- Tuning parameters. An integer gain or threshold a technician adjusts without touching a physical channel.
Required Properties
Clause 12.43 requires every Integer Value object to provide these properties. Datatypes are the spec’s names: INTEGER is a signed whole number, CharacterString a text string, and the BACnet-prefixed types are structured values defined by the standard.
| Property | Datatype | What it holds |
|---|---|---|
Object_Identifier | BACnetObjectIdentifier | The object’s type and instance number, unique within the device |
Object_Name | CharacterString | The human-readable point name, unique within the device |
Object_Type | BACnetObjectType | Always integer-value for this object |
Present_Value | INTEGER | The signed integer value. Read-only or commandable depending on the instance |
Status_Flags | BACnetStatusFlags | Four health flags: in-alarm, fault, overridden, out-of-service |
Units | BACnetEngineeringUnits | The engineering units of the value |
Property_List | BACnetARRAY[N] of BACnetPropertyIdentifier | The list of properties this instance actually implements |
When the object is commandable, it additionally implements Priority_Array (the 16 command slots), Relinquish_Default (the fallback when all slots are Null), and Current_Command_Priority. On a simple stored Integer Value these are absent. See How Commanding Works on the Analog Output page for the priority-array model.
Optional Properties
The properties integrators meet most are COV_Increment (how much the value must change before a COV, Change of Value, notification fires), the alarm-limit group (High_Limit, Low_Limit, Deadband, Limit_Enable), and, on commandable instances, the command-tracking group. The intrinsic-reporting group generally appears or is absent as a set.
| Property | Datatype | Group |
|---|---|---|
Description | CharacterString | General |
Out_Of_Service | BOOLEAN | General |
Event_State | BACnetEventState | General |
Resolution | INTEGER | General |
Min_Pres_Value | INTEGER | Value range |
Max_Pres_Value | INTEGER | Value range |
Priority_Array | BACnetPriorityArray | Commanding |
Relinquish_Default | INTEGER | Commanding |
Current_Command_Priority | BACnetOptionalUnsigned | Commanding |
Value_Source | BACnetValueSource | Commanding |
Value_Source_Array | BACnetARRAY[16] of BACnetValueSource | Commanding |
Last_Command_Time | BACnetTimeStamp | Commanding |
Command_Time_Array | BACnetARRAY[16] of BACnetTimeStamp | Commanding |
COV_Increment | Unsigned | COV reporting |
Time_Delay | Unsigned | Intrinsic reporting |
Notification_Class | Unsigned | Intrinsic reporting |
High_Limit | INTEGER | Intrinsic reporting |
Low_Limit | INTEGER | Intrinsic reporting |
Deadband | Unsigned | Intrinsic reporting |
Limit_Enable | BACnetLimitEnable | Intrinsic reporting |
Event_Enable | BACnetEventTransitionBits | Intrinsic reporting |
Acked_Transitions | BACnetEventTransitionBits | Intrinsic reporting |
Notify_Type | BACnetNotifyType | Intrinsic reporting |
Event_Time_Stamps | BACnetARRAY[3] of BACnetTimeStamp | Intrinsic reporting |
Event_Message_Texts | BACnetARRAY[3] of CharacterString | Intrinsic reporting |
Event_Message_Texts_Config | BACnetARRAY[3] of CharacterString | Intrinsic reporting |
Event_Detection_Enable | BOOLEAN | Intrinsic reporting |
Event_Algorithm_Inhibit_Ref | BACnetObjectPropertyReference | Intrinsic reporting |
Event_Algorithm_Inhibit | BOOLEAN | Intrinsic reporting |
Time_Delay_Normal | Unsigned | Intrinsic reporting |
Reliability | BACnetReliability | Fault detection |
Fault_High_Limit | INTEGER | Fault detection |
Fault_Low_Limit | INTEGER | Fault detection |
Reliability_Evaluation_Inhibit | BOOLEAN | Fault detection |
Audit_Level | BACnetAuditLevel | Auditing |
Auditable_Operations | BACnetAuditOperationFlags | Auditing |
Tags | BACnetARRAY[N] of BACnetNameValue | Tagging and profile |
Profile_Location | CharacterString | Tagging and profile |
Profile_Name | CharacterString | Tagging and profile |
Related Objects
- Positive Integer Value: the unsigned counterpart, for values that are never negative.
- Large Analog Value: a double-precision floating-point software point.
- Analog Value: the single-precision floating-point software point (setpoints, calculated values).
- Multi-state Value: a small set of named states rather than an arbitrary integer.
What Chipkin Provides
The Integer Value object, in both read-only and commandable forms, is a first-class object type in the CAS BACnet Stack. Talk to us about modeling your device’s points.