Occupant feedback can be provided through the LED Ring and Speaker. This can be controlled through BACnet in a number of ways.
For more information about the LED ring see How the LED ring works
For more information about the speaker see How the speaker works
Sample Application
In this example, we will program the O3 to activate its LED ring and play a sound when motion is detected.
O3 Edge
The O3 Edge can be directly programmed by creating Program (PG) objects and entering GCL+ code. A program for this example could look like:
//play light ring and sound on motion detection IfOnce BI9 Then
MV1 = 5 //play "occupancy active" light ring
MV28 = 7 //play "occupancy sound"
End If
O3 Sense
You can control the O3 Sense's light ring and/or sounds remotely from another BACnet device.
Using GCL+ code executed on a Delta Controls device, for an O3 Sense with a BACnet Device ID of 1503, the program could look like:
//play light ring and sound on motion detection
IfOnce 1503.BI9 Then
1503.MV1 = 5 //play "occupancy active" light ring
1503.MV28 = 7 //play "occupancy sound"
End If
Comments
0 comments
Please sign in to leave a comment.