BACnet4J
BACnet4J copied to clipboard
BACnet/IP stack written in Java. Forked from http://sourceforge.net/projects/bacnet4j/
Addressing scheduling issues discussed in https://github.com/MangoAutomation/BACnet4J/pull/98
Hi, is BACnet Secure Connect on your radar at all? Has anybody else requested support for it?
I'm now using Polling way to fetch the value from device. Sometime when executing RequestUtils.readProperties, it will not come back any response (more than 30 seconds no response). Normally, it...
localDevice:10.213.22.7,port:47808 ,remoteDevice's ip : 172.18.39.116 ,port : 47808, deviceId 504 final ReadPropertyAck supportedServicesAck = (ReadPropertyAck) localDevice .send(remoteDevice, new ReadPropertyRequest(remoteDevice.getObjectIdentifier(), PropertyIdentifier.protocolServicesSupported)).get(); report the error。 but I use Yabe to test ,it...
Encodable e= RequestUtils.readProperty(d, rd, new ObjectIdentifier(ObjectType.binaryValue, 0), PropertyIdentifier.presentValue, null); This is the code for me to read the binary, but when I start the code, the program will report this...
When TimeSynch service is received from other device , the local device should update its clock and set the Local-Date & Local-Time property of the Device Object accordingly. The TimeSynch...
Found problems with 2 randomly failing test classes: * TrendLogObjecTest * TrendLogMultipleObjectTest The problem was due to accessing a non thread safe collection of the trend logs in the tests....
- This fix addresses the issues mentioned in https://radixiot.atlassian.net/browse/MANGO-1945 . - Two tests from TrendLogObjectTest and one test from TrendLogObjectMultipleTest were failing. - The intent of these tests are to...
@Override public String getPointValue(RemoteDevice remoteDevice, ObjectIdentifier oid, PropertyIdentifier propertyIdentifier) throws RuntimeException { PropertyValues pvs; String value = ""; try { PropertyReferences refs = new PropertyReferences(); refs.add(oid, propertyIdentifier); **pvs = RequestUtils.readProperties(localDevice,...
Follow title