When creating a BACnet/IP DataPoint there is an option to"Use COV subscription", but am I missing where the COV Increment can be set?
The method appears to allow for this.
public CovSubscription(final RecipientProcess recipient, final ObjectPropertyReference monitoredPropertyReference,
final Boolean issueConfirmedNotifications, final UnsignedInteger timeRemaining, final Real covIncrement) {
this.recipient = recipient;
this.monitoredPropertyReference = monitoredPropertyReference;
this.issueConfirmedNotifications = issueConfirmedNotifications;
this.timeRemaining = timeRemaining;
this.covIncrement = covIncrement;
}
I feel like I am overlooking something as it seems odd to have the ability to subscribe without being able to set an increment - at least for analog values.
Thank you