You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I set up my BACpypes3 application the same way I set up my BACpypes application, using the device object.
this_device = DeviceObject(
objectIdentifier=ObjectIdentifier(f"device,{config.get('BACpypes', 'objectIdentifier')}"),
objectName=config.get('BACpypes', 'objectName'),
description="BACnet Add-on for Home Assistant",
vendorIdentifier=int(config.get('BACpypes', 'vendorIdentifier')),
maxApduLengthAccepted=1476,
segmentationSupported=Segmentation.segmentedBoth,
maxSegmentsAccepted=64,
)
While using this setup, the requests my application sends are using the default settings and not the parameters used in the Device object.
The workaround solution currently is adjusting the ApplicationServiceAccessPoint variables by overwriting them like the following
I set up my BACpypes3 application the same way I set up my BACpypes application, using the device object.
While using this setup, the requests my application sends are using the default settings and not the parameters used in the Device object.
The workaround solution currently is adjusting the ApplicationServiceAccessPoint variables by overwriting them like the following
In short, the Device object parameters are not being used by the app.
The application I use BACpypes3 in can be found here
The text was updated successfully, but these errors were encountered: