BACnet4J icon indicating copy to clipboard operation
BACnet4J copied to clipboard

BACnet/IP stack written in Java. Forked from http://sourceforge.net/projects/bacnet4j/

Results 53 BACnet4J issues
Sort by recently updated
recently updated
newest added

Proposed way to fix the issue with _WriteProperty_ request - timeout exception is thrown in _ServiceFutureImpl_ here: ``` if(ex == null && ack == null && fail == null) ex...

182.168.40.100/24:47808 is BA Server,support bacnetip protocal. 182.168.1.88/24 is a centos that my program running. The network and port from 182.168.1.88/24 to 182.168.40.100/24:47808 are connected, but the broadcast is not working....

There is a bug in the class NotificationClassObject.validateProperty. When updating the property `priority`, the following error occurs: ``` java.lang.ClassCastException: com.serotonin.bacnet4j.type.constructed.SequenceOf cannot be cast to com.serotonin.bacnet4j.type.constructed.BACnetArray at com.serotonin.bacnet4j.obj.NotificationClassObject.validateProperty(NotificationClassObject.java:117) at com.serotonin.bacnet4j.obj.BACnetObject.writeProperty(BACnetObject.java:486) at...

**Problem Statement:** Some Analog Values are getting missed in COV subscription using BACnet4j library **Observation:** It's been observed in BACnet4j library that some Notification values for Analog Value (AV) Objects...

Add read timeout to avoid hanging on some controllers with huge number of tags (properties).

Hey Team, I have created a schedule object using bacnet4j library in java. Like below ``` final AnalogValueObject av0 = new AnalogValueObject(d1, 100, "av0", 98, EngineeringUnits.amperes, false) .supportCommandable(-2); final SequenceOf...

**Describe the bug** can not get value by PropertyIdentifier.subordinateList ![image](https://github.com/MangoAutomation/BACnet4J/assets/38942029/ea547cb0-8287-4c45-9bb4-40b2c533f1a5)

Hi,all . I use writePropertyRequest to write a new presentValue , but unfortunately it response a wrong code invalid data-type. could you give us any advise? thanks there is my...