Joel Bender

Results 184 comments of Joel Bender

Yikes! Almost a year! No, nothing yet. :-(

Notice in basetypes that a **Recipient** is a choice between a **device** and an **address**, and that the address is a **DeviceAddress**, which has a **networkNumber** and **macAddress**. The special...

It looks like your function takes an object identifier as two parameters, it should be something like `(str, int)` to be consistent with the rest of BACpypes. The `startTime` property...

``` from bacpypes.pdu import Address from bacpypes.primitivedata import Date from bacpypes.constructeddata import Any from bacpypes.apdu import WritePropertyRequest # Python2/3 rename try: input = raw_input except NameError: pass address = Address(input("address:...

I'll make an issue for this, but for now, change this line: ``` 'bs': BitString, ``` To this: ``` 'bs': lambda x: BitString([int(y) for y in x]), ``` The `BitString`...

There is not enough information in your example for me to help, I need to know the name of the class that you are attempting to instantiate. I'm also confused...

If you are getting this error it is coming from your gateway: > **H.2.1.4 Handling Requests That Take Too Long** > Confirmed requests that cannot be fulfilled within the allowed...

The `writeproperty()` is not in the BACpypes library, and with four different parameters there is no way to know which of the primitive datatypes is giving you the problem. Turning...

To "relinquish" an override at a particular priority level, write a "null" to the priority array at the specific array index. For example, if you wrote a 75.3 to an...

You are running the `IP2VLANRouter.py` application without specifying a subnet size so the application has no idea what it should listen to for broadcast messages. Try running it with `10.34.xxx.xxx/16:47809`...